blob: e6c79abcd1a2040c974d6d58e48be6e35796e241 [file] [log] [blame]
temporal40ee5512008-07-10 02:12:20 +00001// Protocol Buffers - Google's data interchange format
kenton@google.com24bf56f2008-09-24 20:31:01 +00002// Copyright 2008 Google Inc. All rights reserved.
temporal40ee5512008-07-10 02:12:20 +00003// http://code.google.com/p/protobuf/
4//
kenton@google.com24bf56f2008-09-24 20:31:01 +00005// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are
7// met:
temporal40ee5512008-07-10 02:12:20 +00008//
kenton@google.com24bf56f2008-09-24 20:31:01 +00009// * 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.
temporal40ee5512008-07-10 02:12:20 +000018//
kenton@google.com24bf56f2008-09-24 20:31:01 +000019// 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.
temporal40ee5512008-07-10 02:12:20 +000030
31// Author: kenton@google.com (Kenton Varda)
32// Based on original Protocol Buffers design by
33// Sanjay Ghemawat, Jeff Dean, and others.
34
35#include <google/protobuf/compiler/java/java_generator.h>
36#include <google/protobuf/compiler/java/java_file.h>
37#include <google/protobuf/compiler/java/java_helpers.h>
38#include <google/protobuf/io/printer.h>
39#include <google/protobuf/io/zero_copy_stream.h>
40#include <google/protobuf/descriptor.pb.h>
41#include <google/protobuf/stubs/strutil.h>
42
43namespace google {
44namespace protobuf {
45namespace compiler {
46namespace java {
47
kenton@google.comfccb1462009-12-18 02:11:36 +000048
temporal40ee5512008-07-10 02:12:20 +000049JavaGenerator::JavaGenerator() {}
50JavaGenerator::~JavaGenerator() {}
51
52bool JavaGenerator::Generate(const FileDescriptor* file,
53 const string& parameter,
liujisi@google.com33165fe2010-11-02 13:14:58 +000054 GeneratorContext* context,
temporal40ee5512008-07-10 02:12:20 +000055 string* error) const {
temporal40ee5512008-07-10 02:12:20 +000056 // -----------------------------------------------------------------
57 // parse generator options
58
59 // Name a file where we will write a list of generated file names, one
60 // per line.
61 string output_list_file;
62
liujisi@google.com33165fe2010-11-02 13:14:58 +000063
64 vector<pair<string, string> > options;
65 ParseGeneratorParameter(parameter, &options);
66
temporal40ee5512008-07-10 02:12:20 +000067 for (int i = 0; i < options.size(); i++) {
68 if (options[i].first == "output_list_file") {
69 output_list_file = options[i].second;
70 } else {
71 *error = "Unknown generator option: " + options[i].first;
72 return false;
73 }
74 }
75
temporal40ee5512008-07-10 02:12:20 +000076 // -----------------------------------------------------------------
77
78
liujisi@google.com33165fe2010-11-02 13:14:58 +000079 if (file->options().optimize_for() == FileOptions::LITE_RUNTIME &&
80 file->options().java_generate_equals_and_hash()) {
81 *error = "The \"java_generate_equals_and_hash\" option is incompatible "
82 "with \"optimize_for = LITE_RUNTIME\". You must optimize for "
83 "SPEED or CODE_SIZE if you want to use this option.";
84 return false;
85 }
86
temporal40ee5512008-07-10 02:12:20 +000087 FileGenerator file_generator(file);
88 if (!file_generator.Validate(error)) {
89 return false;
90 }
91
liujisi@google.com33165fe2010-11-02 13:14:58 +000092 string package_dir = JavaPackageToDir(file_generator.java_package());
temporal40ee5512008-07-10 02:12:20 +000093
94 vector<string> all_files;
95
96 string java_filename = package_dir;
97 java_filename += file_generator.classname();
98 java_filename += ".java";
99 all_files.push_back(java_filename);
100
101 // Generate main java file.
102 scoped_ptr<io::ZeroCopyOutputStream> output(
liujisi@google.com33165fe2010-11-02 13:14:58 +0000103 context->Open(java_filename));
temporal40ee5512008-07-10 02:12:20 +0000104 io::Printer printer(output.get(), '$');
105 file_generator.Generate(&printer);
106
107 // Generate sibling files.
liujisi@google.com33165fe2010-11-02 13:14:58 +0000108 file_generator.GenerateSiblings(package_dir, context, &all_files);
temporal40ee5512008-07-10 02:12:20 +0000109
110 // Generate output list if requested.
111 if (!output_list_file.empty()) {
112 // Generate output list. This is just a simple text file placed in a
113 // deterministic location which lists the .java files being generated.
114 scoped_ptr<io::ZeroCopyOutputStream> srclist_raw_output(
liujisi@google.com33165fe2010-11-02 13:14:58 +0000115 context->Open(output_list_file));
temporal40ee5512008-07-10 02:12:20 +0000116 io::Printer srclist_printer(srclist_raw_output.get(), '$');
117 for (int i = 0; i < all_files.size(); i++) {
118 srclist_printer.Print("$filename$\n", "filename", all_files[i]);
119 }
120 }
121
122 return true;
123}
124
125} // namespace java
126} // namespace compiler
127} // namespace protobuf
128} // namespace google