2011-02-15 132 views
1

我有一個包含端點條目列表的配置文件。每個條目都標有[endpt/n]的標題(用於第n個端點),並由MAC和IP地址組成。我想使用boost :: program_options作爲字符串讀取地址,並將結果push_back到兩個向量中。我已經通過了program_options文件看,但我一直沒能找到我要找的......下面是一個端點條目的示例:用boost :: program_options和push_back讀入std :: vector?

[endpt/2] 
mac=ff-22-b6-33-91-3E 
ip=133.22.32.222 

這裏是我目前使用的代碼每個端點的MAC和IP選項添加到了boost :: options_description:

std::vector<std::string> mac(NUM_ENDPTS); 
std::vector<std::string> ip(NUM_ENDPTS); 

for(int e = 0; e < NUM_ENDPTS; e++) 
{ 
    //convert endpoint 'e' to a string representing endpoint heading 
    std::stringstream tmp; tmp.clear(); tmp.str(""); tmp << e; 
    std::string strEndpt = tmp.str(); 
    std::string heading = "endpt/"+strEndpt; 

    cfig_file_options.add_options() 
     ((heading+".mac").c_str(), po::value<std::string>(&mac[e]), ("ENDPT MAC") 
     ((heading+".ip").c_str(), po::value<std::string>(&ip[e]), ("ENDPT IP") 
    ; 
} 

po::variables_map vm; 
po::store(po::parse_config_file(config_stream, cfig_file_options), vm); 
po::notify(vm); 

此代碼工作正常,但由於一些原因,我想聲明的MAC和IP地址,的push_back空載體將它們作爲提升選項讀取它們。我是Boost的新手,所以有關更好的方式閱讀列表或任何其他幫助的建議將不勝感激。謝謝!

回答

1

完全按照您的要求進行操作非常簡單。首先,使用po::value< vector<std::string> >而不是po::value<std::string>作爲程序選項提供對向量的特殊支持。然後,直接引用你的兩個向量爲

typedef std::vector<std::string> vec_string; 

cfig_file_options.add_options() 
    ((heading+".mac").c_str(), po::value<vec_string>(&mac), "ENDPT MAC") 
    ((heading+".ip").c_str(), po::value<vec_string>(&ip), "ENDPT IP") 
; 

這裏的關鍵是所有的mac和ip地址都使用公共向量來存儲。我應該指出,除非在文件中保留嚴格的順序,否則這不一定會將ini文件中的endpt編號與向量中的正確索引相關聯。

+0

感謝您的迴應!我仍然有問題,雖然...當我用`po :: vector`替換`po :: value`時,我得到錯誤說'錯誤:'vector'不是'po'`的成員。 (我沒有將它包含在OP中,但是我正在使用`namespace po = boost :: program_options;`)這可能是版本問題嗎?我正在使用Boost 1.40 ... – tpm1510 2011-03-22 17:17:06

相關問題