1da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian/* Decoding testcase for callback fields. 2da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian * Run e.g. ./test_encode_callbacks | ./test_decode_callbacks 3da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian */ 4da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian 5da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian#include <stdio.h> 6da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian#include <pb_decode.h> 7da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian#include "callbacks.pb.h" 8da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian#include "test_helpers.h" 9da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian 10da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanianbool print_string(pb_istream_t *stream, const pb_field_t *field, void **arg) 11da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian{ 12da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian uint8_t buffer[1024] = {0}; 13da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian 14da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian /* We could read block-by-block to avoid the large buffer... */ 15da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian if (stream->bytes_left > sizeof(buffer) - 1) 16da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian return false; 17da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian 18da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian if (!pb_read(stream, buffer, stream->bytes_left)) 19da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian return false; 20da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian 21da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian /* Print the string, in format comparable with protoc --decode. 22da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian * Format comes from the arg defined in main(). 23da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian */ 24da49e34c1fb5e99681f4ad99c21d9cfd83eddb96Vignesh Venkatasubramanian printf((char*)*arg, buffer); 25 return true; 26} 27 28bool print_int32(pb_istream_t *stream, const pb_field_t *field, void **arg) 29{ 30 uint64_t value; 31 if (!pb_decode_varint(stream, &value)) 32 return false; 33 34 printf((char*)*arg, (long)value); 35 return true; 36} 37 38bool print_fixed32(pb_istream_t *stream, const pb_field_t *field, void **arg) 39{ 40 uint32_t value; 41 if (!pb_decode_fixed32(stream, &value)) 42 return false; 43 44 printf((char*)*arg, (long)value); 45 return true; 46} 47 48bool print_fixed64(pb_istream_t *stream, const pb_field_t *field, void **arg) 49{ 50 uint64_t value; 51 if (!pb_decode_fixed64(stream, &value)) 52 return false; 53 54 printf((char*)*arg, (long)value); 55 return true; 56} 57 58int main() 59{ 60 uint8_t buffer[1024]; 61 size_t length; 62 pb_istream_t stream; 63 /* Note: empty initializer list initializes the struct with all-0. 64 * This is recommended so that unused callbacks are set to NULL instead 65 * of crashing at runtime. 66 */ 67 TestMessage testmessage = {{{NULL}}}; 68 69 SET_BINARY_MODE(stdin); 70 length = fread(buffer, 1, 1024, stdin); 71 stream = pb_istream_from_buffer(buffer, length); 72 73 testmessage.submsg.stringvalue.funcs.decode = &print_string; 74 testmessage.submsg.stringvalue.arg = "submsg {\n stringvalue: \"%s\"\n"; 75 testmessage.submsg.int32value.funcs.decode = &print_int32; 76 testmessage.submsg.int32value.arg = " int32value: %ld\n"; 77 testmessage.submsg.fixed32value.funcs.decode = &print_fixed32; 78 testmessage.submsg.fixed32value.arg = " fixed32value: %ld\n"; 79 testmessage.submsg.fixed64value.funcs.decode = &print_fixed64; 80 testmessage.submsg.fixed64value.arg = " fixed64value: %ld\n}\n"; 81 82 testmessage.stringvalue.funcs.decode = &print_string; 83 testmessage.stringvalue.arg = "stringvalue: \"%s\"\n"; 84 testmessage.int32value.funcs.decode = &print_int32; 85 testmessage.int32value.arg = "int32value: %ld\n"; 86 testmessage.fixed32value.funcs.decode = &print_fixed32; 87 testmessage.fixed32value.arg = "fixed32value: %ld\n"; 88 testmessage.fixed64value.funcs.decode = &print_fixed64; 89 testmessage.fixed64value.arg = "fixed64value: %ld\n"; 90 testmessage.repeatedstring.funcs.decode = &print_string; 91 testmessage.repeatedstring.arg = "repeatedstring: \"%s\"\n"; 92 93 if (!pb_decode(&stream, TestMessage_fields, &testmessage)) 94 return 1; 95 96 return 0; 97} 98