summaryrefslogtreecommitdiff
path: root/upb/upb.h
diff options
context:
space:
mode:
Diffstat (limited to 'upb/upb.h')
-rw-r--r--upb/upb.h638
1 files changed, 152 insertions, 486 deletions
diff --git a/upb/upb.h b/upb/upb.h
index 2d6db8e..92db893 100644
--- a/upb/upb.h
+++ b/upb/upb.h
@@ -12,16 +12,14 @@
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
+#include <stdint.h>
#ifdef __cplusplus
+#include <memory>
namespace upb {
-class Allocator;
class Arena;
-class Environment;
-class ErrorSpace;
class Status;
template <int N> class InlinedArena;
-template <int N> class InlinedEnvironment;
}
#endif
@@ -73,128 +71,15 @@ template <int N> class InlinedEnvironment;
#error Need implementations of [v]snprintf and va_copy
#endif
-
-#if ((defined(__cplusplus) && __cplusplus >= 201103L) || \
- defined(__GXX_EXPERIMENTAL_CXX0X__)) && !defined(UPB_NO_CXX11)
-#define UPB_CXX11
+#ifdef __cplusplus
+#if __cplusplus >= 201103L || defined(__GXX_EXPERIMENTAL_CXX0X__) || \
+ (defined(_MSC_VER) && _MSC_VER >= 1900)
+// C++11 is present
+#else
+#error upb requires C++11 for C++ support
#endif
-
-/* UPB_DISALLOW_COPY_AND_ASSIGN()
- * UPB_DISALLOW_POD_OPS()
- *
- * Declare these in the "private" section of a C++ class to forbid copy/assign
- * or all POD ops (construct, destruct, copy, assign) on that class. */
-#ifdef UPB_CXX11
-#include <type_traits>
-#define UPB_DISALLOW_COPY_AND_ASSIGN(class_name) \
- class_name(const class_name&) = delete; \
- void operator=(const class_name&) = delete;
-#define UPB_DISALLOW_POD_OPS(class_name, full_class_name) \
- class_name() = delete; \
- ~class_name() = delete; \
- UPB_DISALLOW_COPY_AND_ASSIGN(class_name)
-#define UPB_ASSERT_STDLAYOUT(type) \
- static_assert(std::is_standard_layout<type>::value, \
- #type " must be standard layout");
-#define UPB_FINAL final
-#else /* !defined(UPB_CXX11) */
-#define UPB_DISALLOW_COPY_AND_ASSIGN(class_name) \
- class_name(const class_name&); \
- void operator=(const class_name&);
-#define UPB_DISALLOW_POD_OPS(class_name, full_class_name) \
- class_name(); \
- ~class_name(); \
- UPB_DISALLOW_COPY_AND_ASSIGN(class_name)
-#define UPB_ASSERT_STDLAYOUT(type)
-#define UPB_FINAL
#endif
-/* UPB_DECLARE_TYPE()
- * UPB_DECLARE_DERIVED_TYPE()
- * UPB_DECLARE_DERIVED_TYPE2()
- *
- * Macros for declaring C and C++ types both, including inheritance.
- * The inheritance doesn't use real C++ inheritance, to stay compatible with C.
- *
- * These macros also provide upcasts:
- * - in C: types-specific functions (ie. upb_foo_upcast(foo))
- * - in C++: upb::upcast(foo) along with implicit conversions
- *
- * Downcasts are not provided, but upb/def.h defines downcasts for upb::Def. */
-
-#define UPB_C_UPCASTS(ty, base) \
- UPB_INLINE base *ty ## _upcast_mutable(ty *p) { return (base*)p; } \
- UPB_INLINE const base *ty ## _upcast(const ty *p) { return (const base*)p; }
-
-#define UPB_C_UPCASTS2(ty, base, base2) \
- UPB_C_UPCASTS(ty, base) \
- UPB_INLINE base2 *ty ## _upcast2_mutable(ty *p) { return (base2*)p; } \
- UPB_INLINE const base2 *ty ## _upcast2(const ty *p) { return (const base2*)p; }
-
-#ifdef __cplusplus
-
-#define UPB_BEGIN_EXTERN_C extern "C" {
-#define UPB_END_EXTERN_C }
-#define UPB_PRIVATE_FOR_CPP private:
-#define UPB_DECLARE_TYPE(cppname, cname) typedef cppname cname;
-
-#define UPB_DECLARE_DERIVED_TYPE(cppname, cppbase, cname, cbase) \
- UPB_DECLARE_TYPE(cppname, cname) \
- UPB_C_UPCASTS(cname, cbase) \
- namespace upb { \
- template <> \
- class Pointer<cppname> : public PointerBase<cppname, cppbase> { \
- public: \
- explicit Pointer(cppname* ptr) \
- : PointerBase<cppname, cppbase>(ptr) {} \
- }; \
- template <> \
- class Pointer<const cppname> \
- : public PointerBase<const cppname, const cppbase> { \
- public: \
- explicit Pointer(const cppname* ptr) \
- : PointerBase<const cppname, const cppbase>(ptr) {} \
- }; \
- }
-
-#define UPB_DECLARE_DERIVED_TYPE2(cppname, cppbase, cppbase2, cname, cbase, \
- cbase2) \
- UPB_DECLARE_TYPE(cppname, cname) \
- UPB_C_UPCASTS2(cname, cbase, cbase2) \
- namespace upb { \
- template <> \
- class Pointer<cppname> : public PointerBase2<cppname, cppbase, cppbase2> { \
- public: \
- explicit Pointer(cppname* ptr) \
- : PointerBase2<cppname, cppbase, cppbase2>(ptr) {} \
- }; \
- template <> \
- class Pointer<const cppname> \
- : public PointerBase2<const cppname, const cppbase, const cppbase2> { \
- public: \
- explicit Pointer(const cppname* ptr) \
- : PointerBase2<const cppname, const cppbase, const cppbase2>(ptr) {} \
- }; \
- }
-
-#else /* !defined(__cplusplus) */
-
-#define UPB_BEGIN_EXTERN_C
-#define UPB_END_EXTERN_C
-#define UPB_PRIVATE_FOR_CPP
-#define UPB_DECLARE_TYPE(cppname, cname) \
- struct cname; \
- typedef struct cname cname;
-#define UPB_DECLARE_DERIVED_TYPE(cppname, cppbase, cname, cbase) \
- UPB_DECLARE_TYPE(cppname, cname) \
- UPB_C_UPCASTS(cname, cbase)
-#define UPB_DECLARE_DERIVED_TYPE2(cppname, cppbase, cppbase2, \
- cname, cbase, cbase2) \
- UPB_DECLARE_TYPE(cppname, cname) \
- UPB_C_UPCASTS2(cname, cbase, cbase2)
-
-#endif /* defined(__cplusplus) */
-
#define UPB_MAX(x, y) ((x) > (y) ? (x) : (y))
#define UPB_MIN(x, y) ((x) < (y) ? (x) : (y))
@@ -218,135 +103,26 @@ template <int N> class InlinedEnvironment;
#define UPB_UNREACHABLE() do { assert(0); } while(0)
#endif
-/* Generic function type. */
-typedef void upb_func();
-
-
-/* C++ Casts ******************************************************************/
-
-#ifdef __cplusplus
-
-namespace upb {
-
-template <class T> class Pointer;
-
-/* Casts to a subclass. The caller must know that cast is correct; an
- * incorrect cast will throw an assertion failure in debug mode.
- *
- * Example:
- * upb::Def* def = GetDef();
- * // Assert-fails if this was not actually a MessageDef.
- * upb::MessgeDef* md = upb::down_cast<upb::MessageDef>(def);
- *
- * Note that downcasts are only defined for some types (at the moment you can
- * only downcast from a upb::Def to a specific Def type). */
-template<class To, class From> To down_cast(From* f);
-
-/* Casts to a subclass. If the class does not actually match the given To type,
- * returns NULL.
- *
- * Example:
- * upb::Def* def = GetDef();
- * // md will be NULL if this was not actually a MessageDef.
- * upb::MessgeDef* md = upb::down_cast<upb::MessageDef>(def);
- *
- * Note that dynamic casts are only defined for some types (at the moment you
- * can only downcast from a upb::Def to a specific Def type).. */
-template<class To, class From> To dyn_cast(From* f);
-
-/* Casts to any base class, or the type itself (ie. can be a no-op).
- *
- * Example:
- * upb::MessageDef* md = GetDef();
- * // This will fail to compile if this wasn't actually a base class.
- * upb::Def* def = upb::upcast(md);
- */
-template <class T> inline Pointer<T> upcast(T *f) { return Pointer<T>(f); }
-
-/* Attempt upcast to specific base class.
- *
- * Example:
- * upb::MessageDef* md = GetDef();
- * upb::upcast_to<upb::Def>(md)->MethodOnDef();
- */
-template <class T, class F> inline T* upcast_to(F *f) {
- return static_cast<T*>(upcast(f));
-}
-
-/* PointerBase<T>: implementation detail of upb::upcast().
- * It is implicitly convertable to pointers to the Base class(es).
- */
-template <class T, class Base>
-class PointerBase {
- public:
- explicit PointerBase(T* ptr) : ptr_(ptr) {}
- operator T*() { return ptr_; }
- operator Base*() { return (Base*)ptr_; }
-
- private:
- T* ptr_;
-};
-
-template <class T, class Base, class Base2>
-class PointerBase2 : public PointerBase<T, Base> {
- public:
- explicit PointerBase2(T* ptr) : PointerBase<T, Base>(ptr) {}
- operator Base2*() { return Pointer<Base>(*this); }
-};
-
-}
-
-#endif
-
-/* A list of types as they are encoded on-the-wire. */
-typedef enum {
- UPB_WIRE_TYPE_VARINT = 0,
- UPB_WIRE_TYPE_64BIT = 1,
- UPB_WIRE_TYPE_DELIMITED = 2,
- UPB_WIRE_TYPE_START_GROUP = 3,
- UPB_WIRE_TYPE_END_GROUP = 4,
- UPB_WIRE_TYPE_32BIT = 5
-} upb_wiretype_t;
-
-
-/* upb::ErrorSpace ************************************************************/
-
-/* A upb::ErrorSpace represents some domain of possible error values. This lets
- * upb::Status attach specific error codes to operations, like POSIX/C errno,
- * Win32 error codes, etc. Clients who want to know the very specific error
- * code can check the error space and then know the type of the integer code.
- *
- * NOTE: upb::ErrorSpace is currently not used and should be considered
- * experimental. It is important primarily in cases where upb is performing
- * I/O, but upb doesn't currently have any components that do this. */
-
-UPB_DECLARE_TYPE(upb::ErrorSpace, upb_errorspace)
-
-#ifdef __cplusplus
-class upb::ErrorSpace {
-#else
-struct upb_errorspace {
-#endif
- const char *name;
-};
-
-
-/* upb::Status ****************************************************************/
+/* upb_status *****************************************************************/
-/* upb::Status represents a success or failure status and error message.
+/* upb_status represents a success or failure status and error message.
* It owns no resources and allocates no memory, so it should work
* even in OOM situations. */
-UPB_DECLARE_TYPE(upb::Status, upb_status)
/* The maximum length of an error message before it will get truncated. */
-#define UPB_STATUS_MAX_MESSAGE 128
+#define UPB_STATUS_MAX_MESSAGE 127
+
+typedef struct {
+ bool ok;
+ char msg[UPB_STATUS_MAX_MESSAGE]; /* Error message; NULL-terminated. */
+} upb_status;
-UPB_BEGIN_EXTERN_C
+#ifdef __cplusplus
+extern "C" {
+#endif
const char *upb_status_errmsg(const upb_status *status);
bool upb_ok(const upb_status *status);
-upb_errorspace *upb_status_errspace(const upb_status *status);
-int upb_status_errcode(const upb_status *status);
/* Any of the functions that write to a status object allow status to be NULL,
* to support use cases where the function's caller does not care about the
@@ -355,88 +131,55 @@ void upb_status_clear(upb_status *status);
void upb_status_seterrmsg(upb_status *status, const char *msg);
void upb_status_seterrf(upb_status *status, const char *fmt, ...);
void upb_status_vseterrf(upb_status *status, const char *fmt, va_list args);
-void upb_status_copy(upb_status *to, const upb_status *from);
-UPB_END_EXTERN_C
+UPB_INLINE void upb_status_setoom(upb_status *status) {
+ upb_status_seterrmsg(status, "out of memory");
+}
#ifdef __cplusplus
+} /* extern "C" */
class upb::Status {
public:
- Status() { upb_status_clear(this); }
+ Status() { upb_status_clear(&status_); }
- /* Returns true if there is no error. */
- bool ok() const { return upb_ok(this); }
+ upb_status* ptr() { return &status_; }
- /* Optional error space and code, useful if the caller wants to
- * programmatically check the specific kind of error. */
- ErrorSpace* error_space() { return upb_status_errspace(this); }
- int error_code() const { return upb_status_errcode(this); }
+ /* Returns true if there is no error. */
+ bool ok() const { return upb_ok(&status_); }
- /* The returned string is invalidated by any other call into the status. */
- const char *error_message() const { return upb_status_errmsg(this); }
+ /* Guaranteed to be NULL-terminated. */
+ const char *error_message() const { return upb_status_errmsg(&status_); }
/* The error message will be truncated if it is longer than
* UPB_STATUS_MAX_MESSAGE-4. */
- void SetErrorMessage(const char* msg) { upb_status_seterrmsg(this, msg); }
- void SetFormattedErrorMessage(const char* fmt, ...) {
+ void SetErrorMessage(const char *msg) { upb_status_seterrmsg(&status_, msg); }
+ void SetFormattedErrorMessage(const char *fmt, ...) {
va_list args;
va_start(args, fmt);
- upb_status_vseterrf(this, fmt, args);
+ upb_status_vseterrf(&status_, fmt, args);
va_end(args);
}
/* Resets the status to a successful state with no message. */
- void Clear() { upb_status_clear(this); }
-
- void CopyFrom(const Status& other) { upb_status_copy(this, &other); }
+ void Clear() { upb_status_clear(&status_); }
private:
- UPB_DISALLOW_COPY_AND_ASSIGN(Status)
-#else
-struct upb_status {
-#endif
- bool ok_;
-
- /* Specific status code defined by some error space (optional). */
- int code_;
- upb_errorspace *error_space_;
-
- /* TODO(haberman): add file/line of error? */
-
- /* Error message; NULL-terminated. */
- char msg[UPB_STATUS_MAX_MESSAGE];
+ upb_status status_;
};
-#define UPB_STATUS_INIT {true, 0, NULL, {0}}
-
-
-/** Built-in error spaces. ****************************************************/
-
-/* Errors raised by upb that we want to be able to detect programmatically. */
-typedef enum {
- UPB_NOMEM /* Can't reuse ENOMEM because it is POSIX, not ISO C. */
-} upb_errcode_t;
-
-extern upb_errorspace upb_upberr;
-
-void upb_upberr_setoom(upb_status *s);
-
-/* Since errno is defined by standard C, we define an error space for it in
- * core upb. Other error spaces should be defined in other, platform-specific
- * modules. */
-
-extern upb_errorspace upb_errnoerr;
-
+#endif /* __cplusplus */
-/** upb::Allocator ************************************************************/
+/** upb_alloc *****************************************************************/
-/* A upb::Allocator is a possibly-stateful allocator object.
+/* A upb_alloc is a possibly-stateful allocator object.
*
* It could either be an arena allocator (which doesn't require individual
* free() calls) or a regular malloc() (which does). The client must therefore
* free memory unless it knows that the allocator is an arena allocator. */
-UPB_DECLARE_TYPE(upb::Allocator, upb_alloc)
+
+struct upb_alloc;
+typedef struct upb_alloc upb_alloc;
/* A malloc()/free() function.
* If "size" is 0 then the function acts like free(), otherwise it acts like
@@ -444,19 +187,7 @@ UPB_DECLARE_TYPE(upb::Allocator, upb_alloc)
typedef void *upb_alloc_func(upb_alloc *alloc, void *ptr, size_t oldsize,
size_t size);
-#ifdef __cplusplus
-
-class upb::Allocator UPB_FINAL {
- public:
- Allocator() {}
-
- private:
- UPB_DISALLOW_COPY_AND_ASSIGN(Allocator)
-
- public:
-#else
struct upb_alloc {
-#endif /* __cplusplus */
upb_alloc_func *func;
};
@@ -497,212 +228,91 @@ UPB_INLINE void upb_gfree(void *ptr) {
upb_free(&upb_alloc_global, ptr);
}
-/* upb::Arena *****************************************************************/
+/* upb_arena ******************************************************************/
-/* upb::Arena is a specific allocator implementation that uses arena allocation.
+/* upb_arena is a specific allocator implementation that uses arena allocation.
* The user provides an allocator that will be used to allocate the underlying
* arena blocks. Arenas by nature do not require the individual allocations
* to be freed. However the Arena does allow users to register cleanup
* functions that will run when the arena is destroyed.
*
- * A upb::Arena is *not* thread-safe.
+ * A upb_arena is *not* thread-safe.
*
* You could write a thread-safe arena allocator that satisfies the
- * upb::Allocator interface, but it would not be as efficient for the
+ * upb_alloc interface, but it would not be as efficient for the
* single-threaded case. */
-UPB_DECLARE_TYPE(upb::Arena, upb_arena)
typedef void upb_cleanup_func(void *ud);
-#define UPB_ARENA_BLOCK_OVERHEAD (sizeof(size_t)*4)
+struct upb_arena;
+typedef struct upb_arena upb_arena;
-UPB_BEGIN_EXTERN_C
+#ifdef __cplusplus
+extern "C" {
+#endif
-void upb_arena_init(upb_arena *a);
-void upb_arena_init2(upb_arena *a, void *mem, size_t n, upb_alloc *alloc);
-void upb_arena_uninit(upb_arena *a);
-bool upb_arena_addcleanup(upb_arena *a, upb_cleanup_func *func, void *ud);
+/* Creates an arena from the given initial block (if any -- n may be 0).
+ * Additional blocks will be allocated from |alloc|. If |alloc| is NULL, this
+ * is a fixed-size arena and cannot grow. */
+upb_arena *upb_arena_init(void *mem, size_t n, upb_alloc *alloc);
+void upb_arena_free(upb_arena *a);
+bool upb_arena_addcleanup(upb_arena *a, void *ud, upb_cleanup_func *func);
size_t upb_arena_bytesallocated(const upb_arena *a);
-void upb_arena_setnextblocksize(upb_arena *a, size_t size);
-void upb_arena_setmaxblocksize(upb_arena *a, size_t size);
+
UPB_INLINE upb_alloc *upb_arena_alloc(upb_arena *a) { return (upb_alloc*)a; }
-UPB_END_EXTERN_C
+/* Convenience wrappers around upb_alloc functions. */
+
+UPB_INLINE void *upb_arena_malloc(upb_arena *a, size_t size) {
+ return upb_malloc(upb_arena_alloc(a), size);
+}
+
+UPB_INLINE void *upb_arena_realloc(upb_arena *a, void *ptr, size_t oldsize,
+ size_t size) {
+ return upb_realloc(upb_arena_alloc(a), ptr, oldsize, size);
+}
+
+UPB_INLINE upb_arena *upb_arena_new() {
+ return upb_arena_init(NULL, 0, &upb_alloc_global);
+}
#ifdef __cplusplus
+} /* extern "C" */
class upb::Arena {
public:
/* A simple arena with no initial memory block and the default allocator. */
- Arena() { upb_arena_init(this); }
-
- /* Constructs an arena with the given initial block which allocates blocks
- * with the given allocator. The given allocator must outlive the Arena.
- *
- * If you pass NULL for the allocator it will default to the global allocator
- * upb_alloc_global, and NULL/0 for the initial block will cause there to be
- * no initial block. */
- Arena(void *mem, size_t len, Allocator* a) {
- upb_arena_init2(this, mem, len, a);
- }
+ Arena() : ptr_(upb_arena_new(), upb_arena_free) {}
- ~Arena() { upb_arena_uninit(this); }
-
- /* Sets the size of the next block the Arena will request (unless the
- * requested allocation is larger). Each block will double in size until the
- * max limit is reached. */
- void SetNextBlockSize(size_t size) { upb_arena_setnextblocksize(this, size); }
-
- /* Sets the maximum block size. No blocks larger than this will be requested
- * from the underlying allocator unless individual arena allocations are
- * larger. */
- void SetMaxBlockSize(size_t size) { upb_arena_setmaxblocksize(this, size); }
+ upb_arena* ptr() { return ptr_.get(); }
/* Allows this arena to be used as a generic allocator.
*
* The arena does not need free() calls so when using Arena as an allocator
* it is safe to skip them. However they are no-ops so there is no harm in
* calling free() either. */
- Allocator* allocator() { return upb_arena_alloc(this); }
+ upb_alloc *allocator() { return upb_arena_alloc(ptr_.get()); }
/* Add a cleanup function to run when the arena is destroyed.
* Returns false on out-of-memory. */
- bool AddCleanup(upb_cleanup_func* func, void* ud) {
- return upb_arena_addcleanup(this, func, ud);
+ bool AddCleanup(void *ud, upb_cleanup_func* func) {
+ return upb_arena_addcleanup(ptr_.get(), ud, func);
}
/* Total number of bytes that have been allocated. It is undefined what
- * Realloc() does to this counter. */
- size_t BytesAllocated() const {
- return upb_arena_bytesallocated(this);
- }
-
- private:
- UPB_DISALLOW_COPY_AND_ASSIGN(Arena)
-
-#else
-struct upb_arena {
-#endif /* __cplusplus */
- /* We implement the allocator interface.
- * This must be the first member of upb_arena! */
- upb_alloc alloc;
-
- /* Allocator to allocate arena blocks. We are responsible for freeing these
- * when we are destroyed. */
- upb_alloc *block_alloc;
-
- size_t bytes_allocated;
- size_t next_block_size;
- size_t max_block_size;
-
- /* Linked list of blocks. Points to an arena_block, defined in env.c */
- void *block_head;
-
- /* Cleanup entries. Pointer to a cleanup_ent, defined in env.c */
- void *cleanup_head;
-
- /* For future expansion, since the size of this struct is exposed to users. */
- void *future1;
- void *future2;
-};
-
-
-/* upb::Environment ***********************************************************/
-
-/* A upb::Environment provides a means for injecting malloc and an
- * error-reporting callback into encoders/decoders. This allows them to be
- * independent of nearly all assumptions about their actual environment.
- *
- * It is also a container for allocating the encoders/decoders themselves that
- * insulates clients from knowing their actual size. This provides ABI
- * compatibility even if the size of the objects change. And this allows the
- * structure definitions to be in the .c files instead of the .h files, making
- * the .h files smaller and more readable.
- *
- * We might want to consider renaming this to "Pipeline" if/when the concept of
- * a pipeline element becomes more formalized. */
-UPB_DECLARE_TYPE(upb::Environment, upb_env)
-
-/* A function that receives an error report from an encoder or decoder. The
- * callback can return true to request that the error should be recovered, but
- * if the error is not recoverable this has no effect. */
-typedef bool upb_error_func(void *ud, const upb_status *status);
-
-UPB_BEGIN_EXTERN_C
-
-void upb_env_init(upb_env *e);
-void upb_env_init2(upb_env *e, void *mem, size_t n, upb_alloc *alloc);
-void upb_env_uninit(upb_env *e);
-
-void upb_env_initonly(upb_env *e);
-
-UPB_INLINE upb_arena *upb_env_arena(upb_env *e) { return (upb_arena*)e; }
-bool upb_env_ok(const upb_env *e);
-void upb_env_seterrorfunc(upb_env *e, upb_error_func *func, void *ud);
-
-/* Convenience wrappers around the methods of the contained arena. */
-void upb_env_reporterrorsto(upb_env *e, upb_status *s);
-bool upb_env_reporterror(upb_env *e, const upb_status *s);
-void *upb_env_malloc(upb_env *e, size_t size);
-void *upb_env_realloc(upb_env *e, void *ptr, size_t oldsize, size_t size);
-void upb_env_free(upb_env *e, void *ptr);
-bool upb_env_addcleanup(upb_env *e, upb_cleanup_func *func, void *ud);
-size_t upb_env_bytesallocated(const upb_env *e);
-
-UPB_END_EXTERN_C
-
-#ifdef __cplusplus
-
-class upb::Environment {
- public:
- /* The given Arena must outlive this environment. */
- Environment() { upb_env_initonly(this); }
-
- Environment(void *mem, size_t len, Allocator *a) : arena_(mem, len, a) {
- upb_env_initonly(this);
- }
-
- Arena* arena() { return upb_env_arena(this); }
-
- /* Set a custom error reporting function. */
- void SetErrorFunction(upb_error_func* func, void* ud) {
- upb_env_seterrorfunc(this, func, ud);
- }
-
- /* Set the error reporting function to simply copy the status to the given
- * status and abort. */
- void ReportErrorsTo(Status* status) { upb_env_reporterrorsto(this, status); }
-
- /* Returns true if all allocations and AddCleanup() calls have succeeded,
- * and no errors were reported with ReportError() (except ones that recovered
- * successfully). */
- bool ok() const { return upb_env_ok(this); }
-
- /* Reports an error to this environment's callback, returning true if
- * the caller should try to recover. */
- bool ReportError(const Status* status) {
- return upb_env_reporterror(this, status);
- }
+ * Realloc() does to &arena_ counter. */
+ size_t BytesAllocated() const { return upb_arena_bytesallocated(ptr_.get()); }
private:
- UPB_DISALLOW_COPY_AND_ASSIGN(Environment)
-
-#else
-struct upb_env {
-#endif /* __cplusplus */
- upb_arena arena_;
- upb_error_func *error_func_;
- void *error_ud_;
- bool ok_;
+ std::unique_ptr<upb_arena, decltype(&upb_arena_free)> ptr_;
};
+#endif
/* upb::InlinedArena **********************************************************/
-/* upb::InlinedEnvironment ****************************************************/
-/* upb::InlinedArena and upb::InlinedEnvironment seed their arenas with a
- * predefined amount of memory. No heap memory will be allocated until the
- * initial block is exceeded.
+/* upb::InlinedArena seeds the arenas with a predefined amount of memory. No
+ * heap memory will be allocated until the initial block is exceeded.
*
* These types only exist in C++ */
@@ -710,29 +320,85 @@ struct upb_env {
template <int N> class upb::InlinedArena : public upb::Arena {
public:
- InlinedArena() : Arena(initial_block_, N, NULL) {}
- explicit InlinedArena(Allocator* a) : Arena(initial_block_, N, a) {}
+ InlinedArena() : ptr_(upb_arena_new(&initial_block_, N, &upb_alloc_global)) {}
+
+ upb_arena* ptr() { return ptr_.get(); }
private:
- UPB_DISALLOW_COPY_AND_ASSIGN(InlinedArena)
+ InlinedArena(const InlinedArena*) = delete;
+ InlinedArena& operator=(const InlinedArena*) = delete;
- char initial_block_[N + UPB_ARENA_BLOCK_OVERHEAD];
+ std::unique_ptr<upb_arena, decltype(&upb_arena_free)> ptr_;
+ char initial_block_[N];
};
-template <int N> class upb::InlinedEnvironment : public upb::Environment {
- public:
- InlinedEnvironment() : Environment(initial_block_, N, NULL) {}
- explicit InlinedEnvironment(Allocator *a)
- : Environment(initial_block_, N, a) {}
+#endif /* __cplusplus */
- private:
- UPB_DISALLOW_COPY_AND_ASSIGN(InlinedEnvironment)
+/* Constants ******************************************************************/
- char initial_block_[N + UPB_ARENA_BLOCK_OVERHEAD];
-};
+/* Generic function type. */
+typedef void upb_func();
-#endif /* __cplusplus */
+/* A list of types as they are encoded on-the-wire. */
+typedef enum {
+ UPB_WIRE_TYPE_VARINT = 0,
+ UPB_WIRE_TYPE_64BIT = 1,
+ UPB_WIRE_TYPE_DELIMITED = 2,
+ UPB_WIRE_TYPE_START_GROUP = 3,
+ UPB_WIRE_TYPE_END_GROUP = 4,
+ UPB_WIRE_TYPE_32BIT = 5
+} upb_wiretype_t;
+/* The types a field can have. Note that this list is not identical to the
+ * types defined in descriptor.proto, which gives INT32 and SINT32 separate
+ * types (we distinguish the two with the "integer encoding" enum below). */
+typedef enum {
+ /* Types stored in 1 byte. */
+ UPB_TYPE_BOOL = 1,
+ /* Types stored in 4 bytes. */
+ UPB_TYPE_FLOAT = 2,
+ UPB_TYPE_INT32 = 3,
+ UPB_TYPE_UINT32 = 4,
+ UPB_TYPE_ENUM = 5, /* Enum values are int32. */
+ /* Types stored as pointers (probably 4 or 8 bytes). */
+ UPB_TYPE_STRING = 6,
+ UPB_TYPE_BYTES = 7,
+ UPB_TYPE_MESSAGE = 8,
+ /* Types stored as 8 bytes. */
+ UPB_TYPE_DOUBLE = 9,
+ UPB_TYPE_INT64 = 10,
+ UPB_TYPE_UINT64 = 11
+} upb_fieldtype_t;
+
+/* The repeated-ness of each field; this matches descriptor.proto. */
+typedef enum {
+ UPB_LABEL_OPTIONAL = 1,
+ UPB_LABEL_REQUIRED = 2,
+ UPB_LABEL_REPEATED = 3
+} upb_label_t;
+/* Descriptor types, as defined in descriptor.proto. */
+typedef enum {
+ UPB_DESCRIPTOR_TYPE_DOUBLE = 1,
+ UPB_DESCRIPTOR_TYPE_FLOAT = 2,
+ UPB_DESCRIPTOR_TYPE_INT64 = 3,
+ UPB_DESCRIPTOR_TYPE_UINT64 = 4,
+ UPB_DESCRIPTOR_TYPE_INT32 = 5,
+ UPB_DESCRIPTOR_TYPE_FIXED64 = 6,
+ UPB_DESCRIPTOR_TYPE_FIXED32 = 7,
+ UPB_DESCRIPTOR_TYPE_BOOL = 8,
+ UPB_DESCRIPTOR_TYPE_STRING = 9,
+ UPB_DESCRIPTOR_TYPE_GROUP = 10,
+ UPB_DESCRIPTOR_TYPE_MESSAGE = 11,
+ UPB_DESCRIPTOR_TYPE_BYTES = 12,
+ UPB_DESCRIPTOR_TYPE_UINT32 = 13,
+ UPB_DESCRIPTOR_TYPE_ENUM = 14,
+ UPB_DESCRIPTOR_TYPE_SFIXED32 = 15,
+ UPB_DESCRIPTOR_TYPE_SFIXED64 = 16,
+ UPB_DESCRIPTOR_TYPE_SINT32 = 17,
+ UPB_DESCRIPTOR_TYPE_SINT64 = 18
+} upb_descriptortype_t;
+
+extern const uint8_t upb_desctype_to_fieldtype[];
#endif /* UPB_H_ */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback