protobuffer php使用

protobuffer是google推出的一种数据传的方式,具体压缩,体积小的特点

protobuffer本身不支持php,若要把.proto文件转化为php支持的文件,需要使用第三方的程序

allegro/php-protobuf 或 drslump/Protobuf-PHP

参考 http://yueqian.sinaapp.com/a/52.html

http://hello1010.com/php-protobuf

使用drslump/Protobuf-PHP

一.下载并安装protoc编译器

tar -xzf protobuf-2.4.1.tar.gz && cd protobuf-2.4.1
cd protobuf-2.1.0
./configure --prefix=/usr/local/proto
make
make check
make install

二.下载并安装protoc对应的php扩展

https://github.com/chobie/php-protocolbuffers

wget --no-check-certificate  https://github.com/chobie/php-protocolbuffers/archive/master.zip

unzip master && cd php-protocolbuffers-master/

/usr/local/php5/bin/phpize

./configure --with-php-config=/usr/local/php5/bin/php-config

make && make install

重启php

kill -USR2 `cat /usr/local/php5/var/run/php-fpm.pid`

生成的.so文件是protocolbuffers.so  

allegro/php-protobuf 本身就带扩展,同时支持将.proto文件转为php文件

生成的.so文件是protobuf.so

三.下载 drslump/Protobuf-PHP 得到protoc-gen-php插件

并执行

/usr/local/php5/bin/pear channel-discover pear.pollinimini.net
/usr/local/php5/bin/pear install drslump/Protobuf-beta

四.将.proto文件转为php文件

/usr/local/proto/bin/protoc     --plugin=protoc-gen-php=‘/home/source/Protobuf-PHP-master/protoc-gen-php.php‘     --proto_path=‘/home/source/Protobuf-PHP-master‘     --php_out=‘:./‘     ‘/home/source/Protobuf-PHP-master/test.proto‘

执行后报错

PHP Warning:  Declaration of google\protobuf\DescriptorProto::clearExtension() should be compatible with DrSlump\Protobuf\Message::clearExtension($extname) in /home/source/Protobuf-PHP-master/library/DrSlump/Protobuf/Compiler/protos/descriptor.pb.php on line 688

--php_out: protoc-gen-php: Plugin output is unparseable.

类中的方法重复了,注释掉它就行

PHP Warning: Missing argument 1 for DrSlump\Protobuf\Message::hasExtension(), called in /home/source/Protobuf-PHP-master/library/DrSlump/Protobuf/Compiler/PhpGenerator.php on line 280 and defined in /home/source/Protobuf-PHP-master/library/DrSlump/Protobuf/Message.php on line 283
PHP Notice: Undefined variable: extname in /home/source/Protobuf-PHP-master/library/DrSlump/Protobuf/Message.php on line 285
PHP Warning: Missing argument 1 for DrSlump\Protobuf\Message::hasExtension(), called in /home/source/Protobuf-PHP-master/library/DrSlump/Protobuf/Compiler/PhpGenerator.php on line 87 and defined in /home/source/Protobuf-PHP-master/library/DrSlump/Protobuf/Message.php on line 283
PHP Notice: Undefined variable: extname in /home/source/Protobuf-PHP-master/library/DrSlump/Protobuf/Message.php on line 285
--php_out: protoc-gen-php: Plugin output is unparseable.

library/DrSlump/Protobuf/Compiler/PhpGenerator.php

87行

