protobuf.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2014 Google Inc. All rights reserved.
  3. // https://developers.google.com/protocol-buffers/
  4. //
  5. // Redistribution and use in source and binary forms, with or without
  6. // modification, are permitted provided that the following conditions are
  7. // met:
  8. //
  9. // * Redistributions of source code must retain the above copyright
  10. // notice, this list of conditions and the following disclaimer.
  11. // * Redistributions in binary form must reproduce the above
  12. // copyright notice, this list of conditions and the following disclaimer
  13. // in the documentation and/or other materials provided with the
  14. // distribution.
  15. // * Neither the name of Google Inc. nor the names of its
  16. // contributors may be used to endorse or promote products derived from
  17. // this software without specific prior written permission.
  18. //
  19. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. #ifndef __GOOGLE_PROTOBUF_RUBY_PROTOBUF_H__
  31. #define __GOOGLE_PROTOBUF_RUBY_PROTOBUF_H__
  32. #include <ruby/ruby.h>
  33. #include <ruby/vm.h>
  34. #include <ruby/encoding.h>
  35. #include "ruby-upb.h"
  36. #include "defs.h"
  37. // These operate on a map field (i.e., a repeated field of submessages whose
  38. // submessage type is a map-entry msgdef).
  39. const upb_fielddef* map_field_key(const upb_fielddef* field);
  40. const upb_fielddef* map_field_value(const upb_fielddef* field);
  41. // -----------------------------------------------------------------------------
  42. // Arena
  43. // -----------------------------------------------------------------------------
  44. // A Ruby object that wraps an underlying upb_arena. Any objects that are
  45. // allocated from this arena should reference the Arena in rb_gc_mark(), to
  46. // ensure that the object's underlying memory outlives any Ruby object that can
  47. // reach it.
  48. VALUE Arena_new();
  49. upb_arena *Arena_get(VALUE arena);
  50. // Fuses this arena to another, throwing a Ruby exception if this is not
  51. // possible.
  52. void Arena_fuse(VALUE arena, upb_arena *other);
  53. // Pins this Ruby object to the lifetime of this arena, so that as long as the
  54. // arena is alive this object will not be collected.
  55. //
  56. // We use this to guarantee that the "frozen" bit on the object will be
  57. // remembered, even if the user drops their reference to this precise object.
  58. void Arena_Pin(VALUE arena, VALUE obj);
  59. // -----------------------------------------------------------------------------
  60. // ObjectCache
  61. // -----------------------------------------------------------------------------
  62. // Global object cache from upb array/map/message/symtab to wrapper object.
  63. //
  64. // This is a conceptually "weak" cache, in that it does not prevent "val" from
  65. // being collected (though in Ruby <2.7 is it effectively strong, due to
  66. // implementation limitations).
  67. // Adds an entry to the cache. The "arena" parameter must give the arena that
  68. // "key" was allocated from. In Ruby <2.7.0, it will be used to remove the key
  69. // from the cache when the arena is destroyed.
  70. void ObjectCache_Add(const void* key, VALUE val);
  71. // Returns the cached object for this key, if any. Otherwise returns Qnil.
  72. VALUE ObjectCache_Get(const void* key);
  73. // -----------------------------------------------------------------------------
  74. // StringBuilder, for inspect
  75. // -----------------------------------------------------------------------------
  76. struct StringBuilder;
  77. typedef struct StringBuilder StringBuilder;
  78. StringBuilder* StringBuilder_New();
  79. void StringBuilder_Free(StringBuilder* b);
  80. void StringBuilder_Printf(StringBuilder* b, const char *fmt, ...);
  81. VALUE StringBuilder_ToRubyString(StringBuilder* b);
  82. void StringBuilder_PrintMsgval(StringBuilder* b, upb_msgval val, TypeInfo info);
  83. // -----------------------------------------------------------------------------
  84. // Utilities.
  85. // -----------------------------------------------------------------------------
  86. extern VALUE cTypeError;
  87. #ifdef NDEBUG
  88. #define PBRUBY_ASSERT(expr) do {} while (false && (expr))
  89. #else
  90. #define PBRUBY_ASSERT(expr) assert(expr)
  91. #endif
  92. #define PBRUBY_MAX(x, y) (((x) > (y)) ? (x) : (y))
  93. #define UPB_UNUSED(var) (void)var
  94. #endif // __GOOGLE_PROTOBUF_RUBY_PROTOBUF_H__