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.
 
 
 
 
 
 

49 lines
1.2 KiB

/*
* upb - a minimalist implementation of protocol buffers.
*
* Copyright (c) 2011 Google Inc. See LICENSE for details.
* Author: Josh Haberman <jhaberman@gmail.com>
*
* The set of upb::*Def classes and upb::SymbolTable allow for defining and
* manipulating schema information (as defined in .proto files).
*/
#ifndef UPB_DEF_HPP
#define UPB_DEF_HPP
#include "upb/def.h"
namespace upb {
class MessageDef : public upb_msgdef {
public:
static MessageDef* Cast(upb_msgdef *md) { return (MessageDef*)md; }
void Unref() { return upb_msgdef_unref(this); }
private:
MessageDef();
~MessageDef();
};
class SymbolTable : public upb_symtab {
public:
static SymbolTable* Cast(upb_symtab *s) { return (SymbolTable*)s; }
static SymbolTable* New() { return Cast(upb_symtab_new()); }
void Unref() { return upb_symtab_unref(this); }
// If the given name refers to a message in this symbol table, returns a new
// ref to that MessageDef object, otherwise returns NULL.
MessageDef* LookupMessage(const char *name) {
return MessageDef::Cast(upb_symtab_lookupmsg(this, name));
}
private:
SymbolTable();
~SymbolTable();
};
} // namespace upb
#endif