protobuf.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. // -----------------------------------------------------------------------------
  51. // ObjectCache
  52. // -----------------------------------------------------------------------------
  53. // Global object cache from upb array/map/message/symtab to wrapper object.
  54. //
  55. // This is a conceptually "weak" cache, in that it does not prevent "val" from
  56. // being collected (though in Ruby <2.7 is it effectively strong, due to
  57. // implementation limitations).
  58. // Adds an entry to the cache. The "arena" parameter must give the arena that
  59. // "key" was allocated from. In Ruby <2.7.0, it will be used to remove the key
  60. // from the cache when the arena is destroyed.
  61. void ObjectCache_Add(const void* key, VALUE val, upb_arena *arena);
  62. // Returns the cached object for this key, if any. Otherwise returns Qnil.
  63. VALUE ObjectCache_Get(const void* key);
  64. // Pins the previously added object so it is GC-rooted. This turns the
  65. // reference to "val" from weak to strong. We use this to guarantee that the
  66. // "frozen" bit on the object will be remembered, even if the user drops their
  67. // reference to this precise object.
  68. //
  69. // The "arena" parameter must give the arena that "key" was allocated from.
  70. void ObjectCache_Pin(const void* key, VALUE val, upb_arena *arena);
  71. // -----------------------------------------------------------------------------
  72. // StringBuilder, for inspect
  73. // -----------------------------------------------------------------------------
  74. struct StringBuilder;
  75. typedef struct StringBuilder StringBuilder;
  76. StringBuilder* StringBuilder_New();
  77. void StringBuilder_Free(StringBuilder* b);
  78. void StringBuilder_Printf(StringBuilder* b, const char *fmt, ...);
  79. VALUE StringBuilder_ToRubyString(StringBuilder* b);
  80. void StringBuilder_PrintMsgval(StringBuilder* b, upb_msgval val, TypeInfo info);
  81. // -----------------------------------------------------------------------------
  82. // Utilities.
  83. // -----------------------------------------------------------------------------
  84. extern VALUE cTypeError;
  85. #ifdef NDEBUG
  86. #define PBRUBY_ASSERT(expr) do {} while (false && (expr))
  87. #else
  88. #define PBRUBY_ASSERT(expr) assert(expr)
  89. #endif
  90. #define UPB_UNUSED(var) (void)var
  91. #endif // __GOOGLE_PROTOBUF_RUBY_PROTOBUF_H__