簡體   English   中英

boost::property_tree XML 問題

[英]boost::property_tree XML issue

我正在努力從以下 XML 結構中獲取值:

<ActionMaps version="1" optionsVersion="2" rebindVersion="2" profileName="full_export">
 <CustomisationUIHeader label="full_export" description="" image="">
  <devices>
   <keyboard instance="1"/>
   <mouse instance="1"/>
  </devices>
  <categories>
   <category label="@ui_CCSpaceFlight"/>
   <category label="@ui_CGLightControllerDesc"/>
   <category label="@ui_CCFPS"/>
   <category label="@ui_CCEVA"/>
   <category label="@ui_CGOpticalTracking"/>
   <category label="@ui_CGInteraction"/>
  </categories>
 </CustomisationUIHeader>
 <options type="keyboard" instance="1" Product="Tastatur {6F1D2B61-D5A0-11CF-BFC7-444553540000}">
  <flight_move_yaw exponent="1.5"/>
 </options>
 <modifiers />
 <actionmap name="spaceship_general">
  <action name="v_close_all_doors">
   <rebind input="kb1_0"/>
  </action>
  <action name="v_cooler_throttle_down">
   <rebind input="kb1_6"/>
  </action>
  <action name="v_cooler_throttle_up">
   <rebind input="kb1_5"/>
  </action>
  <action name="v_eject">
   <rebind input="kb1_1"/>
  </action> 
...

我使用的代碼是

const std::string XML_PATH = std::string(fqn_file.mb_str());
boost::property_tree::ptree pt1;
boost::property_tree::read_xml( XML_PATH, pt1  );

// Traverse property tree example
BOOST_FOREACH(boost::property_tree::ptree::value_type const& node,
              pt1.get_child( "ActionMaps.actionmap" ) ) {
    boost::property_tree::ptree subtree = node.second;

    if ( node.first == "actionmap" ) {
        BOOST_FOREACH(boost::property_tree::ptree::value_type const& v,
                      subtree.get_child( "" ) ) {
            std::string label = v.first;

            if ( label != "<xmlattr>" ) {
                std::string value = subtree.get<std::string>( label );
                wxString m_value(value);
                std::cout << label << ":  " << value << std::endl;
                wxString m_label(label);
                wxLogMessage("DEBUG -> Label = " + m_label + " Value = " + value);
            }
        }
    }
}

如果我選擇'action''label'值是空的,這似乎是正常的。 但是我如何從動作訪問名稱( @name )並從重新綁定訪問輸入( @input )?

我希望得到例如一對值'v_close_all_doors''kb1_0' 當然,我需要對第二個值進行第二次迭代,但對於第一個我需要了解如何訪問這些值。

我放棄了 boost::property_tree ,因為它似乎旨在僅處理簡單的 XML 結構。 使用 RapidXML 取得更多進展

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM