PageRenderTime 25ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/thirdparty/breakpad/third_party/protobuf/protobuf/src/google/protobuf/compiler/java/java_message_field.h

http://github.com/tomahawk-player/tomahawk
C++ Header | 134 lines | 82 code | 18 blank | 34 comment | 0 complexity | b8de96d24b50129bcc0502d24273c662 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-3-Clause, GPL-3.0, GPL-2.0
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2008 Google Inc. All rights reserved.
  3. // http://code.google.com/p/protobuf/
  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. // Author: kenton@google.com (Kenton Varda)
  31. // Based on original Protocol Buffers design by
  32. // Sanjay Ghemawat, Jeff Dean, and others.
  33. #ifndef GOOGLE_PROTOBUF_COMPILER_JAVA_MESSAGE_FIELD_H__
  34. #define GOOGLE_PROTOBUF_COMPILER_JAVA_MESSAGE_FIELD_H__
  35. #include <map>
  36. #include <string>
  37. #include <google/protobuf/compiler/java/java_field.h>
  38. namespace google {
  39. namespace protobuf {
  40. namespace compiler {
  41. namespace java {
  42. class MessageFieldGenerator : public FieldGenerator {
  43. public:
  44. explicit MessageFieldGenerator(const FieldDescriptor* descriptor,
  45. int messageBitIndex, int builderBitIndex);
  46. ~MessageFieldGenerator();
  47. // implements FieldGenerator ---------------------------------------
  48. int GetNumBitsForMessage() const;
  49. int GetNumBitsForBuilder() const;
  50. void GenerateInterfaceMembers(io::Printer* printer) const;
  51. void GenerateMembers(io::Printer* printer) const;
  52. void GenerateBuilderMembers(io::Printer* printer) const;
  53. void GenerateInitializationCode(io::Printer* printer) const;
  54. void GenerateBuilderClearCode(io::Printer* printer) const;
  55. void GenerateMergingCode(io::Printer* printer) const;
  56. void GenerateBuildingCode(io::Printer* printer) const;
  57. void GenerateParsingCode(io::Printer* printer) const;
  58. void GenerateSerializationCode(io::Printer* printer) const;
  59. void GenerateSerializedSizeCode(io::Printer* printer) const;
  60. void GenerateFieldBuilderInitializationCode(io::Printer* printer) const;
  61. void GenerateEqualsCode(io::Printer* printer) const;
  62. void GenerateHashCode(io::Printer* printer) const;
  63. string GetBoxedType() const;
  64. private:
  65. const FieldDescriptor* descriptor_;
  66. map<string, string> variables_;
  67. const int messageBitIndex_;
  68. const int builderBitIndex_;
  69. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(MessageFieldGenerator);
  70. void PrintNestedBuilderCondition(io::Printer* printer,
  71. const char* regular_case, const char* nested_builder_case) const;
  72. void PrintNestedBuilderFunction(io::Printer* printer,
  73. const char* method_prototype, const char* regular_case,
  74. const char* nested_builder_case,
  75. const char* trailing_code) const;
  76. };
  77. class RepeatedMessageFieldGenerator : public FieldGenerator {
  78. public:
  79. explicit RepeatedMessageFieldGenerator(const FieldDescriptor* descriptor,
  80. int messageBitIndex, int builderBitIndex);
  81. ~RepeatedMessageFieldGenerator();
  82. // implements FieldGenerator ---------------------------------------
  83. int GetNumBitsForMessage() const;
  84. int GetNumBitsForBuilder() const;
  85. void GenerateInterfaceMembers(io::Printer* printer) const;
  86. void GenerateMembers(io::Printer* printer) const;
  87. void GenerateBuilderMembers(io::Printer* printer) const;
  88. void GenerateInitializationCode(io::Printer* printer) const;
  89. void GenerateBuilderClearCode(io::Printer* printer) const;
  90. void GenerateMergingCode(io::Printer* printer) const;
  91. void GenerateBuildingCode(io::Printer* printer) const;
  92. void GenerateParsingCode(io::Printer* printer) const;
  93. void GenerateSerializationCode(io::Printer* printer) const;
  94. void GenerateSerializedSizeCode(io::Printer* printer) const;
  95. void GenerateFieldBuilderInitializationCode(io::Printer* printer) const;
  96. void GenerateEqualsCode(io::Printer* printer) const;
  97. void GenerateHashCode(io::Printer* printer) const;
  98. string GetBoxedType() const;
  99. private:
  100. const FieldDescriptor* descriptor_;
  101. map<string, string> variables_;
  102. const int messageBitIndex_;
  103. const int builderBitIndex_;
  104. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(RepeatedMessageFieldGenerator);
  105. void PrintNestedBuilderCondition(io::Printer* printer,
  106. const char* regular_case, const char* nested_builder_case) const;
  107. void PrintNestedBuilderFunction(io::Printer* printer,
  108. const char* method_prototype, const char* regular_case,
  109. const char* nested_builder_case,
  110. const char* trailing_code) const;
  111. };
  112. } // namespace java
  113. } // namespace compiler
  114. } // namespace protobuf
  115. } // namespace google
  116. #endif // GOOGLE_PROTOBUF_COMPILER_JAVA_MESSAGE_FIELD_H__