1 // Copyright (c) 2009-2021, Google LLC
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are met:
6 //     * Redistributions of source code must retain the above copyright
7 //       notice, this list of conditions and the following disclaimer.
8 //     * Redistributions in binary form must reproduce the above copyright
9 //       notice, this list of conditions and the following disclaimer in the
10 //       documentation and/or other materials provided with the distribution.
11 //     * Neither the name of Google LLC nor the
12 //       names of its contributors may be used to endorse or promote products
13 //       derived from this software without specific prior written permission.
14 //
15 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 // ARE DISCLAIMED. IN NO EVENT SHALL Google LLC BE LIABLE FOR ANY DIRECT,
19 // INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 
26 #include "upbc/common.h"
27 
28 #include "absl/strings/str_replace.h"
29 #include "upb/reflection/def.hpp"
30 
31 namespace upbc {
32 
StripExtension(absl::string_view fname)33 std::string StripExtension(absl::string_view fname) {
34   size_t lastdot = fname.find_last_of('.');
35   if (lastdot == std::string::npos) {
36     return std::string(fname);
37   }
38   return std::string(fname.substr(0, lastdot));
39 }
40 
ToCIdent(absl::string_view str)41 std::string ToCIdent(absl::string_view str) {
42   return absl::StrReplaceAll(str, {{".", "_"}, {"/", "_"}, {"-", "_"}});
43 }
44 
ToPreproc(absl::string_view str)45 std::string ToPreproc(absl::string_view str) {
46   return absl::AsciiStrToUpper(ToCIdent(str));
47 }
48 
EmitFileWarning(absl::string_view name,Output & output)49 void EmitFileWarning(absl::string_view name, Output& output) {
50   output(
51       "/* This file was generated by upbc (the upb compiler) from the input\n"
52       " * file:\n"
53       " *\n"
54       " *     $0\n"
55       " *\n"
56       " * Do not edit -- your changes will be discarded when the file is\n"
57       " * regenerated. */\n\n",
58       name);
59 }
60 
MessageName(upb::MessageDefPtr descriptor)61 std::string MessageName(upb::MessageDefPtr descriptor) {
62   return ToCIdent(descriptor.full_name());
63 }
64 
FileLayoutName(upb::FileDefPtr file)65 std::string FileLayoutName(upb::FileDefPtr file) {
66   return ToCIdent(file.name()) + "_upb_file_layout";
67 }
68 
HeaderFilename(upb::FileDefPtr file)69 std::string HeaderFilename(upb::FileDefPtr file) {
70   return StripExtension(file.name()) + ".upb.h";
71 }
72 
MessageInit(absl::string_view full_name)73 std::string MessageInit(absl::string_view full_name) {
74   return ToCIdent(full_name) + "_msg_init";
75 }
76 
EnumInit(upb::EnumDefPtr descriptor)77 std::string EnumInit(upb::EnumDefPtr descriptor) {
78   return ToCIdent(descriptor.full_name()) + "_enum_init";
79 }
80 
81 }  // namespace upbc
82