java_generator.cc revision fbaaef999ba563838ebd00874ed8a1c01fbf286d
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
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
48JavaGenerator::JavaGenerator() {}
49JavaGenerator::~JavaGenerator() {}
50
51bool JavaGenerator::Generate(const FileDescriptor* file,
52                             const string& parameter,
53                             OutputDirectory* output_directory,
54                             string* error) const {
55  vector<pair<string, string> > options;
56  ParseGeneratorParameter(parameter, &options);
57
58  // -----------------------------------------------------------------
59  // parse generator options
60
61  // Name a file where we will write a list of generated file names, one
62  // per line.
63  string output_list_file;
64
65  for (int i = 0; i < options.size(); i++) {
66    if (options[i].first == "output_list_file") {
67      output_list_file = options[i].second;
68    } else {
69      *error = "Unknown generator option: " + options[i].first;
70      return false;
71    }
72  }
73
74
75  // -----------------------------------------------------------------
76
77
78  FileGenerator file_generator(file);
79  if (!file_generator.Validate(error)) {
80    return false;
81  }
82
83  string package_dir =
84    StringReplace(file_generator.java_package(), ".", "/", true);
85  if (!package_dir.empty()) package_dir += "/";
86
87  vector<string> all_files;
88
89  string java_filename = package_dir;
90  java_filename += file_generator.classname();
91  java_filename += ".java";
92  all_files.push_back(java_filename);
93
94  // Generate main java file.
95  scoped_ptr<io::ZeroCopyOutputStream> output(
96    output_directory->Open(java_filename));
97  io::Printer printer(output.get(), '$');
98  file_generator.Generate(&printer);
99
100  // Generate sibling files.
101  file_generator.GenerateSiblings(package_dir, output_directory, &all_files);
102
103  // Generate output list if requested.
104  if (!output_list_file.empty()) {
105    // Generate output list.  This is just a simple text file placed in a
106    // deterministic location which lists the .java files being generated.
107    scoped_ptr<io::ZeroCopyOutputStream> srclist_raw_output(
108      output_directory->Open(output_list_file));
109    io::Printer srclist_printer(srclist_raw_output.get(), '$');
110    for (int i = 0; i < all_files.size(); i++) {
111      srclist_printer.Print("$filename$\n", "filename", all_files[i]);
112    }
113  }
114
115  return true;
116}
117
118}  // namespace java
119}  // namespace compiler
120}  // namespace protobuf
121}  // namespace google
122