blob: 8f21bda2347c1eb69806cf231f15bff7842ea481 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef APACHE_HTRACE_SPAN_ID_H
#define APACHE_HTRACE_SPAN_ID_H
/**
* @file span_id.h
*
* Functions related to HTrace span IDs.
*
* This is an internal header, not intended for external use.
*/
#include <stdint.h> // for uint64_t
#include <unistd.h> // for size_t
struct cmp_ctx_s;
struct random_src;
/**
* The number of bytes in the HTrace span ID
*/
#define HTRACE_SPAN_ID_NUM_BYTES 16
/**
* The invalid span ID, which is all zeroes.
*/
extern const struct htrace_span_id INVALID_SPAN_ID;
/**
* Write this span ID to the provided CMP context.
*
* @param span The span.
* @param ctx The CMP context.
*
* @return 0 on failure; 1 on success.
*/
int htrace_span_id_write_msgpack(const struct htrace_span_id *id,
struct cmp_ctx_s *ctx);
/**
* Read this span ID from the provided CMP context.
*
* @param span The span.
* @param ctx The CMP context.
*
* @return 0 on failure; 1 on success.
*/
int htrace_span_id_read_msgpack(struct htrace_span_id *id,
struct cmp_ctx_s *ctx);
/**
* Generate a new span ID.
*
* @param id The span ID to alter.
* @param rnd The random source.
* @param parent The parent span ID, or null if there is none.
*/
void htrace_span_id_generate(struct htrace_span_id *id, struct random_src *rnd,
const struct htrace_span_id *parent);
#endif
// vim: ts=4:sw=4:et