if ($proto->hasExtension()) {

改为

if ($proto->hasExtension(null)) {

280行

if ($msg->hasExtension()) {

改为

if ($msg->hasExtension(null)) {

vi /home/source/Protobuf-PHP-master/library/DrSlump/Protobuf/Compiler/Cli.php

第二行添加

set_include_path(‘.:/usr/local/php5/share/pear/‘);

可执行文件了

使用allegro/php-protobuf 貌似这是个protoc的php客户端

wget https://github.com/allegro/php-protobuf/archive/master.zip

unzip master.zip && cd php-protobuf-master

/usr/local/php5/bin/phpize

./configure --with-php-config=/usr/local/php5/bin/php-config

make && make install

重启php

kill -USR2 `cat /usr/local/php5/var/run/php-fpm.pid`

使用方法

/usr/local/php5/bin/php  /home/source/aa/ab/cd/php-protobuf-master/protoc-php.php -t .  test2.proto

注意一定要加上 -t 表示输入文件的路径,不然没有文件被输出

例子:

vi test2.proto

message PhoneNumber {
required string number = 1;
required int32 type = 2;
}

message Person {
required string name = 1;
required int32 id = 2;
optional string email = 3;
repeated PhoneNumber phone = 4;
optional double money = 5;
}

message AddressBook {
repeated Person person = 1;
}

生成proto对应的php文件

/usr/local/php5/bin/php  /home/source/aa/ab/cd/php-protobuf-master/protoc-php.php -t .  test2.proto

vi example_2.php

<?php
require_once ‘pb_proto_test2.php‘;

$foo = new Person();
$foo->setName(‘abc‘);
$foo->setId(1);
$foo->setEmail(‘abc‘);
$foo->setMoney(321321.32);

$phone_num = new PhoneNumber();
$phone_num->setNumber(‘16589875625‘);
$phone_num->setType(3);

$foo->appendPhone($phone_num);
//$foo->appendPhone(2);
$packed = $foo->serializeToString();
//echo $packed;exit;
#$foo->clear();
echo "-----------src------------\n";
echo $foo->getName() ."\n";
echo $foo->getPhone()[0]->getNumber() ."\n";
$foo->dump();
echo "------------------------\n\n\n";

try {
      $p = new Person();
      $p->parseFromString($packed);
      echo "------------parsed-------\n";
      echo $p->getName() ."\n";
      echo $p->getEmail() ."\n";
      echo $p->getMoney() ."\n";
      echo $p->getId() . "\n";
      echo $p->getPhone()[0]->getNumber() ."\n";

      //$p->dump();
      echo "------------------------\n";
      //print_r($xiao);
      } catch (Exception $ex) {
      die(‘Upss.. there is a bug in this example‘);
}

执行php文件

/usr/local/php5/bin/php example_2.php

时间: 2024-10-20 15:20:20

protobuffer php使用的相关文章

编译gRPC Go版本使用的 ProtoBuffer 文件

本篇文章主要解决mac下安装ProtoBuffer,编译go版本gRPC用的.proto文件 安装 protoc 注意,gRPC 需要用到 proto3, 而目前 Release 的版本是 2.6.1, 所以我们需要去下载源码并编译. https://developers.google.com/protocol-buffers/docs/downloads?hl=zh-cn protobuf 的源码在: https://github.com/google/protobuf Mac的特有前置安装需

unity中使用protobuffer作为网络通讯封包协议的实现和流程

一 使用的库 protobuffer 有两个c#实现,其中protobuffer-csharp 这个版本 比较适合跨语言开发,这个版本模仿java 实现:在ios上面,我们要使用 lite 版本,同时需要修改代码 却掉 pluginregistry 功能,否则无法在ios上面 使用: ios平台的mono只支持aot. 阉割后的protobuffer -csharp代码: 待续(后续提供) 二 协议生成流程实现 使用脚本自动生成 java 以及 c# 版本的协议代码 使用svn external

thrift与protobuffer的区别

thrift由facebook出品,protobuffer由google出品: 下面对比一下这两个的区别.参考:http://zhidao.baidu.com/link?url=yNLBeHhWokfwB677UZHoyv4vLyPOZEEQypUMiX__YIhp5E7UmpvIWTArKPMab32xj5gkRo4a6CXoZ1nxore82kXyOzfXdaRRhOAPynxYmB7 1)Thrift: 支持的语言更广泛一些c++, java, python,ruby, csharp, h

ProtoBuffer

序列化数据的要求 效率  时间空间 多语言相互操作 使用方便 ProtoBuffer 使用: Designing objects Person: Id Name Age Email Phone(s) Describing objects Person: required int32 id required string name optional string email repeated string phone Compiling the description package tutori

基于activeMQ和protoBuffer的java消息中间件的测试

前段时间刚测试的一个项目,其中两个系统之间需要实现增量数量的读取更新,即A系统获取到增量数据后通知B系统获取新增数据并进行后续的处理,为达到这一目标,最终设计为A数据存在增量数据至activeMQ,B系统从activeMQ中获取数据,为此,开发童鞋需实现一个通用的客户端工具包,方便两个系统发送和读取消息. 测试思路: 根据项目情况分析,该消息中间件的测试主要关注点是"生产者"."消费者"两者针对消息的处理是否正常,即: 1.生产者能否将消息正确写入activeMQ

基于.NET CORE微服务框架 -谈谈surging 的messagepack、protobuffer、json.net 序列化

1.前言 surging内部使用的是高性能RPC远程服务调用,如果用json.net序列化肯定性能上达不到最优,所以后面扩展了protobuf,messagepack序列化组件,以支持RPC二进制传输. 在这里需要感谢白纸无字Zonciu,新增了messagepack序列化,让surging 性能上跨了一大步.此篇文章我们来谈谈messagepack.protobuffer.json.net ,并且性能做下对比 开源地址:https://github.com/dotnetcore/surging

【Golang】如何不反序列化为前提的情况下,修改ProtoBuffer某个Tag的值

当你从客户端接收到一串序列化后的数据,你需要 - 修改其中某一个标签的值,然后把它传递到真正的业务数据,这样每个业务模块(微服务)就不需要和公共授权服务打交道了. - 因为传递的数据的长度,类型甚至是新的字段的新增的造成不稳定,因此 network->originBytes - > Marshal() -> Object -> Unmarshal()->newBytes->Logic Service 会造成很大的损耗 因此设想是否考虑一个优化方式: network-&g

Protobuffer教程

目录 什么是protobuffer? protobuffer是如何工作的? 为什么不用xml? 1.什么是protobuffer? protobuffer是一种灵活,高效,自动化的机制,用于序列化结构化数据 - 想想XML,但更小,更快,更简单.您可以定义数据的结构化时间,然后可以使用特殊生成的源代码轻松地在各种数据流中使用各种语言编写和读取结构化数据.您甚至可以更新数据结构,而不会破坏根据“旧”格式编译的已部署程序. 2.protobuffer是如何工作的? 您可以通过在.proto文件中定义

【ProtoBuffer】windows上安装ProtoBuffer3.x (附已编译资源)

百度了很久,所介绍的方法很多都不适用,搜出来的文章都是找到vs的工程文件然后balabala...,但因为gihub上的最新版本protobuf3.3.0,是不带vs的工程文件了,官方的readme感觉有点偏Linux平台,我卡了很久. 后来一想,让搜索引擎的结果只呈现近1年的结果,直接就有了.需要自己用CMAKE工具进行MAKE生成VS工程文件,过程其实并不难. 以下是原文: 一.下载protobuf 下载地址:https://github.com/google/protobuf/releas