http://blog.csdn.net/guoyilongedu/article/details/17093811

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. 最近想研究protobuf ,尝试了很多次都没有成功,我用的是ubuntu,在虚拟机下面的 ,protobuf 也用了很多版本但都没有成功。最终用的是2.5.0版本才成功,话不多说直接开始梳理一下配置的流程。  
[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. 首先得到  protobuf 相应的包文件 ,在终端上输入如下  
[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. wget http://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz  

下载完毕后进行解压 

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. tar zxvf protobuf-2.5.0.tar.gz   

进入到解压目录 

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. cd protobuf-2.5.0  
进行执行

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. ./configure    

中间可能会出错,估计是G++没装好,因为安装的时候要进行编译

安装G++    

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. apt-get install g++  
另外最好把Vim、make 也装了,不然的后面的就很容易出问题,这些在其他教程上都没提到过,是个人的一点经验与大家分享一下

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. apt-get install vim  

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. apt-get install make  

./configure 成功之后,接下来 就如下几步

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. make   
  2. make check  
  3. make install  

安装完成后在终端下执行

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. vim ~/.profile  

打开配置文件,在该文件中添加

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib

然后保存退出,接下来执行

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. source ~/.profile  

 是配置文件修改生效,最后执行

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. protoc --version  

查看protobuf版本以测试是否安装成功

接下来的操作 可以参照如下 链接 ,他们写得非常好 

运行,ubuntu下默认报错

protoc: error while loading shared libraries: libprotobuf.so.7: cannot open shared object file: No such file or directory

protoc: error while loading shared libraries: libprotoc.so.7: cannot open shared object file: No such file or directory

建一下硬链接
#cd /usr/lib
#sudo ln -s /usr/local/lib/libprotobuf.so.7 libprotobuf.so.7
#sudo ln -s /usr/local/lib/libprotoc.so.7 libprotoc.so.7

所以安装共享库后要注意共享库路径设置问题, 如下:

1) 如果共享库文件安装到了/lib或/usr/lib目录下, 那么需执行一下ldconfig命令

ldconfig命令的用途, 主要是在默认搜寻目录(/lib和/usr/lib)以及动态库配置文件/etc/ld.so.conf内所列的目录下, 搜索出可共享的动态链接库(格式如lib*.so*), 进而创建出动态装入程序(ld.so)所需的连接和缓存文件. 缓存文件默认为/etc/ld.so.cache, 此文件保存已排好序的动态链接库名字列表. 

2) 如果共享库文件安装到了/usr/local/lib(很多开源的共享库都会安装到该目录下)或其它"非/lib或/usr/lib"目录下, 那么在执行ldconfig命令前, 还要把新共享库目录加入到共享库配置文件/etc/ld.so.conf中, 如下:

cat /etc/ld.so.conf
include ld.so.conf.d/*.conf
echo "/usr/local/lib" >> /etc/ld.so.conf
# ldconfig

3) 如果共享库文件安装到了其它"非/lib或/usr/lib" 目录下,  但是又不想在/etc/ld.so.conf中加路径(或者是没有权限加路径). 那可以export一个全局变量LD_LIBRARY_PATH, 然后运行程序的时候就会去这个目录中找共享库. 

LD_LIBRARY_PATH的意思是告诉loader在哪些目录中可以找到共享库. 可以设置多个搜索目录, 这些目录之间用冒号分隔开. 比如安装了一个mysql到/usr/local/mysql目录下, 其中有一大堆库文件在/usr/local/mysql/lib下面, 则可以在.bashrc或.bash_profile或shell里加入以下语句即可:

export LD_LIBRARY_PATH=/usr/local/mysql/lib:$LD_LIBRARY_PATH    


一般来讲这只是一种临时的解决方案, 在没有权限或临时需要的时候使用.


http://hahaya.github.io/2013/08/12/use-protobuf-in-c-plus-plus.html


http://www.ccvita.com/507.html


创建一个proto 文件 比如 msg.proto

[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. package lm;     
  2. message helloworld     
  3. {     
  4.     required int32     id = 1;  // ID       
  5.     required string    str = 2;  // str      
  6.     optional int32     opt = 3;  //optional field     
  7. }  

将消息文件msg.proto映射成cpp文件

protoc -I=. --cpp_out=. msg.proto

可以看到生成了
msg.pb.h 和msg.pb.cc

http://blog.csdn.net/wallwind/article/details/11499643

对其代码做了一些纠正

write cpp 

[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. #include "msg.pb.h"  
  2. #include <iostream>  
  3. #include <fstream>  
  4. using namespace std;  
  5. using namespace lm;  
  6. int main(void)  
  7. {  
  8.     lm:helloworld msg1;  
  9.     msg1.set_id(101);  
  10.     msg1.set_str("hello");  
  11.     fstream output("./msg.pb",ios::out | ios::trunc | ios::binary);  
  12.     if( !msg1.SerializeToOstream(&output))  
  13.     {  
  14.          cerr << "Failed to write msg." << endl;     
  15.          return -1;    
  16.     }  
  17.     return 0;  
  18. }  

reader.cpp

[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. #include "msg.pb.h"  
  2. #include <iostream>  
  3. #include <fstream>  
  4. using namespace std;  
  5. using namespace lm;  
  6.   
  7. void listmsg(const lm::helloworld & msg)  
  8. {  
  9.     cout << msg.id() <<endl;  
  10.     cout << msg.str() <<endl;  
  11. }  
  12.   
  13. int main(void)  
  14. {  
  15.     lm:helloworld msg1;  
  16.     fstream input("./msg.pb", ios::in | ios::binary);     
  17.     if (!msg1.ParseFromIstream(&input)) {     
  18.             cerr << "Failed to parse address book." << endl;     
  19.             return -1;     
  20.     }     
  21.     listmsg(msg1);  
  22.     return 0;  
  23. }  


Makefile

[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. all: write reader    
  2.     
  3. clean:  
  4.     rm -f write reader msg.*.cc msg.*.h *.o  log    
  5.     
  6. proto_msg:  
  7.     protoc --cpp_out=. msg.proto    
  8.     
  9.     
  10. write: msg.pb.cc write.cpp  
  11.     g++  msg.pb.cc write.cpp -o write  `pkg-config --cflags --libs protobuf`    
  12.     
  13. reader: msg.pb.cc reader.cpp  
  14.     g++  msg.pb.cc reader.cpp -o reader  `pkg-config --cflags --libs protobuf`   


[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. 如果提示 make: Nothing to be done for 'all  
[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. 则执行make clean  
[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. 如果从头开始执行的话   
[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. 1.make clean  
[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. 2.make proto_msg  
[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. 3.make  
[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. package demo;    
[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. message People  
[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. { required string name = 1;     
[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. required int32 id = 2;     
[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. required string email = 3;  }   
[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. demo::People p;  
  2. p.set_name("guoyilong");  
  3. p.set_id(i);  
  4. p.set_email("guoyilong@163.com");  
  5. p.SerializeToString(&data);  

当 i = 0 里 也就是 set_id(0)时 有一个很奇怪的现象,具体如下

data.length() 为32 

strlen(data.c_str()); 则为 12 两个结果不一致

而i 不等于0 则不会出现这种情况 现在还是不解 记录一下 


Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