LCOV - code coverage report
Current view: top level - third_party/protobuf/src/google/protobuf/compiler/java - java_doc_comment.cc (source / functions) Hit Total Coverage
Test: tmp.zDYK9MVh93 Lines: 0 78 0.0 %
Date: 2015-10-10 Functions: 0 15 0.0 %

          Line data    Source code
       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             : 
      47           0 : string EscapeJavadoc(const string& input) {
      48             :   string result;
      49           0 :   result.reserve(input.size() * 2);
      50             : 
      51             :   char prev = '*';
      52             : 
      53           0 :   for (string::size_type i = 0; i < input.size(); i++) {
      54           0 :     char c = input[i];
      55           0 :     switch (c) {
      56             :       case '*':
      57             :         // Avoid "/*".
      58           0 :         if (prev == '/') {
      59           0 :           result.append("&#42;");
      60             :         } else {
      61           0 :           result.push_back(c);
      62             :         }
      63             :         break;
      64             :       case '/':
      65             :         // Avoid "*/".
      66           0 :         if (prev == '*') {
      67           0 :           result.append("&#47;");
      68             :         } else {
      69           0 :           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           0 :         result.append("&#64;");
      77             :         break;
      78             :       case '<':
      79             :         // Avoid interpretation as HTML.
      80           0 :         result.append("&lt;");
      81             :         break;
      82             :       case '>':
      83             :         // Avoid interpretation as HTML.
      84           0 :         result.append("&gt;");
      85             :         break;
      86             :       case '&':
      87             :         // Avoid interpretation as HTML.
      88           0 :         result.append("&amp;");
      89             :         break;
      90             :       case '\\':
      91             :         // Java interprets Unicode escape sequences anywhere!
      92           0 :         result.append("&#92;");
      93             :         break;
      94             :       default:
      95           0 :         result.push_back(c);
      96             :         break;
      97             :     }
      98             : 
      99           0 :     prev = c;
     100             :   }
     101             : 
     102           0 :   return result;
     103             : }
     104             : 
     105           0 : static void WriteDocCommentBodyForLocation(
     106             :     io::Printer* printer, const SourceLocation& location) {
     107           0 :   string comments = location.leading_comments.empty() ?
     108           0 :       location.trailing_comments : location.leading_comments;
     109           0 :   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           0 :     comments = EscapeJavadoc(comments);
     117             : 
     118           0 :     vector<string> lines = Split(comments, "\n");
     119           0 :     while (!lines.empty() && lines.back().empty()) {
     120           0 :       lines.pop_back();
     121             :     }
     122             : 
     123             :     printer->Print(
     124             :         " *\n"
     125           0 :         " * <pre>\n");
     126           0 :     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           0 :       if (!lines[i].empty() && lines[i][0] == '/') {
     131           0 :         printer->Print(" * $line$\n", "line", lines[i]);
     132             :       } else {
     133           0 :         printer->Print(" *$line$\n", "line", lines[i]);
     134             :       }
     135             :     }
     136           0 :     printer->Print(" * </pre>\n");
     137             :   }
     138           0 : }
     139             : 
     140             : template <typename DescriptorType>
     141           0 : static void WriteDocCommentBody(
     142             :     io::Printer* printer, const DescriptorType* descriptor) {
     143             :   SourceLocation location;
     144           0 :   if (descriptor->GetSourceLocation(&location)) {
     145           0 :     WriteDocCommentBodyForLocation(printer, location);
     146           0 :   }
     147           0 : }
     148             : 
     149           0 : static string FirstLineOf(const string& value) {
     150           0 :   string result = value;
     151             : 
     152           0 :   string::size_type pos = result.find_first_of('\n');
     153           0 :   if (pos != string::npos) {
     154           0 :     result.erase(pos);
     155             :   }
     156             : 
     157             :   // If line ends in an opening brace, make it "{ ... }" so it looks nice.
     158           0 :   if (!result.empty() && result[result.size() - 1] == '{') {
     159           0 :     result.append(" ... }");
     160             :   }
     161             : 
     162           0 :   return result;
     163             : }
     164             : 
     165           0 : void WriteMessageDocComment(io::Printer* printer, const Descriptor* message) {
     166             :   printer->Print(
     167             :     "/**\n"
     168             :     " * Protobuf type {@code $fullname$}\n",
     169           0 :     "fullname", EscapeJavadoc(message->full_name()));
     170           0 :   WriteDocCommentBody(printer, message);
     171           0 :   printer->Print(" */\n");
     172           0 : }
     173             : 
     174           0 : 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           0 :     "def", EscapeJavadoc(FirstLineOf(field->DebugString())));
     187           0 :   WriteDocCommentBody(printer, field);
     188           0 :   printer->Print(" */\n");
     189           0 : }
     190             : 
     191           0 : void WriteEnumDocComment(io::Printer* printer, const EnumDescriptor* enum_) {
     192             :   printer->Print(
     193             :     "/**\n"
     194             :     " * Protobuf enum {@code $fullname$}\n",
     195           0 :     "fullname", EscapeJavadoc(enum_->full_name()));
     196           0 :   WriteDocCommentBody(printer, enum_);
     197           0 :   printer->Print(" */\n");
     198           0 : }
     199             : 
     200           0 : void WriteEnumValueDocComment(io::Printer* printer,
     201             :                               const EnumValueDescriptor* value) {
     202             :   printer->Print(
     203             :     "/**\n"
     204             :     " * <code>$def$</code>\n",
     205           0 :     "def", EscapeJavadoc(FirstLineOf(value->DebugString())));
     206           0 :   WriteDocCommentBody(printer, value);
     207           0 :   printer->Print(" */\n");
     208           0 : }
     209             : 
     210           0 : void WriteServiceDocComment(io::Printer* printer,
     211           0 :                             const ServiceDescriptor* service) {
     212             :   printer->Print(
     213             :     "/**\n"
     214             :     " * Protobuf service {@code $fullname$}\n",
     215           0 :     "fullname", EscapeJavadoc(service->full_name()));
     216           0 :   WriteDocCommentBody(printer, service);
     217           0 :   printer->Print(" */\n");
     218           0 : }
     219             : 
     220           0 : void WriteMethodDocComment(io::Printer* printer,
     221             :                            const MethodDescriptor* method) {
     222             :   printer->Print(
     223             :     "/**\n"
     224             :     " * <code>$def$</code>\n",
     225           0 :     "def", EscapeJavadoc(FirstLineOf(method->DebugString())));
     226           0 :   WriteDocCommentBody(printer, method);
     227           0 :   printer->Print(" */\n");
     228           0 : }
     229             : 
     230             : }  // namespace java
     231             : }  // namespace compiler
     232             : }  // namespace protobuf
     233             : }  // namespace google

Generated by: LCOV version 1.10