/src/google/protobuf/compiler/java/java_primitive_field.h

http://protobuf.googlecode.com/ · C Header · 123 lines · 73 code · 16 blank · 34 comment · 0 complexity · ea948d7f3ff827f1fedf7ee89b509919 MD5 · raw file

  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_PRIMITIVE_FIELD_H__
  34. #define GOOGLE_PROTOBUF_COMPILER_JAVA_PRIMITIVE_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 PrimitiveFieldGenerator : public FieldGenerator {
  43. public:
  44. explicit PrimitiveFieldGenerator(const FieldDescriptor* descriptor,
  45. int messageBitIndex, int builderBitIndex);
  46. ~PrimitiveFieldGenerator();
  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 GenerateParsingDoneCode(io::Printer* printer) const;
  59. void GenerateSerializationCode(io::Printer* printer) const;
  60. void GenerateSerializedSizeCode(io::Printer* printer) const;
  61. void GenerateFieldBuilderInitializationCode(io::Printer* printer) const;
  62. void GenerateEqualsCode(io::Printer* printer) const;
  63. void GenerateHashCode(io::Printer* printer) const;
  64. string GetBoxedType() const;
  65. private:
  66. const FieldDescriptor* descriptor_;
  67. map<string, string> variables_;
  68. const int messageBitIndex_;
  69. const int builderBitIndex_;
  70. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(PrimitiveFieldGenerator);
  71. };
  72. class RepeatedPrimitiveFieldGenerator : public FieldGenerator {
  73. public:
  74. explicit RepeatedPrimitiveFieldGenerator(const FieldDescriptor* descriptor,
  75. int messageBitIndex, int builderBitIndex);
  76. ~RepeatedPrimitiveFieldGenerator();
  77. // implements FieldGenerator ---------------------------------------
  78. int GetNumBitsForMessage() const;
  79. int GetNumBitsForBuilder() const;
  80. void GenerateInterfaceMembers(io::Printer* printer) const;
  81. void GenerateMembers(io::Printer* printer) const;
  82. void GenerateBuilderMembers(io::Printer* printer) const;
  83. void GenerateInitializationCode(io::Printer* printer) const;
  84. void GenerateBuilderClearCode(io::Printer* printer) const;
  85. void GenerateMergingCode(io::Printer* printer) const;
  86. void GenerateBuildingCode(io::Printer* printer) const;
  87. void GenerateParsingCode(io::Printer* printer) const;
  88. void GenerateParsingCodeFromPacked(io::Printer* printer) const;
  89. void GenerateParsingDoneCode(io::Printer* printer) const;
  90. void GenerateSerializationCode(io::Printer* printer) const;
  91. void GenerateSerializedSizeCode(io::Printer* printer) const;
  92. void GenerateFieldBuilderInitializationCode(io::Printer* printer) const;
  93. void GenerateEqualsCode(io::Printer* printer) const;
  94. void GenerateHashCode(io::Printer* printer) const;
  95. string GetBoxedType() const;
  96. private:
  97. const FieldDescriptor* descriptor_;
  98. map<string, string> variables_;
  99. const int messageBitIndex_;
  100. const int builderBitIndex_;
  101. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(RepeatedPrimitiveFieldGenerator);
  102. };
  103. } // namespace java
  104. } // namespace compiler
  105. } // namespace protobuf
  106. } // namespace google
  107. #endif // GOOGLE_PROTOBUF_COMPILER_JAVA_PRIMITIVE_FIELD_H__