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

http://github.com/tomahawk-player/tomahawk · C++ Header · 101 lines · 42 code · 18 blank · 41 comment · 0 complexity · 98960348d98043a64f5d74ba3f3106a3 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_FILE_H__
  34. #define GOOGLE_PROTOBUF_COMPILER_JAVA_FILE_H__
  35. #include <string>
  36. #include <vector>
  37. #include <google/protobuf/stubs/common.h>
  38. namespace google {
  39. namespace protobuf {
  40. class FileDescriptor; // descriptor.h
  41. namespace io {
  42. class Printer; // printer.h
  43. }
  44. namespace compiler {
  45. class GeneratorContext; // code_generator.h
  46. }
  47. }
  48. namespace protobuf {
  49. namespace compiler {
  50. namespace java {
  51. class FileGenerator {
  52. public:
  53. explicit FileGenerator(const FileDescriptor* file);
  54. ~FileGenerator();
  55. // Checks for problems that would otherwise lead to cryptic compile errors.
  56. // Returns true if there are no problems, or writes an error description to
  57. // the given string and returns false otherwise.
  58. bool Validate(string* error);
  59. void Generate(io::Printer* printer);
  60. // If we aren't putting everything into one file, this will write all the
  61. // files other than the outer file (i.e. one for each message, enum, and
  62. // service type).
  63. void GenerateSiblings(const string& package_dir,
  64. GeneratorContext* generator_context,
  65. vector<string>* file_list);
  66. const string& java_package() { return java_package_; }
  67. const string& classname() { return classname_; }
  68. private:
  69. // Returns whether the dependency should be included in the output file.
  70. // Always returns true for opensource, but used internally at Google to help
  71. // improve compatibility with version 1 of protocol buffers.
  72. bool ShouldIncludeDependency(const FileDescriptor* descriptor);
  73. const FileDescriptor* file_;
  74. string java_package_;
  75. string classname_;
  76. void GenerateEmbeddedDescriptor(io::Printer* printer);
  77. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FileGenerator);
  78. };
  79. } // namespace java
  80. } // namespace compiler
  81. } // namespace protobuf
  82. } // namespace google
  83. #endif // GOOGLE_PROTOBUF_COMPILER_JAVA_FILE_H__