2. 在iOS(Mac OS X)中使用protobufhtml
2.0 構建protocjava
A) 下載最新的protobuf版本python
B) 依據README中的步驟依次進行 ios
2.1 添加protobuf到工程中 git
A) 打開Xcode iOS 工程,點擊"add file ..."選中"google"目錄 (選中"copy items into destination group's folder (if needed) ")github
B) 在"Build Settings"將google頭文件目錄(例如:/Users/XiaoKL/protobuf-2.5.0/src)添加到"Header Search Paths"中objective-c
C) 將config.h添加到工程中redux
D) 從"google"這個group中刪除unittestiphone
E) 從"google"這個group中刪除compiler和java, 刪除後的結果如R[1] 中的圖所示ui
F) 構建工程,如今報告"tr1/unordered_map"這個文件找不到。
G) 須要作幾處修改: config.h中
將"#define HASH_NAMESPACE std::tr1"替換爲"#define HASH_NAMESPACE std" R[2]
將"#define HASH_MAP_H <tr1/unordered_map>"替換爲"#define HASH_MAP_H <unordered_map>"
將"#define HASH_MAP_H <tr1/unordered_set>"替換爲"#define HASH_MAP_H <unordered_set>"
添加libz庫
到這裏build經過。
2.2 使用protobuf
A) 定義.proto文件,參考R[4]
B) 生成目標文件
CPP: protoc -I=$SRC_DIR --cpp_out=$DST_DIR $SRC_DIR/xxx.proto
Python: protoc -I=$SRC_DIR --python_out=$DST_DIR $SRC_DIR/xxx.proto
C) 將生成的目標文件添加到工程中
2.3 protobuf在Objective-C中的難用之處
爲了不C++代碼進入Objective-C代碼中,給開發工做帶來複雜性。通常用Objective-C類來對protobuf的C++
類進行轉換。這無疑增長了不少無聊的代碼,這足以讓開發人員沮喪。Ref6,Ref7中提到的protobuf-objc (protobuf
的Objective-C實現)代碼庫時間比較久遠,是否是一個好的解決方法有待進一步確認。
若是,你有更好的在Objective-C中應用protobuf的方法請告訴我。
3. Dive into Protobuf
google::protobuf
Core components of the Protocol Buffers runtime library.
Reference:
1. http://stackoverflow.com/questions/10277576/google-protocol-buffers-on-ios
2. http://www.kotancode.com/2012/10/14/using-google-protocol-buffers-in-objective-c-on-ios-and-the-mac/
5. protobuf的Objective-C運行環境
http://www.cnblogs.com/tara/archive/2012/03/20/2407951.html
6. http://www.kotancode.com/2013/02/09/google-protocol-buffers-on-ios-and-mac-redux
7. https://github.com/regwez/protobuf-objc-iOS5
Reference:
1. http://www.pearltrees.com/davidb/protobuf/id6076142
2. https://code.google.com/p/protobuf/wiki/ThirdPartyAddOns