1 // Protocol Buffers - Google's data interchange format
2 // Copyright 2008 Google Inc.  All rights reserved.
3 // https://developers.google.com/protocol-buffers/
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_doc_comment.h>
36 
37 #include <vector>
38 
39 #include <google/protobuf/io/printer.h>
40 #include <google/protobuf/stubs/strutil.h>
41 
42 namespace google {
43 namespace protobuf {
44 namespace compiler {
45 namespace java {
46 
EscapeJavadoc(const string & input)47 string EscapeJavadoc(const string& input) {
48   string result;
49   result.reserve(input.size() * 2);
50 
51   char prev = '*';
52 
53   for (string::size_type i = 0; i < input.size(); i++) {
54     char c = input[i];
55     switch (c) {
56       case '*':
57         // Avoid "/*".
58         if (prev == '/') {
59           result.append("&#42;");
60         } else {
61           result.push_back(c);
62         }
63         break;
64       case '/':
65         // Avoid "*/".
66         if (prev == '*') {
67           result.append("&#47;");
68         } else {
69           result.push_back(c);
70         }
71         break;
72       case '@':
73         // '@' starts javadoc tags including the @deprecated tag, which will
74         // cause a compile-time error if inserted before a declaration that
75         // does not have a corresponding @Deprecated annotation.
76         result.append("&#64;");
77         break;
78       case '<':
79         // Avoid interpretation as HTML.
80         result.append("&lt;");
81         break;
82       case '>':
83         // Avoid interpretation as HTML.
84         result.append("&gt;");
85         break;
86       case '&':
87         // Avoid interpretation as HTML.
88         result.append("&amp;");
89         break;
90       case '\\':
91         // Java interprets Unicode escape sequences anywhere!
92         result.append("&#92;");
93         break;
94       default:
95         result.push_back(c);
96         break;
97     }
98 
99     prev = c;
100   }
101 
102   return result;
103 }
104 
WriteDocCommentBodyForLocation(io::Printer * printer,const SourceLocation & location)105 static void WriteDocCommentBodyForLocation(
106     io::Printer* printer, const SourceLocation& location) {
107   string comments = location.leading_comments.empty() ?
108       location.trailing_comments : location.leading_comments;
109   if (!comments.empty()) {
110     // TODO(kenton):  Ideally we should parse the comment text as Markdown and
111     //   write it back as HTML, but this requires a Markdown parser.  For now
112     //   we just use <pre> to get fixed-width text formatting.
113 
114     // If the comment itself contains block comment start or end markers,
115     // HTML-escape them so that they don't accidentally close the doc comment.
116     comments = EscapeJavadoc(comments);
117 
118     vector<string> lines = Split(comments, "\n");
119     while (!lines.empty() && lines.back().empty()) {
120       lines.pop_back();
121     }
122 
123     printer->Print(
124         " *\n"
125         " * <pre>\n");
126     for (int i = 0; i < lines.size(); i++) {
127       // Most lines should start with a space.  Watch out for lines that start
128       // with a /, since putting that right after the leading asterisk will
129       // close the comment.
130       if (!lines[i].empty() && lines[i][0] == '/') {
131         printer->Print(" * $line$\n", "line", lines[i]);
132       } else {
133         printer->Print(" *$line$\n", "line", lines[i]);
134       }
135     }
136     printer->Print(" * </pre>\n");
137   }
138 }
139 
140 template <typename DescriptorType>
WriteDocCommentBody(io::Printer * printer,const DescriptorType * descriptor)141 static void WriteDocCommentBody(
142     io::Printer* printer, const DescriptorType* descriptor) {
143   SourceLocation location;
144   if (descriptor->GetSourceLocation(&location)) {
145     WriteDocCommentBodyForLocation(printer, location);
146   }
147 }
148 
FirstLineOf(const string & value)149 static string FirstLineOf(const string& value) {
150   string result = value;
151 
152   string::size_type pos = result.find_first_of('\n');
153   if (pos != string::npos) {
154     result.erase(pos);
155   }
156 
157   // If line ends in an opening brace, make it "{ ... }" so it looks nice.
158   if (!result.empty() && result[result.size() - 1] == '{') {
159     result.append(" ... }");
160   }
161 
162   return result;
163 }
164 
WriteMessageDocComment(io::Printer * printer,const Descriptor * message)165 void WriteMessageDocComment(io::Printer* printer, const Descriptor* message) {
166   printer->Print(
167     "/**\n"
168     " * Protobuf type {@code $fullname$}\n",
169     "fullname", EscapeJavadoc(message->full_name()));
170   WriteDocCommentBody(printer, message);
171   printer->Print(" */\n");
172 }
173 
WriteFieldDocComment(io::Printer * printer,const FieldDescriptor * field)174 void WriteFieldDocComment(io::Printer* printer, const FieldDescriptor* field) {
175   // In theory we should have slightly different comments for setters, getters,
176   // etc., but in practice everyone already knows the difference between these
177   // so it's redundant information.
178 
179   // We use the field declaration as the first line of the comment, e.g.:
180   //   optional string foo = 5;
181   // This communicates a lot of information about the field in a small space.
182   // If the field is a group, the debug string might end with {.
183   printer->Print(
184     "/**\n"
185     " * <code>$def$</code>\n",
186     "def", EscapeJavadoc(FirstLineOf(field->DebugString())));
187   WriteDocCommentBody(printer, field);
188   printer->Print(" */\n");
189 }
190 
WriteEnumDocComment(io::Printer * printer,const EnumDescriptor * enum_)191 void WriteEnumDocComment(io::Printer* printer, const EnumDescriptor* enum_) {
192   printer->Print(
193     "/**\n"
194     " * Protobuf enum {@code $fullname$}\n",
195     "fullname", EscapeJavadoc(enum_->full_name()));
196   WriteDocCommentBody(printer, enum_);
197   printer->Print(" */\n");
198 }
199 
WriteEnumValueDocComment(io::Printer * printer,const EnumValueDescriptor * value)200 void WriteEnumValueDocComment(io::Printer* printer,
201                               const EnumValueDescriptor* value) {
202   printer->Print(
203     "/**\n"
204     " * <code>$def$</code>\n",
205     "def", EscapeJavadoc(FirstLineOf(value->DebugString())));
206   WriteDocCommentBody(printer, value);
207   printer->Print(" */\n");
208 }
209 
WriteServiceDocComment(io::Printer * printer,const ServiceDescriptor * service)210 void WriteServiceDocComment(io::Printer* printer,
211                             const ServiceDescriptor* service) {
212   printer->Print(
213     "/**\n"
214     " * Protobuf service {@code $fullname$}\n",
215     "fullname", EscapeJavadoc(service->full_name()));
216   WriteDocCommentBody(printer, service);
217   printer->Print(" */\n");
218 }
219 
WriteMethodDocComment(io::Printer * printer,const MethodDescriptor * method)220 void WriteMethodDocComment(io::Printer* printer,
221                            const MethodDescriptor* method) {
222   printer->Print(
223     "/**\n"
224     " * <code>$def$</code>\n",
225     "def", EscapeJavadoc(FirstLineOf(method->DebugString())));
226   WriteDocCommentBody(printer, method);
227   printer->Print(" */\n");
228 }
229 
230 }  // namespace java
231 }  // namespace compiler
232 }  // namespace protobuf
233 }  // namespace google
234