Joshua Haberman | 823eb09 | 2021-04-05 12:26:41 -0700 | [diff] [blame] | 1 | // Copyright (c) 2009-2021, Google LLC |
Joshua Haberman | e59d2c8 | 2021-04-05 10:47:53 -0700 | [diff] [blame] | 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 | // |
Joshua Haberman | 1c955f3 | 2022-01-12 07:19:28 -0800 | [diff] [blame] | 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 |
Joshua Haberman | e59d2c8 | 2021-04-05 10:47:53 -0700 | [diff] [blame] | 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. |
Joshua Haberman | 7a54a5f | 2020-12-18 19:39:18 -0800 | [diff] [blame] | 25 | |
Joshua Haberman | 7a54a5f | 2020-12-18 19:39:18 -0800 | [diff] [blame] | 26 | #include "upbc/common.h" |
| 27 | |
Joshua Haberman | 1c955f3 | 2022-01-12 07:19:28 -0800 | [diff] [blame] | 28 | #include "absl/strings/str_replace.h" |
Joshua Haberman | e41a2d7 | 2023-01-11 21:25:34 -0800 | [diff] [blame] | 29 | #include "upb/reflection/def.hpp" |
Joshua Haberman | 1c955f3 | 2022-01-12 07:19:28 -0800 | [diff] [blame] | 30 | |
Joshua Haberman | 7a54a5f | 2020-12-18 19:39:18 -0800 | [diff] [blame] | 31 | namespace upbc { |
Joshua Haberman | 7a54a5f | 2020-12-18 19:39:18 -0800 | [diff] [blame] | 32 | |
| 33 | std::string StripExtension(absl::string_view fname) { |
Esun Kim | 9b020d8 | 2020-12-22 14:45:40 -0800 | [diff] [blame] | 34 | size_t lastdot = fname.find_last_of('.'); |
Joshua Haberman | 7a54a5f | 2020-12-18 19:39:18 -0800 | [diff] [blame] | 35 | if (lastdot == std::string::npos) { |
| 36 | return std::string(fname); |
| 37 | } |
| 38 | return std::string(fname.substr(0, lastdot)); |
| 39 | } |
| 40 | |
| 41 | std::string ToCIdent(absl::string_view str) { |
Protobuf Team Bot | 4e979b8 | 2022-08-24 16:31:04 -0700 | [diff] [blame] | 42 | return absl::StrReplaceAll(str, {{".", "_"}, {"/", "_"}, {"-", "_"}}); |
Joshua Haberman | 7a54a5f | 2020-12-18 19:39:18 -0800 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | std::string ToPreproc(absl::string_view str) { |
| 46 | return absl::AsciiStrToUpper(ToCIdent(str)); |
| 47 | } |
| 48 | |
Joshua Haberman | e41a2d7 | 2023-01-11 21:25:34 -0800 | [diff] [blame] | 49 | void EmitFileWarning(absl::string_view name, Output& output) { |
Joshua Haberman | 7a54a5f | 2020-12-18 19:39:18 -0800 | [diff] [blame] | 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", |
Joshua Haberman | e41a2d7 | 2023-01-11 21:25:34 -0800 | [diff] [blame] | 58 | name); |
Joshua Haberman | 7a54a5f | 2020-12-18 19:39:18 -0800 | [diff] [blame] | 59 | } |
| 60 | |
Joshua Haberman | e41a2d7 | 2023-01-11 21:25:34 -0800 | [diff] [blame] | 61 | std::string MessageName(upb::MessageDefPtr descriptor) { |
| 62 | return ToCIdent(descriptor.full_name()); |
Joshua Haberman | 7a54a5f | 2020-12-18 19:39:18 -0800 | [diff] [blame] | 63 | } |
| 64 | |
Joshua Haberman | e41a2d7 | 2023-01-11 21:25:34 -0800 | [diff] [blame] | 65 | std::string FileLayoutName(upb::FileDefPtr file) { |
| 66 | return ToCIdent(file.name()) + "_upb_file_layout"; |
Joshua Haberman | ce012b7 | 2021-10-01 16:34:42 -0700 | [diff] [blame] | 67 | } |
| 68 | |
Joshua Haberman | e41a2d7 | 2023-01-11 21:25:34 -0800 | [diff] [blame] | 69 | std::string HeaderFilename(upb::FileDefPtr file) { |
| 70 | return StripExtension(file.name()) + ".upb.h"; |
Joshua Haberman | 7a54a5f | 2020-12-18 19:39:18 -0800 | [diff] [blame] | 71 | } |
| 72 | |
Joshua Haberman | e41a2d7 | 2023-01-11 21:25:34 -0800 | [diff] [blame] | 73 | std::string MessageInit(absl::string_view full_name) { |
| 74 | return ToCIdent(full_name) + "_msg_init"; |
Protobuf Team Bot | 46e306b | 2022-06-30 10:23:47 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Joshua Haberman | e41a2d7 | 2023-01-11 21:25:34 -0800 | [diff] [blame] | 77 | std::string EnumInit(upb::EnumDefPtr descriptor) { |
| 78 | return ToCIdent(descriptor.full_name()) + "_enum_init"; |
Protobuf Team Bot | 46e306b | 2022-06-30 10:23:47 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Joshua Haberman | 7a54a5f | 2020-12-18 19:39:18 -0800 | [diff] [blame] | 81 | } // namespace upbc |