2008-08-22 20:38:05 +00:00
|
|
|
// Protocol Buffers - Google's data interchange format
|
2013-11-18 20:25:34 -05:00
|
|
|
// Copyright 2008 Google Inc. All rights reserved.
|
2008-08-22 20:38:05 +00:00
|
|
|
// http://code.google.com/p/protobuf/
|
|
|
|
//
|
2013-11-18 20:25:34 -05:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
2008-08-22 20:38:05 +00:00
|
|
|
//
|
2013-11-18 20:25:34 -05:00
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following disclaimer
|
|
|
|
// in the documentation and/or other materials provided with the
|
|
|
|
// distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived from
|
|
|
|
// this software without specific prior written permission.
|
2008-08-22 20:38:05 +00:00
|
|
|
//
|
2013-11-18 20:25:34 -05:00
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2008-08-22 20:38:05 +00:00
|
|
|
|
|
|
|
// Author: kenton@google.com (Kenton Varda)
|
|
|
|
// Based on original Protocol Buffers design by
|
|
|
|
// Sanjay Ghemawat, Jeff Dean, and others.
|
|
|
|
|
2013-11-18 20:25:34 -05:00
|
|
|
// Copyright (c) 2008-2013, Dave Benson. All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following disclaimer
|
|
|
|
// in the documentation and/or other materials provided with the
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2008-08-22 20:38:05 +00:00
|
|
|
// Modified to implement C code by Dave Benson.
|
|
|
|
|
2013-11-16 17:11:48 -05:00
|
|
|
#include <protoc-c/c_message_field.h>
|
|
|
|
#include <protoc-c/c_helpers.h>
|
2008-08-22 20:38:05 +00:00
|
|
|
#include <google/protobuf/io/printer.h>
|
2010-01-24 16:42:14 +00:00
|
|
|
#include <google/protobuf/wire_format.h>
|
2008-08-22 20:38:05 +00:00
|
|
|
|
|
|
|
namespace google {
|
|
|
|
namespace protobuf {
|
|
|
|
namespace compiler {
|
|
|
|
namespace c {
|
|
|
|
|
|
|
|
using internal::WireFormat;
|
|
|
|
|
|
|
|
// ===================================================================
|
|
|
|
|
|
|
|
MessageFieldGenerator::
|
|
|
|
MessageFieldGenerator(const FieldDescriptor* descriptor)
|
|
|
|
: FieldGenerator(descriptor) {
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageFieldGenerator::~MessageFieldGenerator() {}
|
|
|
|
|
|
|
|
void MessageFieldGenerator::GenerateStructMembers(io::Printer* printer) const
|
|
|
|
{
|
2020-10-16 16:35:43 -07:00
|
|
|
std::map<std::string, std::string> vars;
|
2008-08-22 20:38:05 +00:00
|
|
|
vars["name"] = FieldName(descriptor_);
|
2021-03-21 19:46:21 -07:00
|
|
|
vars["type"] = FullNameToC(descriptor_->message_type()->full_name(), descriptor_->message_type()->file());
|
2010-08-12 19:38:03 +00:00
|
|
|
vars["deprecated"] = FieldDeprecated(descriptor_);
|
2008-08-22 20:38:05 +00:00
|
|
|
switch (descriptor_->label()) {
|
|
|
|
case FieldDescriptor::LABEL_REQUIRED:
|
|
|
|
case FieldDescriptor::LABEL_OPTIONAL:
|
2010-08-12 19:38:03 +00:00
|
|
|
printer->Print(vars, "$type$ *$name$$deprecated$;\n");
|
2008-08-22 20:38:05 +00:00
|
|
|
break;
|
|
|
|
case FieldDescriptor::LABEL_REPEATED:
|
2010-08-12 19:38:03 +00:00
|
|
|
printer->Print(vars, "size_t n_$name$$deprecated$;\n");
|
|
|
|
printer->Print(vars, "$type$ **$name$$deprecated$;\n");
|
2008-08-22 20:38:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-10-16 16:35:43 -07:00
|
|
|
std::string MessageFieldGenerator::GetDefaultValue(void) const
|
2008-11-30 06:10:28 +00:00
|
|
|
{
|
|
|
|
/* XXX: update when protobuf gets support
|
|
|
|
* for default-values of message fields.
|
|
|
|
*/
|
|
|
|
return "NULL";
|
|
|
|
}
|
2008-08-23 19:59:17 +00:00
|
|
|
void MessageFieldGenerator::GenerateStaticInit(io::Printer* printer) const
|
|
|
|
{
|
|
|
|
switch (descriptor_->label()) {
|
|
|
|
case FieldDescriptor::LABEL_REQUIRED:
|
|
|
|
case FieldDescriptor::LABEL_OPTIONAL:
|
|
|
|
printer->Print("NULL");
|
|
|
|
break;
|
|
|
|
case FieldDescriptor::LABEL_REPEATED:
|
|
|
|
printer->Print("0,NULL");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-08-22 20:38:05 +00:00
|
|
|
void MessageFieldGenerator::GenerateDescriptorInitializer(io::Printer* printer) const
|
|
|
|
{
|
2021-03-21 19:46:21 -07:00
|
|
|
std::string addr = "&" + FullNameToLower(descriptor_->message_type()->full_name(), descriptor_->message_type()->file()) + "__descriptor";
|
2008-08-22 20:38:05 +00:00
|
|
|
GenerateDescriptorInitializerGeneric(printer, false, "MESSAGE", addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace c
|
|
|
|
} // namespace compiler
|
|
|
|
} // namespace protobuf
|
|
|
|
} // namespace google
|