Fix Any json encoding/decoding in php (#5496)
* Fix Any json encoding/decoding in php * Fix comments
This commit is contained in:
parent
21940734be
commit
8faa778add
@ -22,26 +22,8 @@ Required.DurationProtoInputTooLarge.JsonOutput
|
||||
Required.DurationProtoInputTooSmall.JsonOutput
|
||||
Required.TimestampProtoInputTooLarge.JsonOutput
|
||||
Required.TimestampProtoInputTooSmall.JsonOutput
|
||||
Required.Proto3.JsonInput.Any.JsonOutput
|
||||
Required.Proto3.JsonInput.Any.ProtobufOutput
|
||||
Required.Proto3.JsonInput.AnyNested.JsonOutput
|
||||
Required.Proto3.JsonInput.AnyNested.ProtobufOutput
|
||||
Required.Proto3.JsonInput.AnyUnorderedTypeTag.JsonOutput
|
||||
Required.Proto3.JsonInput.AnyUnorderedTypeTag.ProtobufOutput
|
||||
Required.Proto3.JsonInput.AnyWithDuration.JsonOutput
|
||||
Required.Proto3.JsonInput.AnyWithDuration.ProtobufOutput
|
||||
Required.Proto3.JsonInput.AnyWithFieldMask.JsonOutput
|
||||
Required.Proto3.JsonInput.AnyWithFieldMask.ProtobufOutput
|
||||
Required.Proto3.JsonInput.AnyWithInt32ValueWrapper.JsonOutput
|
||||
Required.Proto3.JsonInput.AnyWithInt32ValueWrapper.ProtobufOutput
|
||||
Required.Proto3.JsonInput.AnyWithStruct.JsonOutput
|
||||
Required.Proto3.JsonInput.AnyWithStruct.ProtobufOutput
|
||||
Required.Proto3.JsonInput.AnyWithTimestamp.JsonOutput
|
||||
Required.Proto3.JsonInput.AnyWithTimestamp.ProtobufOutput
|
||||
Required.Proto3.JsonInput.AnyWithValueForInteger.JsonOutput
|
||||
Required.Proto3.JsonInput.AnyWithValueForInteger.ProtobufOutput
|
||||
Required.Proto3.JsonInput.AnyWithValueForJsonObject.JsonOutput
|
||||
Required.Proto3.JsonInput.AnyWithValueForJsonObject.ProtobufOutput
|
||||
Required.Proto3.JsonInput.BoolMapField.JsonOutput
|
||||
Required.Proto3.JsonInput.DoubleFieldMaxNegativeValue.JsonOutput
|
||||
Required.Proto3.JsonInput.DoubleFieldMaxNegativeValue.ProtobufOutput
|
||||
|
@ -1095,7 +1095,10 @@ static const upb_json_parsermethod *msgdef_jsonparsermethod(Descriptor* desc) {
|
||||
static void putmsg(zval* msg, const Descriptor* desc, upb_sink* sink,
|
||||
int depth, bool is_json TSRMLS_DC);
|
||||
static void putrawmsg(MessageHeader* msg, const Descriptor* desc,
|
||||
upb_sink* sink, int depth, bool is_json TSRMLS_DC);
|
||||
upb_sink* sink, int depth, bool is_json,
|
||||
bool open_msg TSRMLS_DC);
|
||||
static void putjsonany(MessageHeader* msg, const Descriptor* desc,
|
||||
upb_sink* sink, int depth TSRMLS_DC);
|
||||
|
||||
static void putstr(zval* str, const upb_fielddef* f, upb_sink* sink,
|
||||
bool force_default);
|
||||
@ -1245,15 +1248,114 @@ static void putmap(zval* map, const upb_fielddef* f, upb_sink* sink,
|
||||
static void putmsg(zval* msg_php, const Descriptor* desc, upb_sink* sink,
|
||||
int depth, bool is_json TSRMLS_DC) {
|
||||
MessageHeader* msg = UNBOX(MessageHeader, msg_php);
|
||||
putrawmsg(msg, desc, sink, depth, is_json TSRMLS_CC);
|
||||
putrawmsg(msg, desc, sink, depth, is_json, true TSRMLS_CC);
|
||||
}
|
||||
|
||||
static const upb_handlers* msgdef_json_serialize_handlers(
|
||||
Descriptor* desc, bool preserve_proto_fieldnames);
|
||||
|
||||
static void putjsonany(MessageHeader* msg, const Descriptor* desc,
|
||||
upb_sink* sink, int depth TSRMLS_DC) {
|
||||
upb_status status;
|
||||
const upb_fielddef* type_field = upb_msgdef_itof(desc->msgdef, UPB_ANY_TYPE);
|
||||
const upb_fielddef* value_field = upb_msgdef_itof(desc->msgdef, UPB_ANY_VALUE);
|
||||
|
||||
uint32_t type_url_offset;
|
||||
zval* type_url_php_str;
|
||||
const upb_msgdef *payload_type = NULL;
|
||||
|
||||
upb_sink_startmsg(sink);
|
||||
|
||||
/* Handle type url */
|
||||
type_url_offset = desc->layout->fields[upb_fielddef_index(type_field)].offset;
|
||||
type_url_php_str = CACHED_PTR_TO_ZVAL_PTR(
|
||||
DEREF(message_data(msg), type_url_offset, CACHED_VALUE*));
|
||||
if (Z_STRLEN_P(type_url_php_str) > 0) {
|
||||
putstr(type_url_php_str, type_field, sink, false);
|
||||
}
|
||||
|
||||
{
|
||||
const char* type_url_str = Z_STRVAL_P(type_url_php_str);
|
||||
size_t type_url_len = Z_STRLEN_P(type_url_php_str);
|
||||
if (type_url_len <= 20 ||
|
||||
strncmp(type_url_str, "type.googleapis.com/", 20) != 0) {
|
||||
zend_error(E_ERROR, "Invalid type url: %s", type_url_str);
|
||||
}
|
||||
|
||||
/* Resolve type url */
|
||||
type_url_str += 20;
|
||||
type_url_len -= 20;
|
||||
|
||||
payload_type = upb_symtab_lookupmsg2(
|
||||
generated_pool->symtab, type_url_str, type_url_len);
|
||||
if (payload_type == NULL) {
|
||||
zend_error(E_ERROR, "Unknown type: %s", type_url_str);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
uint32_t value_offset;
|
||||
zval* value_php_str;
|
||||
const char* value_str;
|
||||
size_t value_len;
|
||||
|
||||
value_offset = desc->layout->fields[upb_fielddef_index(value_field)].offset;
|
||||
value_php_str = CACHED_PTR_TO_ZVAL_PTR(
|
||||
DEREF(message_data(msg), value_offset, CACHED_VALUE*));
|
||||
value_str = Z_STRVAL_P(value_php_str);
|
||||
value_len = Z_STRLEN_P(value_php_str);
|
||||
|
||||
if (value_len > 0) {
|
||||
Descriptor* payload_desc =
|
||||
UNBOX_HASHTABLE_VALUE(Descriptor, get_def_obj((void*)payload_type));
|
||||
zend_class_entry* payload_klass = payload_desc->klass;
|
||||
zval val;
|
||||
upb_sink subsink;
|
||||
bool is_wellknown;
|
||||
|
||||
/* Create message of the payload type. */
|
||||
ZVAL_OBJ(&val, payload_klass->create_object(payload_klass TSRMLS_CC));
|
||||
MessageHeader* intern = UNBOX(MessageHeader, &val);
|
||||
custom_data_init(payload_klass, intern PHP_PROTO_TSRMLS_CC);
|
||||
|
||||
merge_from_string(value_str, value_len, payload_desc, intern);
|
||||
|
||||
is_wellknown =
|
||||
upb_msgdef_wellknowntype(payload_desc->msgdef) !=
|
||||
UPB_WELLKNOWN_UNSPECIFIED;
|
||||
if (is_wellknown) {
|
||||
upb_sink_startstr(sink, getsel(value_field, UPB_HANDLER_STARTSTR), 0,
|
||||
&subsink);
|
||||
}
|
||||
|
||||
subsink.handlers =
|
||||
msgdef_json_serialize_handlers(payload_desc, true);
|
||||
subsink.closure = sink->closure;
|
||||
putrawmsg(intern, payload_desc, &subsink, depth, true,
|
||||
is_wellknown TSRMLS_CC);
|
||||
|
||||
zval_dtor(&val);
|
||||
}
|
||||
}
|
||||
|
||||
upb_sink_endmsg(sink, &status);
|
||||
}
|
||||
|
||||
static void putrawmsg(MessageHeader* msg, const Descriptor* desc,
|
||||
upb_sink* sink, int depth, bool is_json TSRMLS_DC) {
|
||||
upb_sink* sink, int depth, bool is_json,
|
||||
bool open_msg TSRMLS_DC) {
|
||||
upb_msg_field_iter i;
|
||||
upb_status status;
|
||||
|
||||
upb_sink_startmsg(sink);
|
||||
if (is_json && upb_msgdef_wellknowntype(desc->msgdef) == UPB_WELLKNOWN_ANY) {
|
||||
putjsonany(msg, desc, sink, depth TSRMLS_CC);
|
||||
return;
|
||||
}
|
||||
|
||||
if (open_msg) {
|
||||
upb_sink_startmsg(sink);
|
||||
}
|
||||
|
||||
// Protect against cycles (possible because users may freely reassign message
|
||||
// and repeated fields) by imposing a maximum recursion depth.
|
||||
@ -1343,7 +1445,9 @@ static void putrawmsg(MessageHeader* msg, const Descriptor* desc,
|
||||
upb_sink_putunknown(sink, unknown->ptr, unknown->len);
|
||||
}
|
||||
|
||||
upb_sink_endmsg(sink, &status);
|
||||
if (open_msg) {
|
||||
upb_sink_endmsg(sink, &status);
|
||||
}
|
||||
}
|
||||
|
||||
static void putstr(zval* str, const upb_fielddef *f,
|
||||
@ -1409,7 +1513,7 @@ static void putrawsubmsg(MessageHeader* submsg, const upb_fielddef* f,
|
||||
UNBOX_HASHTABLE_VALUE(Descriptor, get_def_obj(upb_fielddef_msgsubdef(f)));
|
||||
|
||||
upb_sink_startsubmsg(sink, getsel(f, UPB_HANDLER_STARTSUBMSG), &subsink);
|
||||
putrawmsg(submsg, subdesc, &subsink, depth + 1, is_json TSRMLS_CC);
|
||||
putrawmsg(submsg, subdesc, &subsink, depth + 1, is_json, true TSRMLS_CC);
|
||||
upb_sink_endsubmsg(sink, getsel(f, UPB_HANDLER_ENDSUBMSG));
|
||||
}
|
||||
|
||||
@ -1633,7 +1737,8 @@ PHP_METHOD(Message, mergeFromJsonString) {
|
||||
stackenv_init(&se, "Error occurred during parsing: %s");
|
||||
|
||||
upb_sink_reset(&sink, get_fill_handlers(desc), msg);
|
||||
parser = upb_json_parser_create(&se.env, method, &sink, ignore_json_unknown);
|
||||
parser = upb_json_parser_create(&se.env, method, generated_pool->symtab,
|
||||
&sink, ignore_json_unknown);
|
||||
upb_bufsrc_putbuf(data, data_len, upb_json_parser_input(parser));
|
||||
|
||||
stackenv_uninit(&se);
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -2013,6 +2013,7 @@ typedef enum {
|
||||
*/
|
||||
typedef enum {
|
||||
UPB_WELLKNOWN_UNSPECIFIED,
|
||||
UPB_WELLKNOWN_ANY,
|
||||
UPB_WELLKNOWN_DURATION,
|
||||
UPB_WELLKNOWN_TIMESTAMP,
|
||||
/* number wrappers */
|
||||
@ -2416,6 +2417,10 @@ typedef upb_strtable_iter upb_msg_oneof_iter;
|
||||
#define UPB_MAPENTRY_KEY 1
|
||||
#define UPB_MAPENTRY_VALUE 2
|
||||
|
||||
/* Well-known field tag numbers for Any messages. */
|
||||
#define UPB_ANY_TYPE 1
|
||||
#define UPB_ANY_VALUE 2
|
||||
|
||||
/* Well-known field tag numbers for timestamp messages. */
|
||||
#define UPB_DURATION_SECONDS 1
|
||||
#define UPB_DURATION_NANOS 2
|
||||
@ -3271,6 +3276,8 @@ const upb_def *upb_symtab_resolve(const upb_symtab *s, const char *base,
|
||||
const char *sym);
|
||||
const upb_def *upb_symtab_lookup(const upb_symtab *s, const char *sym);
|
||||
const upb_msgdef *upb_symtab_lookupmsg(const upb_symtab *s, const char *sym);
|
||||
const upb_msgdef *upb_symtab_lookupmsg2(
|
||||
const upb_symtab *s, const char *sym, size_t len);
|
||||
const upb_enumdef *upb_symtab_lookupenum(const upb_symtab *s, const char *sym);
|
||||
bool upb_symtab_add(upb_symtab *s, upb_def *const*defs, size_t n,
|
||||
void *ref_donor, upb_status *status);
|
||||
@ -6877,7 +6884,7 @@ typedef enum {
|
||||
|
||||
extern const upb_msglayout google_protobuf_FileDescriptorSet_msginit;
|
||||
UPB_INLINE google_protobuf_FileDescriptorSet *google_protobuf_FileDescriptorSet_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_FileDescriptorSet_msginit, arena);
|
||||
return (google_protobuf_FileDescriptorSet *)upb_msg_new(&google_protobuf_FileDescriptorSet_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_FileDescriptorSet *google_protobuf_FileDescriptorSet_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_FileDescriptorSet *ret = google_protobuf_FileDescriptorSet_new(arena);
|
||||
@ -6896,7 +6903,7 @@ UPB_INLINE void google_protobuf_FileDescriptorSet_set_file(google_protobuf_FileD
|
||||
|
||||
extern const upb_msglayout google_protobuf_FileDescriptorProto_msginit;
|
||||
UPB_INLINE google_protobuf_FileDescriptorProto *google_protobuf_FileDescriptorProto_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_FileDescriptorProto_msginit, arena);
|
||||
return (google_protobuf_FileDescriptorProto *)upb_msg_new(&google_protobuf_FileDescriptorProto_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_FileDescriptorProto *google_protobuf_FileDescriptorProto_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_FileDescriptorProto *ret = google_protobuf_FileDescriptorProto_new(arena);
|
||||
@ -6937,7 +6944,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_set_syntax(google_protobuf_F
|
||||
|
||||
extern const upb_msglayout google_protobuf_DescriptorProto_msginit;
|
||||
UPB_INLINE google_protobuf_DescriptorProto *google_protobuf_DescriptorProto_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_DescriptorProto_msginit, arena);
|
||||
return (google_protobuf_DescriptorProto *)upb_msg_new(&google_protobuf_DescriptorProto_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_DescriptorProto *google_protobuf_DescriptorProto_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_DescriptorProto *ret = google_protobuf_DescriptorProto_new(arena);
|
||||
@ -6974,7 +6981,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_set_reserved_name(google_protobu
|
||||
|
||||
extern const upb_msglayout google_protobuf_DescriptorProto_ExtensionRange_msginit;
|
||||
UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange *google_protobuf_DescriptorProto_ExtensionRange_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_DescriptorProto_ExtensionRange_msginit, arena);
|
||||
return (google_protobuf_DescriptorProto_ExtensionRange *)upb_msg_new(&google_protobuf_DescriptorProto_ExtensionRange_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange *google_protobuf_DescriptorProto_ExtensionRange_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_DescriptorProto_ExtensionRange *ret = google_protobuf_DescriptorProto_ExtensionRange_new(arena);
|
||||
@ -6997,7 +7004,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_options(googl
|
||||
|
||||
extern const upb_msglayout google_protobuf_DescriptorProto_ReservedRange_msginit;
|
||||
UPB_INLINE google_protobuf_DescriptorProto_ReservedRange *google_protobuf_DescriptorProto_ReservedRange_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_DescriptorProto_ReservedRange_msginit, arena);
|
||||
return (google_protobuf_DescriptorProto_ReservedRange *)upb_msg_new(&google_protobuf_DescriptorProto_ReservedRange_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_DescriptorProto_ReservedRange *google_protobuf_DescriptorProto_ReservedRange_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_DescriptorProto_ReservedRange *ret = google_protobuf_DescriptorProto_ReservedRange_new(arena);
|
||||
@ -7018,7 +7025,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_end(google_pro
|
||||
|
||||
extern const upb_msglayout google_protobuf_ExtensionRangeOptions_msginit;
|
||||
UPB_INLINE google_protobuf_ExtensionRangeOptions *google_protobuf_ExtensionRangeOptions_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_ExtensionRangeOptions_msginit, arena);
|
||||
return (google_protobuf_ExtensionRangeOptions *)upb_msg_new(&google_protobuf_ExtensionRangeOptions_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_ExtensionRangeOptions *google_protobuf_ExtensionRangeOptions_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_ExtensionRangeOptions *ret = google_protobuf_ExtensionRangeOptions_new(arena);
|
||||
@ -7037,7 +7044,7 @@ UPB_INLINE void google_protobuf_ExtensionRangeOptions_set_uninterpreted_option(g
|
||||
|
||||
extern const upb_msglayout google_protobuf_FieldDescriptorProto_msginit;
|
||||
UPB_INLINE google_protobuf_FieldDescriptorProto *google_protobuf_FieldDescriptorProto_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
|
||||
return (google_protobuf_FieldDescriptorProto *)upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_FieldDescriptorProto *google_protobuf_FieldDescriptorProto_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_FieldDescriptorProto *ret = google_protobuf_FieldDescriptorProto_new(arena);
|
||||
@ -7074,7 +7081,7 @@ UPB_INLINE void google_protobuf_FieldDescriptorProto_set_json_name(google_protob
|
||||
|
||||
extern const upb_msglayout google_protobuf_OneofDescriptorProto_msginit;
|
||||
UPB_INLINE google_protobuf_OneofDescriptorProto *google_protobuf_OneofDescriptorProto_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_OneofDescriptorProto_msginit, arena);
|
||||
return (google_protobuf_OneofDescriptorProto *)upb_msg_new(&google_protobuf_OneofDescriptorProto_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_OneofDescriptorProto *google_protobuf_OneofDescriptorProto_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_OneofDescriptorProto *ret = google_protobuf_OneofDescriptorProto_new(arena);
|
||||
@ -7095,7 +7102,7 @@ UPB_INLINE void google_protobuf_OneofDescriptorProto_set_options(google_protobuf
|
||||
|
||||
extern const upb_msglayout google_protobuf_EnumDescriptorProto_msginit;
|
||||
UPB_INLINE google_protobuf_EnumDescriptorProto *google_protobuf_EnumDescriptorProto_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_EnumDescriptorProto_msginit, arena);
|
||||
return (google_protobuf_EnumDescriptorProto *)upb_msg_new(&google_protobuf_EnumDescriptorProto_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_EnumDescriptorProto *google_protobuf_EnumDescriptorProto_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_EnumDescriptorProto *ret = google_protobuf_EnumDescriptorProto_new(arena);
|
||||
@ -7122,7 +7129,7 @@ UPB_INLINE void google_protobuf_EnumDescriptorProto_set_reserved_name(google_pro
|
||||
|
||||
extern const upb_msglayout google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit;
|
||||
UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange *google_protobuf_EnumDescriptorProto_EnumReservedRange_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena);
|
||||
return (google_protobuf_EnumDescriptorProto_EnumReservedRange *)upb_msg_new(&google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange *google_protobuf_EnumDescriptorProto_EnumReservedRange_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_EnumDescriptorProto_EnumReservedRange *ret = google_protobuf_EnumDescriptorProto_EnumReservedRange_new(arena);
|
||||
@ -7143,7 +7150,7 @@ UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_end(go
|
||||
|
||||
extern const upb_msglayout google_protobuf_EnumValueDescriptorProto_msginit;
|
||||
UPB_INLINE google_protobuf_EnumValueDescriptorProto *google_protobuf_EnumValueDescriptorProto_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_EnumValueDescriptorProto_msginit, arena);
|
||||
return (google_protobuf_EnumValueDescriptorProto *)upb_msg_new(&google_protobuf_EnumValueDescriptorProto_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_EnumValueDescriptorProto *google_protobuf_EnumValueDescriptorProto_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_EnumValueDescriptorProto *ret = google_protobuf_EnumValueDescriptorProto_new(arena);
|
||||
@ -7166,7 +7173,7 @@ UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_options(google_prot
|
||||
|
||||
extern const upb_msglayout google_protobuf_ServiceDescriptorProto_msginit;
|
||||
UPB_INLINE google_protobuf_ServiceDescriptorProto *google_protobuf_ServiceDescriptorProto_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_ServiceDescriptorProto_msginit, arena);
|
||||
return (google_protobuf_ServiceDescriptorProto *)upb_msg_new(&google_protobuf_ServiceDescriptorProto_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_ServiceDescriptorProto *google_protobuf_ServiceDescriptorProto_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_ServiceDescriptorProto *ret = google_protobuf_ServiceDescriptorProto_new(arena);
|
||||
@ -7189,7 +7196,7 @@ UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_options(google_protob
|
||||
|
||||
extern const upb_msglayout google_protobuf_MethodDescriptorProto_msginit;
|
||||
UPB_INLINE google_protobuf_MethodDescriptorProto *google_protobuf_MethodDescriptorProto_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_MethodDescriptorProto_msginit, arena);
|
||||
return (google_protobuf_MethodDescriptorProto *)upb_msg_new(&google_protobuf_MethodDescriptorProto_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_MethodDescriptorProto *google_protobuf_MethodDescriptorProto_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_MethodDescriptorProto *ret = google_protobuf_MethodDescriptorProto_new(arena);
|
||||
@ -7218,7 +7225,7 @@ UPB_INLINE void google_protobuf_MethodDescriptorProto_set_server_streaming(googl
|
||||
|
||||
extern const upb_msglayout google_protobuf_FileOptions_msginit;
|
||||
UPB_INLINE google_protobuf_FileOptions *google_protobuf_FileOptions_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_FileOptions_msginit, arena);
|
||||
return (google_protobuf_FileOptions *)upb_msg_new(&google_protobuf_FileOptions_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_FileOptions *google_protobuf_FileOptions_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_FileOptions *ret = google_protobuf_FileOptions_new(arena);
|
||||
@ -7273,7 +7280,7 @@ UPB_INLINE void google_protobuf_FileOptions_set_uninterpreted_option(google_prot
|
||||
|
||||
extern const upb_msglayout google_protobuf_MessageOptions_msginit;
|
||||
UPB_INLINE google_protobuf_MessageOptions *google_protobuf_MessageOptions_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_MessageOptions_msginit, arena);
|
||||
return (google_protobuf_MessageOptions *)upb_msg_new(&google_protobuf_MessageOptions_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_MessageOptions *google_protobuf_MessageOptions_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_MessageOptions *ret = google_protobuf_MessageOptions_new(arena);
|
||||
@ -7300,7 +7307,7 @@ UPB_INLINE void google_protobuf_MessageOptions_set_uninterpreted_option(google_p
|
||||
|
||||
extern const upb_msglayout google_protobuf_FieldOptions_msginit;
|
||||
UPB_INLINE google_protobuf_FieldOptions *google_protobuf_FieldOptions_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_FieldOptions_msginit, arena);
|
||||
return (google_protobuf_FieldOptions *)upb_msg_new(&google_protobuf_FieldOptions_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_FieldOptions *google_protobuf_FieldOptions_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_FieldOptions *ret = google_protobuf_FieldOptions_new(arena);
|
||||
@ -7331,7 +7338,7 @@ UPB_INLINE void google_protobuf_FieldOptions_set_uninterpreted_option(google_pro
|
||||
|
||||
extern const upb_msglayout google_protobuf_OneofOptions_msginit;
|
||||
UPB_INLINE google_protobuf_OneofOptions *google_protobuf_OneofOptions_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_OneofOptions_msginit, arena);
|
||||
return (google_protobuf_OneofOptions *)upb_msg_new(&google_protobuf_OneofOptions_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_OneofOptions *google_protobuf_OneofOptions_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_OneofOptions *ret = google_protobuf_OneofOptions_new(arena);
|
||||
@ -7350,7 +7357,7 @@ UPB_INLINE void google_protobuf_OneofOptions_set_uninterpreted_option(google_pro
|
||||
|
||||
extern const upb_msglayout google_protobuf_EnumOptions_msginit;
|
||||
UPB_INLINE google_protobuf_EnumOptions *google_protobuf_EnumOptions_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_EnumOptions_msginit, arena);
|
||||
return (google_protobuf_EnumOptions *)upb_msg_new(&google_protobuf_EnumOptions_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_EnumOptions *google_protobuf_EnumOptions_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_EnumOptions *ret = google_protobuf_EnumOptions_new(arena);
|
||||
@ -7373,7 +7380,7 @@ UPB_INLINE void google_protobuf_EnumOptions_set_uninterpreted_option(google_prot
|
||||
|
||||
extern const upb_msglayout google_protobuf_EnumValueOptions_msginit;
|
||||
UPB_INLINE google_protobuf_EnumValueOptions *google_protobuf_EnumValueOptions_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_EnumValueOptions_msginit, arena);
|
||||
return (google_protobuf_EnumValueOptions *)upb_msg_new(&google_protobuf_EnumValueOptions_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_EnumValueOptions *google_protobuf_EnumValueOptions_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_EnumValueOptions *ret = google_protobuf_EnumValueOptions_new(arena);
|
||||
@ -7394,7 +7401,7 @@ UPB_INLINE void google_protobuf_EnumValueOptions_set_uninterpreted_option(google
|
||||
|
||||
extern const upb_msglayout google_protobuf_ServiceOptions_msginit;
|
||||
UPB_INLINE google_protobuf_ServiceOptions *google_protobuf_ServiceOptions_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_ServiceOptions_msginit, arena);
|
||||
return (google_protobuf_ServiceOptions *)upb_msg_new(&google_protobuf_ServiceOptions_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_ServiceOptions *google_protobuf_ServiceOptions_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_ServiceOptions *ret = google_protobuf_ServiceOptions_new(arena);
|
||||
@ -7415,7 +7422,7 @@ UPB_INLINE void google_protobuf_ServiceOptions_set_uninterpreted_option(google_p
|
||||
|
||||
extern const upb_msglayout google_protobuf_MethodOptions_msginit;
|
||||
UPB_INLINE google_protobuf_MethodOptions *google_protobuf_MethodOptions_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_MethodOptions_msginit, arena);
|
||||
return (google_protobuf_MethodOptions *)upb_msg_new(&google_protobuf_MethodOptions_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_MethodOptions *google_protobuf_MethodOptions_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_MethodOptions *ret = google_protobuf_MethodOptions_new(arena);
|
||||
@ -7438,7 +7445,7 @@ UPB_INLINE void google_protobuf_MethodOptions_set_uninterpreted_option(google_pr
|
||||
|
||||
extern const upb_msglayout google_protobuf_UninterpretedOption_msginit;
|
||||
UPB_INLINE google_protobuf_UninterpretedOption *google_protobuf_UninterpretedOption_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
||||
return (google_protobuf_UninterpretedOption *)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_UninterpretedOption *google_protobuf_UninterpretedOption_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_UninterpretedOption *ret = google_protobuf_UninterpretedOption_new(arena);
|
||||
@ -7469,7 +7476,7 @@ UPB_INLINE void google_protobuf_UninterpretedOption_set_aggregate_value(google_p
|
||||
|
||||
extern const upb_msglayout google_protobuf_UninterpretedOption_NamePart_msginit;
|
||||
UPB_INLINE google_protobuf_UninterpretedOption_NamePart *google_protobuf_UninterpretedOption_NamePart_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_UninterpretedOption_NamePart_msginit, arena);
|
||||
return (google_protobuf_UninterpretedOption_NamePart *)upb_msg_new(&google_protobuf_UninterpretedOption_NamePart_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_UninterpretedOption_NamePart *google_protobuf_UninterpretedOption_NamePart_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_UninterpretedOption_NamePart *ret = google_protobuf_UninterpretedOption_NamePart_new(arena);
|
||||
@ -7490,7 +7497,7 @@ UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_is_extension(go
|
||||
|
||||
extern const upb_msglayout google_protobuf_SourceCodeInfo_msginit;
|
||||
UPB_INLINE google_protobuf_SourceCodeInfo *google_protobuf_SourceCodeInfo_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_SourceCodeInfo_msginit, arena);
|
||||
return (google_protobuf_SourceCodeInfo *)upb_msg_new(&google_protobuf_SourceCodeInfo_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_SourceCodeInfo *google_protobuf_SourceCodeInfo_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_SourceCodeInfo *ret = google_protobuf_SourceCodeInfo_new(arena);
|
||||
@ -7509,7 +7516,7 @@ UPB_INLINE void google_protobuf_SourceCodeInfo_set_location(google_protobuf_Sour
|
||||
|
||||
extern const upb_msglayout google_protobuf_SourceCodeInfo_Location_msginit;
|
||||
UPB_INLINE google_protobuf_SourceCodeInfo_Location *google_protobuf_SourceCodeInfo_Location_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_SourceCodeInfo_Location_msginit, arena);
|
||||
return (google_protobuf_SourceCodeInfo_Location *)upb_msg_new(&google_protobuf_SourceCodeInfo_Location_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_SourceCodeInfo_Location *google_protobuf_SourceCodeInfo_Location_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_SourceCodeInfo_Location *ret = google_protobuf_SourceCodeInfo_Location_new(arena);
|
||||
@ -7536,7 +7543,7 @@ UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_leading_detached_com
|
||||
|
||||
extern const upb_msglayout google_protobuf_GeneratedCodeInfo_msginit;
|
||||
UPB_INLINE google_protobuf_GeneratedCodeInfo *google_protobuf_GeneratedCodeInfo_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_GeneratedCodeInfo_msginit, arena);
|
||||
return (google_protobuf_GeneratedCodeInfo *)upb_msg_new(&google_protobuf_GeneratedCodeInfo_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_GeneratedCodeInfo *google_protobuf_GeneratedCodeInfo_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_GeneratedCodeInfo *ret = google_protobuf_GeneratedCodeInfo_new(arena);
|
||||
@ -7555,7 +7562,7 @@ UPB_INLINE void google_protobuf_GeneratedCodeInfo_set_annotation(google_protobuf
|
||||
|
||||
extern const upb_msglayout google_protobuf_GeneratedCodeInfo_Annotation_msginit;
|
||||
UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation *google_protobuf_GeneratedCodeInfo_Annotation_new(upb_arena *arena) {
|
||||
return upb_msg_new(&google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena);
|
||||
return (google_protobuf_GeneratedCodeInfo_Annotation *)upb_msg_new(&google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena);
|
||||
}
|
||||
UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation *google_protobuf_GeneratedCodeInfo_Annotation_parsenew(upb_stringview buf, upb_arena *arena) {
|
||||
google_protobuf_GeneratedCodeInfo_Annotation *ret = google_protobuf_GeneratedCodeInfo_Annotation_new(arena);
|
||||
@ -9567,7 +9574,7 @@ UPB_DECLARE_DERIVED_TYPE(upb::json::ParserMethod, upb::RefCounted,
|
||||
* constructed. This hint may be an overestimate for some build configurations.
|
||||
* But if the parser library is upgraded without recompiling the application,
|
||||
* it may be an underestimate. */
|
||||
#define UPB_JSON_PARSER_SIZE 4160
|
||||
#define UPB_JSON_PARSER_SIZE 5712
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
@ -9576,6 +9583,7 @@ UPB_DECLARE_DERIVED_TYPE(upb::json::ParserMethod, upb::RefCounted,
|
||||
class upb::json::Parser {
|
||||
public:
|
||||
static Parser* Create(Environment* env, const ParserMethod* method,
|
||||
const SymbolTable* symtab,
|
||||
Sink* output, bool ignore_json_unknown);
|
||||
|
||||
BytesSink* input();
|
||||
@ -9610,6 +9618,7 @@ UPB_BEGIN_EXTERN_C
|
||||
|
||||
upb_json_parser* upb_json_parser_create(upb_env* e,
|
||||
const upb_json_parsermethod* m,
|
||||
const upb_symtab* symtab,
|
||||
upb_sink* output,
|
||||
bool ignore_json_unknown);
|
||||
upb_bytessink *upb_json_parser_input(upb_json_parser *p);
|
||||
@ -9631,8 +9640,10 @@ UPB_END_EXTERN_C
|
||||
namespace upb {
|
||||
namespace json {
|
||||
inline Parser* Parser::Create(Environment* env, const ParserMethod* method,
|
||||
const SymbolTable* symtab,
|
||||
Sink* output, bool ignore_json_unknown) {
|
||||
return upb_json_parser_create(env, method, output, ignore_json_unknown);
|
||||
return upb_json_parser_create(
|
||||
env, method, symtab, output, ignore_json_unknown);
|
||||
}
|
||||
inline BytesSink* Parser::input() {
|
||||
return upb_json_parser_input(this);
|
||||
|
@ -5,12 +5,14 @@ require_once('test_util.php');
|
||||
|
||||
use Google\Protobuf\RepeatedField;
|
||||
use Google\Protobuf\GPBType;
|
||||
use Foo\TestAny;
|
||||
use Foo\TestEnum;
|
||||
use Foo\TestMessage;
|
||||
use Foo\TestMessage\Sub;
|
||||
use Foo\TestPackedMessage;
|
||||
use Foo\TestRandomFieldOrder;
|
||||
use Foo\TestUnpackedMessage;
|
||||
use Google\Protobuf\Any;
|
||||
use Google\Protobuf\DoubleValue;
|
||||
use Google\Protobuf\FloatValue;
|
||||
use Google\Protobuf\Int32Value;
|
||||
@ -915,4 +917,143 @@ class EncodeDecodeTest extends TestBase
|
||||
$this->assertSame("{\"a\":1.5}", $m->serializeToJsonString());
|
||||
}
|
||||
|
||||
public function testDecodeTopLevelAny()
|
||||
{
|
||||
// Make sure packed message has been created at least once.
|
||||
$packed = new TestMessage();
|
||||
|
||||
$m1 = new Any();
|
||||
$m1->mergeFromJsonString(
|
||||
"{\"optionalInt32\": 1, " .
|
||||
"\"@type\":\"type.googleapis.com/foo.TestMessage\"}");
|
||||
$this->assertSame("type.googleapis.com/foo.TestMessage",
|
||||
$m1->getTypeUrl());
|
||||
$this->assertSame("0801", bin2hex($m1->getValue()));
|
||||
|
||||
$m2 = new Any();
|
||||
$m2->mergeFromJsonString(
|
||||
"{\"@type\":\"type.googleapis.com/foo.TestMessage\", " .
|
||||
"\"optionalInt32\": 1}");
|
||||
$this->assertSame("type.googleapis.com/foo.TestMessage",
|
||||
$m2->getTypeUrl());
|
||||
$this->assertSame("0801", bin2hex($m2->getValue()));
|
||||
|
||||
$m3 = new Any();
|
||||
$m3->mergeFromJsonString(
|
||||
"{\"optionalInt32\": 1, " .
|
||||
"\"@type\":\"type.googleapis.com/foo.TestMessage\", " .
|
||||
"\"optionalInt64\": 2}");
|
||||
$this->assertSame("type.googleapis.com/foo.TestMessage",
|
||||
$m3->getTypeUrl());
|
||||
$this->assertSame("08011002", bin2hex($m3->getValue()));
|
||||
}
|
||||
|
||||
public function testDecodeAny()
|
||||
{
|
||||
// Make sure packed message has been created at least once.
|
||||
$packed = new TestMessage();
|
||||
|
||||
$m1 = new TestAny();
|
||||
$m1->mergeFromJsonString(
|
||||
"{\"any\": {\"optionalInt32\": 1, " .
|
||||
"\"@type\":\"type.googleapis.com/foo.TestMessage\"}}");
|
||||
$this->assertSame("type.googleapis.com/foo.TestMessage",
|
||||
$m1->getAny()->getTypeUrl());
|
||||
$this->assertSame("0801", bin2hex($m1->getAny()->getValue()));
|
||||
|
||||
$m2 = new TestAny();
|
||||
$m2->mergeFromJsonString(
|
||||
"{\"any\":{\"@type\":\"type.googleapis.com/foo.TestMessage\", " .
|
||||
"\"optionalInt32\": 1}}");
|
||||
$this->assertSame("type.googleapis.com/foo.TestMessage",
|
||||
$m2->getAny()->getTypeUrl());
|
||||
$this->assertSame("0801", bin2hex($m2->getAny()->getValue()));
|
||||
|
||||
$m3 = new TestAny();
|
||||
$m3->mergeFromJsonString(
|
||||
"{\"any\":{\"optionalInt32\": 1, " .
|
||||
"\"@type\":\"type.googleapis.com/foo.TestMessage\", " .
|
||||
"\"optionalInt64\": 2}}");
|
||||
$this->assertSame("type.googleapis.com/foo.TestMessage",
|
||||
$m3->getAny()->getTypeUrl());
|
||||
$this->assertSame("08011002", bin2hex($m3->getAny()->getValue()));
|
||||
}
|
||||
|
||||
public function testDecodeAnyWithWellKnownPacked()
|
||||
{
|
||||
// Make sure packed message has been created at least once.
|
||||
$packed = new Int32Value();
|
||||
|
||||
$m1 = new TestAny();
|
||||
$m1->mergeFromJsonString(
|
||||
"{\"any\":" .
|
||||
" {\"@type\":\"type.googleapis.com/google.protobuf.Int32Value\"," .
|
||||
" \"value\":1}}");
|
||||
$this->assertSame("type.googleapis.com/google.protobuf.Int32Value",
|
||||
$m1->getAny()->getTypeUrl());
|
||||
$this->assertSame("0801", bin2hex($m1->getAny()->getValue()));
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException Exception
|
||||
*/
|
||||
public function testDecodeAnyWithUnknownPacked()
|
||||
{
|
||||
$m = new TestAny();
|
||||
$m->mergeFromJsonString(
|
||||
"{\"any\":" .
|
||||
" {\"@type\":\"type.googleapis.com/unknown\"," .
|
||||
" \"value\":1}}");
|
||||
}
|
||||
|
||||
public function testEncodeTopLevelAny()
|
||||
{
|
||||
// Test a normal message.
|
||||
$packed = new TestMessage();
|
||||
$packed->setOptionalInt32(123);
|
||||
$packed->setOptionalString("abc");
|
||||
|
||||
$m = new Any();
|
||||
$m->pack($packed);
|
||||
$expected1 =
|
||||
"{\"@type\":\"type.googleapis.com/foo.TestMessage\"," .
|
||||
"\"optional_int32\":123,\"optional_string\":\"abc\"}";
|
||||
$expected2 =
|
||||
"{\"@type\":\"type.googleapis.com/foo.TestMessage\"," .
|
||||
"\"optionalInt32\":123,\"optionalString\":\"abc\"}";
|
||||
$result = $m->serializeToJsonString();
|
||||
$this->assertTrue($expected1 === $result || $expected2 === $result);
|
||||
|
||||
// Test a well known message.
|
||||
$packed = new Int32Value();
|
||||
$packed->setValue(123);
|
||||
|
||||
$m = new Any();
|
||||
$m->pack($packed);
|
||||
$this->assertSame(
|
||||
"{\"@type\":\"type.googleapis.com/google.protobuf.Int32Value\"," .
|
||||
"\"value\":123}",
|
||||
$m->serializeToJsonString());
|
||||
|
||||
// Test an Any message.
|
||||
$outer = new Any();
|
||||
$outer->pack($m);
|
||||
$this->assertSame(
|
||||
"{\"@type\":\"type.googleapis.com/google.protobuf.Any\"," .
|
||||
"\"value\":{\"@type\":\"type.googleapis.com/google.protobuf.Int32Value\"," .
|
||||
"\"value\":123}}",
|
||||
$outer->serializeToJsonString());
|
||||
|
||||
// Test a Timestamp message.
|
||||
$packed = new Google\Protobuf\Timestamp();
|
||||
$packed->setSeconds(946684800);
|
||||
$packed->setNanos(123456789);
|
||||
$m = new Any();
|
||||
$m->pack($packed);
|
||||
$this->assertSame(
|
||||
"{\"@type\":\"type.googleapis.com/google.protobuf.Timestamp\"," .
|
||||
"\"value\":\"2000-01-01T00:00:00.123456789Z\"}",
|
||||
$m->serializeToJsonString());
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -11,7 +11,8 @@ php -i | grep "Configuration"
|
||||
# gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so `which
|
||||
# phpunit` --bootstrap autoload.php tmp_test.php
|
||||
#
|
||||
gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so `which phpunit` --bootstrap autoload.php generated_class_test.php
|
||||
# gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so `which phpunit` --bootstrap autoload.php generated_class_test.php
|
||||
gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so `which phpunit` --bootstrap autoload.php encode_decode_test.php
|
||||
#
|
||||
# gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so memory_leak_test.php
|
||||
#
|
||||
|
@ -19,6 +19,7 @@ require_once('generated/Bar/TestLegacyMessage/NestedEnum.php');
|
||||
require_once('generated/Bar/TestLegacyMessage/NestedMessage.php');
|
||||
require_once('generated/Foo/PBARRAY.php');
|
||||
require_once('generated/Foo/PBEmpty.php');
|
||||
require_once('generated/Foo/TestAny.php');
|
||||
require_once('generated/Foo/TestEnum.php');
|
||||
require_once('generated/Foo/TestIncludeNamespaceMessage.php');
|
||||
require_once('generated/Foo/TestIncludePrefixMessage.php');
|
||||
@ -49,6 +50,7 @@ require_once('test_util.php');
|
||||
|
||||
use Google\Protobuf\Internal\RepeatedField;
|
||||
use Google\Protobuf\Internal\GPBType;
|
||||
use Foo\TestAny;
|
||||
use Foo\TestMessage;
|
||||
use Foo\TestMessage\Sub;
|
||||
|
||||
@ -191,3 +193,16 @@ $to = new TestMessage();
|
||||
TestUtil::setTestMessage($from);
|
||||
$to->mergeFrom($from);
|
||||
TestUtil::assertTestMessage($to);
|
||||
|
||||
// Test decode Any
|
||||
// Make sure packed message has been created at least once.
|
||||
$packed = new TestMessage();
|
||||
|
||||
$m = new TestAny();
|
||||
$m->mergeFromJsonString(
|
||||
"{\"any\":" .
|
||||
" {\"@type\":\"type.googleapis.com/foo.TestMessage\"," .
|
||||
" \"optionalInt32\":1}}");
|
||||
assert("type.googleapis.com/foo.TestMessage" ===
|
||||
$m->getAny()->getTypeUrl());
|
||||
assert("0801" === bin2hex($m->getAny()->getValue()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
syntax = "proto3";
|
||||
|
||||
import 'google/protobuf/any.proto';
|
||||
import 'proto/test_include.proto';
|
||||
import 'proto/test_no_namespace.proto';
|
||||
import 'proto/test_php_namespace.proto';
|
||||
@ -201,3 +202,7 @@ message testLowerCaseMessage {
|
||||
enum testLowerCaseEnum {
|
||||
VALUE = 0;
|
||||
}
|
||||
|
||||
message TestAny {
|
||||
google.protobuf.Any any = 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user