protobuf.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. #include "protobuf.h"
  31. // -----------------------------------------------------------------------------
  32. // Global map from upb {msg,enum}defs to wrapper Descriptor/EnumDescriptor
  33. // instances.
  34. // -----------------------------------------------------------------------------
  35. // This is a hash table from def objects (encoded by converting pointers to
  36. // Ruby integers) to MessageDef/EnumDef instances (as Ruby values).
  37. VALUE upb_def_to_ruby_obj_map;
  38. VALUE cError;
  39. VALUE cParseError;
  40. VALUE cTypeError;
  41. void add_def_obj(const void* def, VALUE value) {
  42. rb_hash_aset(upb_def_to_ruby_obj_map, ULL2NUM((intptr_t)def), value);
  43. }
  44. VALUE get_def_obj(const void* def) {
  45. return rb_hash_aref(upb_def_to_ruby_obj_map, ULL2NUM((intptr_t)def));
  46. }
  47. // -----------------------------------------------------------------------------
  48. // Utilities.
  49. // -----------------------------------------------------------------------------
  50. // Raises a Ruby error if |status| is not OK, using its error message.
  51. void check_upb_status(const upb_status* status, const char* msg) {
  52. if (!upb_ok(status)) {
  53. rb_raise(rb_eRuntimeError, "%s: %s\n", msg, upb_status_errmsg(status));
  54. }
  55. }
  56. // String encodings: we look these up once, at load time, and then cache them
  57. // here.
  58. rb_encoding* kRubyStringUtf8Encoding;
  59. rb_encoding* kRubyStringASCIIEncoding;
  60. rb_encoding* kRubyString8bitEncoding;
  61. // Ruby-interned string: "descriptor". We use this identifier to store an
  62. // instance variable on message classes we create in order to link them back to
  63. // their descriptors.
  64. //
  65. // We intern this once at module load time then use the interned identifier at
  66. // runtime in order to avoid the cost of repeatedly interning in hot paths.
  67. const char* kDescriptorInstanceVar = "descriptor";
  68. ID descriptor_instancevar_interned;
  69. // -----------------------------------------------------------------------------
  70. // Initialization/entry point.
  71. // -----------------------------------------------------------------------------
  72. // This must be named "Init_protobuf_c" because the Ruby module is named
  73. // "protobuf_c" -- the VM looks for this symbol in our .so.
  74. void Init_protobuf_c() {
  75. VALUE google = rb_define_module("Google");
  76. VALUE protobuf = rb_define_module_under(google, "Protobuf");
  77. VALUE internal = rb_define_module_under(protobuf, "Internal");
  78. descriptor_instancevar_interned = rb_intern(kDescriptorInstanceVar);
  79. DescriptorPool_register(protobuf);
  80. Descriptor_register(protobuf);
  81. FileDescriptor_register(protobuf);
  82. FieldDescriptor_register(protobuf);
  83. OneofDescriptor_register(protobuf);
  84. EnumDescriptor_register(protobuf);
  85. MessageBuilderContext_register(internal);
  86. OneofBuilderContext_register(internal);
  87. EnumBuilderContext_register(internal);
  88. FileBuilderContext_register(internal);
  89. Builder_register(internal);
  90. RepeatedField_register(protobuf);
  91. Map_register(protobuf);
  92. cError = rb_const_get(protobuf, rb_intern("Error"));
  93. cParseError = rb_const_get(protobuf, rb_intern("ParseError"));
  94. cTypeError = rb_const_get(protobuf, rb_intern("TypeError"));
  95. rb_define_singleton_method(protobuf, "discard_unknown",
  96. Google_Protobuf_discard_unknown, 1);
  97. rb_define_singleton_method(protobuf, "deep_copy",
  98. Google_Protobuf_deep_copy, 1);
  99. kRubyStringUtf8Encoding = rb_utf8_encoding();
  100. kRubyStringASCIIEncoding = rb_usascii_encoding();
  101. kRubyString8bitEncoding = rb_ascii8bit_encoding();
  102. rb_gc_register_address(&upb_def_to_ruby_obj_map);
  103. upb_def_to_ruby_obj_map = rb_hash_new();
  104. }