Skip to content
Snippets Groups Projects
Commit b8e68dcd authored by Jeremy Yallop's avatar Jeremy Yallop
Browse files

Add tags to tagless structs and unions.

parent fe71c758
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ struct grpc_byte_buffer_reader { ...@@ -29,7 +29,7 @@ struct grpc_byte_buffer_reader {
struct grpc_byte_buffer *buffer_in; struct grpc_byte_buffer *buffer_in;
struct grpc_byte_buffer *buffer_out; struct grpc_byte_buffer *buffer_out;
/** Different current objects correspond to different types of byte buffers */ /** Different current objects correspond to different types of byte buffers */
union { union grpc_byte_buffer_reader_current {
/** Index into a slice buffer's array of slices */ /** Index into a slice buffer's array of slices */
unsigned index; unsigned index;
} current; } current;
......
...@@ -84,7 +84,7 @@ typedef struct grpc_compression_options { ...@@ -84,7 +84,7 @@ typedef struct grpc_compression_options {
* behind \a GRPC_COMPRESSION_CHANNEL_DEFAULT_LEVEL. If present, takes * behind \a GRPC_COMPRESSION_CHANNEL_DEFAULT_LEVEL. If present, takes
* precedence over \a default_algorithm. * precedence over \a default_algorithm.
* TODO(dgq): currently only available for server channels. */ * TODO(dgq): currently only available for server channels. */
struct { struct grpc_compression_options_default_level {
int is_set; int is_set;
grpc_compression_level level; grpc_compression_level level;
} default_level; } default_level;
...@@ -92,7 +92,7 @@ typedef struct grpc_compression_options { ...@@ -92,7 +92,7 @@ typedef struct grpc_compression_options {
/** The default channel compression algorithm. It'll be used in the absence of /** The default channel compression algorithm. It'll be used in the absence of
* call specific settings. This option corresponds to the channel argument key * call specific settings. This option corresponds to the channel argument key
* behind \a GRPC_COMPRESSION_CHANNEL_DEFAULT_ALGORITHM. */ * behind \a GRPC_COMPRESSION_CHANNEL_DEFAULT_ALGORITHM. */
struct { struct grpc_compression_options_default_algorithm {
int is_set; int is_set;
grpc_compression_algorithm algorithm; grpc_compression_algorithm algorithm;
} default_algorithm; } default_algorithm;
......
...@@ -41,11 +41,11 @@ typedef enum { ...@@ -41,11 +41,11 @@ typedef enum {
typedef struct grpc_byte_buffer { typedef struct grpc_byte_buffer {
void *reserved; void *reserved;
grpc_byte_buffer_type type; grpc_byte_buffer_type type;
union { union grpc_byte_buffer_data {
struct { struct /* internal */ {
void *reserved[8]; void *reserved[8];
} reserved; } reserved;
struct { struct grpc_compressed_buffer {
grpc_compression_algorithm compression; grpc_compression_algorithm compression;
grpc_slice_buffer slice_buffer; grpc_slice_buffer slice_buffer;
} raw; } raw;
...@@ -104,10 +104,10 @@ typedef struct grpc_arg_pointer_vtable { ...@@ -104,10 +104,10 @@ typedef struct grpc_arg_pointer_vtable {
typedef struct { typedef struct {
grpc_arg_type type; grpc_arg_type type;
char *key; char *key;
union { union grpc_arg_value {
char *string; char *string;
int integer; int integer;
struct { struct grpc_arg_pointer {
void *p; void *p;
const grpc_arg_pointer_vtable *vtable; const grpc_arg_pointer_vtable *vtable;
} pointer; } pointer;
...@@ -391,7 +391,7 @@ typedef struct grpc_metadata { ...@@ -391,7 +391,7 @@ typedef struct grpc_metadata {
/** The following fields are reserved for grpc internal use. /** The following fields are reserved for grpc internal use.
There is no need to initialize them, and they will be set to garbage There is no need to initialize them, and they will be set to garbage
during calls to grpc. */ during calls to grpc. */
struct { struct /* internal */ {
void *obfuscated[4]; void *obfuscated[4];
} internal_data; } internal_data;
} grpc_metadata; } grpc_metadata;
...@@ -491,25 +491,25 @@ typedef struct grpc_op { ...@@ -491,25 +491,25 @@ typedef struct grpc_op {
uint32_t flags; uint32_t flags;
/** Reserved for future usage */ /** Reserved for future usage */
void *reserved; void *reserved;
union { union grpc_op_data {
/** Reserved for future usage */ /** Reserved for future usage */
struct { struct /* internal */ {
void *reserved[8]; void *reserved[8];
} reserved; } reserved;
struct { struct grpc_op_send_initial_metadata {
size_t count; size_t count;
grpc_metadata *metadata; grpc_metadata *metadata;
/** If \a is_set, \a compression_level will be used for the call. /** If \a is_set, \a compression_level will be used for the call.
* Otherwise, \a compression_level won't be considered */ * Otherwise, \a compression_level won't be considered */
struct { struct grpc_op_send_initial_metadata_maybe_compression_level {
uint8_t is_set; uint8_t is_set;
grpc_compression_level level; grpc_compression_level level;
} maybe_compression_level; } maybe_compression_level;
} send_initial_metadata; } send_initial_metadata;
struct { struct grpc_op_send_message {
struct grpc_byte_buffer *send_message; struct grpc_byte_buffer *send_message;
} send_message; } send_message;
struct { struct grpc_op_send_status_from_server {
size_t trailing_metadata_count; size_t trailing_metadata_count;
grpc_metadata *trailing_metadata; grpc_metadata *trailing_metadata;
grpc_status_code status; grpc_status_code status;
...@@ -523,16 +523,16 @@ typedef struct grpc_op { ...@@ -523,16 +523,16 @@ typedef struct grpc_op {
object, recv_initial_metadata->array is owned by the caller). object, recv_initial_metadata->array is owned by the caller).
After the operation completes, call grpc_metadata_array_destroy on this After the operation completes, call grpc_metadata_array_destroy on this
value, or reuse it in a future op. */ value, or reuse it in a future op. */
struct { struct grpc_op_recv_initial_metadata {
grpc_metadata_array *recv_initial_metadata; grpc_metadata_array *recv_initial_metadata;
} recv_initial_metadata; } recv_initial_metadata;
/** ownership of the byte buffer is moved to the caller; the caller must /** ownership of the byte buffer is moved to the caller; the caller must
call grpc_byte_buffer_destroy on this value, or reuse it in a future op. call grpc_byte_buffer_destroy on this value, or reuse it in a future op.
*/ */
struct { struct grpc_op_recv_message {
struct grpc_byte_buffer **recv_message; struct grpc_byte_buffer **recv_message;
} recv_message; } recv_message;
struct { struct grpc_op_recv_status_on_client {
/** ownership of the array is with the caller, but ownership of the /** ownership of the array is with the caller, but ownership of the
elements stays with the call object (ie key, value members are owned elements stays with the call object (ie key, value members are owned
by the call object, trailing_metadata->array is owned by the caller). by the call object, trailing_metadata->array is owned by the caller).
...@@ -542,7 +542,7 @@ typedef struct grpc_op { ...@@ -542,7 +542,7 @@ typedef struct grpc_op {
grpc_status_code *status; grpc_status_code *status;
grpc_slice *status_details; grpc_slice *status_details;
} recv_status_on_client; } recv_status_on_client;
struct { struct grpc_op_recv_close_on_server {
/** out argument, set to 1 if the call failed in any way (seen as a /** out argument, set to 1 if the call failed in any way (seen as a
cancellation on the server), or 0 if the call succeeded */ cancellation on the server), or 0 if the call succeeded */
int *cancelled; int *cancelled;
......
...@@ -75,12 +75,12 @@ typedef struct grpc_slice_refcount { ...@@ -75,12 +75,12 @@ typedef struct grpc_slice_refcount {
of data that is copied by value. */ of data that is copied by value. */
struct grpc_slice { struct grpc_slice {
struct grpc_slice_refcount *refcount; struct grpc_slice_refcount *refcount;
union { union grpc_slice_data {
struct { struct grpc_slice_refcounted {
uint8_t *bytes; uint8_t *bytes;
size_t length; size_t length;
} refcounted; } refcounted;
struct { struct grpc_slice_inlined {
uint8_t length; uint8_t length;
uint8_t bytes[GRPC_SLICE_INLINED_SIZE]; uint8_t bytes[GRPC_SLICE_INLINED_SIZE];
} inlined; } inlined;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment