Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
930 B
39 lines
930 B
14 years ago
|
/*
|
||
|
* upb - a minimalist implementation of protocol buffers.
|
||
|
*
|
||
|
* Copyright (c) 2010 Joshua Haberman. See LICENSE for details.
|
||
|
*/
|
||
|
|
||
|
#include "upb_glue.h"
|
||
|
#include "upb_msg.h"
|
||
|
#include "upb_decoder.h"
|
||
|
#include "upb_strstream.h"
|
||
|
|
||
|
void upb_strtomsg(upb_string *str, upb_msg *msg, upb_msgdef *md,
|
||
|
upb_status *status) {
|
||
|
upb_stringsrc strsrc;
|
||
|
upb_stringsrc_init(&strsrc);
|
||
|
upb_stringsrc_reset(&strsrc, str);
|
||
|
|
||
|
upb_decoder d;
|
||
|
upb_decoder_init(&d, md);
|
||
|
upb_decoder_reset(&d, upb_stringsrc_bytesrc(&strsrc));
|
||
|
upb_src *src = upb_decoder_src(&d);
|
||
|
|
||
|
upb_msgpopulator p;
|
||
|
upb_msgpopulator_init(&p);
|
||
|
upb_msgpopulator_reset(&p, msg, md);
|
||
|
|
||
|
upb_handlers h;
|
||
|
upb_handlers_init(&h);
|
||
|
upb_msgpopulator_register_handlers(&p, &h);
|
||
|
upb_src_sethandlers(src, &h);
|
||
|
|
||
|
upb_src_run(src, status);
|
||
|
|
||
|
upb_stringsrc_uninit(&strsrc);
|
||
|
upb_decoder_uninit(&d);
|
||
|
upb_msgpopulator_uninit(&p);
|
||
|
upb_handlers_uninit(&h);
|
||
|
}
|