blob: b4942e6d7fe796ef331e7c676476ef81c940a25b [file] [log] [blame]
Joshua Haberman823eb092021-04-05 12:26:41 -07001// Copyright (c) 2009-2021, Google LLC
Joshua Habermane59d2c82021-04-05 10:47:53 -07002// 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//
Joshua Haberman1c955f32022-01-12 07:19:28 -080015// 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
Joshua Habermane59d2c82021-04-05 10:47:53 -070020// (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.
Joshua Haberman7a54a5f2020-12-18 19:39:18 -080025
Joshua Haberman7a54a5f2020-12-18 19:39:18 -080026#include "upbc/common.h"
27
Joshua Haberman1c955f32022-01-12 07:19:28 -080028#include "absl/strings/str_replace.h"
Joshua Habermane41a2d72023-01-11 21:25:34 -080029#include "upb/reflection/def.hpp"
Joshua Haberman1c955f32022-01-12 07:19:28 -080030
Joshua Haberman7a54a5f2020-12-18 19:39:18 -080031namespace upbc {
Joshua Haberman7a54a5f2020-12-18 19:39:18 -080032
33std::string StripExtension(absl::string_view fname) {
Esun Kim9b020d82020-12-22 14:45:40 -080034 size_t lastdot = fname.find_last_of('.');
Joshua Haberman7a54a5f2020-12-18 19:39:18 -080035 if (lastdot == std::string::npos) {
36 return std::string(fname);
37 }
38 return std::string(fname.substr(0, lastdot));
39}
40
41std::string ToCIdent(absl::string_view str) {
Protobuf Team Bot4e979b82022-08-24 16:31:04 -070042 return absl::StrReplaceAll(str, {{".", "_"}, {"/", "_"}, {"-", "_"}});
Joshua Haberman7a54a5f2020-12-18 19:39:18 -080043}
44
45std::string ToPreproc(absl::string_view str) {
46 return absl::AsciiStrToUpper(ToCIdent(str));
47}
48
Joshua Habermane41a2d72023-01-11 21:25:34 -080049void EmitFileWarning(absl::string_view name, Output& output) {
Joshua Haberman7a54a5f2020-12-18 19:39:18 -080050 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",
Joshua Habermane41a2d72023-01-11 21:25:34 -080058 name);
Joshua Haberman7a54a5f2020-12-18 19:39:18 -080059}
60
Joshua Habermane41a2d72023-01-11 21:25:34 -080061std::string MessageName(upb::MessageDefPtr descriptor) {
62 return ToCIdent(descriptor.full_name());
Joshua Haberman7a54a5f2020-12-18 19:39:18 -080063}
64
Joshua Habermane41a2d72023-01-11 21:25:34 -080065std::string FileLayoutName(upb::FileDefPtr file) {
66 return ToCIdent(file.name()) + "_upb_file_layout";
Joshua Habermance012b72021-10-01 16:34:42 -070067}
68
Joshua Habermane41a2d72023-01-11 21:25:34 -080069std::string HeaderFilename(upb::FileDefPtr file) {
70 return StripExtension(file.name()) + ".upb.h";
Joshua Haberman7a54a5f2020-12-18 19:39:18 -080071}
72
Joshua Habermane41a2d72023-01-11 21:25:34 -080073std::string MessageInit(absl::string_view full_name) {
74 return ToCIdent(full_name) + "_msg_init";
Protobuf Team Bot46e306b2022-06-30 10:23:47 -070075}
76
Joshua Habermane41a2d72023-01-11 21:25:34 -080077std::string EnumInit(upb::EnumDefPtr descriptor) {
78 return ToCIdent(descriptor.full_name()) + "_enum_init";
Protobuf Team Bot46e306b2022-06-30 10:23:47 -070079}
80
Joshua Haberman7a54a5f2020-12-18 19:39:18 -080081} // namespace upbc