43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
// Protocol Buffers - Google's data interchange format
|
|
// Copyright 2008 Google Inc. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file or at
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
#ifndef GOOGLE_PROTOBUF_COMPILER_PYTHON_HELPERS_H__
|
|
#define GOOGLE_PROTOBUF_COMPILER_PYTHON_HELPERS_H__
|
|
|
|
#include <string>
|
|
|
|
#include "absl/strings/str_replace.h"
|
|
#include "absl/strings/string_view.h"
|
|
#include "google/protobuf/descriptor.h"
|
|
#include "google/protobuf/descriptor.pb.h"
|
|
|
|
namespace google {
|
|
namespace protobuf {
|
|
namespace compiler {
|
|
namespace python {
|
|
|
|
std::string ModuleName(absl::string_view filename);
|
|
std::string StrippedModuleName(absl::string_view filename);
|
|
bool ContainsPythonKeyword(absl::string_view module_name);
|
|
bool IsPythonKeyword(absl::string_view name);
|
|
std::string ResolveKeyword(absl::string_view name);
|
|
std::string GetFileName(const FileDescriptor* file_des,
|
|
absl::string_view suffix);
|
|
bool HasGenericServices(const FileDescriptor* file);
|
|
std::string GeneratedCodeToBase64(const GeneratedCodeInfo& annotations);
|
|
|
|
template <typename DescriptorT>
|
|
std::string NamePrefixedWithNestedTypes(const DescriptorT& descriptor,
|
|
absl::string_view separator);
|
|
|
|
} // namespace python
|
|
} // namespace compiler
|
|
} // namespace protobuf
|
|
} // namespace google
|
|
|
|
#endif // GOOGLE_PROTOBUF_COMPILER_PYTHON_HELPERS_H__
|