不久前,我使用 ubuntu 映像通过 protoc lib 生成 PHP 文件,它生成一些元数据类,其中包含 protobuf 使用的正常哈希值。 它的生成方式如下:
namespace MyApp\ProtobufMetadata\Schema\v1; class Request { public static $is_initialized = false; public static function initOnce() { $pool = \Google\Protobuf\Internal\DescriptorPool::getGeneratedPool(); if (static::$is_initialized == true) { return; } $pool->internalAddGeneratedFile(hex2bin( "0acd010a236170692f636174616c6f672f736368656d612f76312f726571756573742e70726f746f121d6170692e636174616c6f672e736368656d612e76312e72657175657374221d0a0a47657452657175657374120f0a0776657273696f6e18012001280d4260ca022d4350515c5368617265645c53657276696365735c436174616c6f675c536368656d615c76315c52657175657374e2022d4350515c5368617265645c50726f746f6275664d657461646174615c436174616c6f675c536368656d615c7631620670726f746f33" ), true); static::$is_initialized = true; } }
但现在我需要使用高山用法。 我通过从 github 安装 protobuf 创建了 Dockerfile:
ENV PROTOBUF_VERSION 3.19.4 ENV PROTOBUF_URL https://github.com/google/protobuf/releases/download/v"$PROTOBUF_VERSION"/protobuf-cpp-"$PROTOBUF_VERSION".zip RUN curl -L -o protobuf.zip "$PROTOBUF_URL" RUN unzip protobuf.zip && cd protobuf-"$PROTOBUF_VERSION" && ./configure && make -j$(nproc) && make install RUN cd .. && rm protobuf.zip
但是在此之后,当我生成新类时,它会以一些奇怪的视图生成元数据类:
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: api/schema/v1/request.proto namespace MyApp\ProtobufMetadata\Schema\v1; class Request { public static $is_initialized = false; public static function initOnce() { $pool = \Google\Protobuf\Internal\DescriptorPool::getGeneratedPool(); if (static::$is_initialized == true) { return; } $pool->internalAddGeneratedFile( ' � #api/schema/v1/request.protoapi.schema.v1.request" GetRequest version ( B`�-MyApp\Services\Catalog\Schema\v1\Request�-MyApp\ProtobufMetadata\Catalog\Schema\v1bproto3' , true); static::$is_initialized = true; } }
有人遇到类似的问题吗? 有什么方法可以修复 lib 安装或某些编译以使用 hex2bin 使用返回漂亮的代码吗?
通过使用 RoadRunner 的命令进行编译:
[ -f ./protoc-gen-php-grpc ] || ./rr get-protoc-binary && chmod +x ./protoc-gen-php-grpc && ./rr compile-proto-files"
主机系统为MacOS
这是故意完成的,您的 Alpine 可能只是运行更新版本的协议。
以下是删除 hex2bin 调用的 PR:https://github.com/protocolbuffers /protobuf/pull/8006