web-dev-qa-db-ja.com

プロトコルbuffer3とjson

プロトコルバッファv3は、ライブラリがjsonフレンドリーであると主張しています( https://developers.google.com/protocol-buffers/docs/proto3#json )が、そのマッピングを取得する方法が見つかりません。プラグインまたはオプションをprotocに追加するか、SerializeTo/ParseFromの代わりに特別なものを呼び出す必要がありますか?

その機能を使用しているのは誰かですか?

13
lofcek

JSONシリアライザーとパーサーが組み込まれているProtobuf3.3.0を使用しています。 MessageToJsonString()およびJsonStringToMessage()と呼ばれるgoogle/protobuf/util/json_util.hの2つの関数を使用して、C++で生成されたMessageオブジェクトをそれぞれJSONに行き来させることができます。

それらを使用する簡単なテストは次のとおりです。test-protobuf.proto

syntax = "proto3";

message SearchRequest {
  string query = 1;
  int32 page_number = 2;
  int32 result_per_page = 3;
}

test-protobuf.cpp

#include <iostream>
#include <google/protobuf/util/json_util.h>

#include "test-protobuf.pb.h"

int main()
{
  std::string json_string;
  SearchRequest sr, sr2;

  // Populate sr.
  sr.set_query(std::string("Hello!"));
  sr.set_page_number(1);
  sr.set_result_per_page(10);

  // Create a json_string from sr.
  google::protobuf::util::JsonPrintOptions options;
  options.add_whitespace = true;
  options.always_print_primitive_fields = true;
  options.preserve_proto_field_names = true;
  MessageToJsonString(sr, &json_string, options);

  // Print json_string.
  std::cout << json_string << std::endl;


  // Parse the json_string into sr2.
  google::protobuf::util::JsonParseOptions options2;
  JsonStringToMessage(json_string, &sr2, options2);

  // Print the values of sr2.
  std::cout
    << sr2.query() << ", "
    << sr2.page_number() << ", "
    << sr2.result_per_page() << std::endl
  ;

  return 0;
}

次のCMakeLists.txtファイル(Windowsでテスト済み)を使用して、これらのファイルをコンパイルできます(protobuf、コンパイラ、およびCMakeがインストールされていることを前提とします)。

cmake_minimum_required(VERSION 3.8)

project(test-protobuf)

find_package(Protobuf REQUIRED)

# Use static runtime for MSVC
if(MSVC)
  foreach(flag_var
      CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE
      CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO)
    if(${flag_var} MATCHES "/MD")
      string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}")
    endif(${flag_var} MATCHES "/MD")
  endforeach(flag_var)
endif(MSVC)

protobuf_generate_cpp(test-protobuf-sources test-protobuf-headers
  "${CMAKE_CURRENT_LIST_DIR}/test-protobuf.proto"
)

list(APPEND test-protobuf-sources
  "${CMAKE_CURRENT_LIST_DIR}/test-protobuf.cpp"
)

add_executable(test-protobuf ${test-protobuf-sources} ${test-protobuf-headers})
target_include_directories(test-protobuf
  PUBLIC
    ${PROTOBUF_INCLUDE_DIRS}
    ${CMAKE_CURRENT_BINARY_DIR}
)
target_link_libraries(test-protobuf
  ${PROTOBUF_LIBRARIES}
)

CMakeLists.txttest-protobuf.proto、およびtest-protobuf.cppが同じディレクトリにあると仮定して、Visual Studio 152017および64ビットprotobufライブラリを使用してWindowsでそれらをコンパイルおよび実行するコマンドを次に示します。

mkdir build
cd build
cmake -G "Visual Studio 15 2017 Win64" ..
cmake --build . --config Release
Release/test-protobuf

次の出力が表示されます。

{
 "query": "Hello!",
 "page_number": 1,
 "result_per_page": 10
}

Hello!, 1, 10
16
Jay

ProtobufにはC#用のjsonapiがあります。 google protobuf reference にはC#用のjsonクラスがいくつかあり、 github protobuf repository for Javaおよびc ++にはいくつかのテストがあります。

1
omeryildiz