微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何使用 boost 的 XML 解析器将数据从一个 xml 文件添加到另一个文件

如何解决如何使用 boost 的 XML 解析器将数据从一个 xml 文件添加到另一个文件

我正在尝试编写一个程序,通过将模型数据从一个文件插入另一个文件生成新的 Gazebo xml 世界文件。二进制文件应将认世界文件作为参数。

我的方法如下:

  1. 一个认的空世界文件
  2. 一个 model.sdf 文件,其中包含我想插入到世界中的模型
  3. world 文件读入 boost ptree
  4. 查找 <world> 标记并将模型数据作为子项插入。

我找到 <world> 标签没有问题,但是我不确定如何将数据从我的 model.sdf 文件“复制并粘贴”到我的 world 文件中。>

世界 XML

缩短以免在此处淹没屏幕:

<sdf version='1.7'>
  <world name='default'>
    <light name='sun' type='directional'>
      <cast_shadows>1</cast_shadows>
      <pose>0 0 10 0 -0 0</pose>
      <diffuse>0.8 0.8 0.8 1</diffuse>
      <specular>0.2 0.2 0.2 1</specular>
      <attenuation>
        <range>1000</range>
        <constant>0.9</constant>
        <linear>0.01</linear>
        <quadratic>0.001</quadratic>
      </attenuation>
      <direction>-0.5 0.1 -0.9</direction>
      <spot>
        <inner_angle>0</inner_angle>
        <outer_angle>0</outer_angle>
        <falloff>0</falloff>
      </spot>
    </light>
    <!-- MODEL DATA TO GO HERE -->
</world>

model.sdf

缩短:

<?xml version='1.0'?>
<sdf version='1.7'>
  <model name='Box'>
    <link name='link'>
      <inertial>
        <mass>3.14999</mass>
        <inertia>
          <ixx>2.86712</ixx>
          <ixy>0</ixy>
          <ixz>0</ixz>
          <iyy>2.86712</iyy>
          <iyz>0</iyz>
          <izz>0.524998</izz>
        </inertia>
        <pose>0 0 0 0 -0 0</pose>
      </inertial>
    </link>
  </model>
</sdf>

预期产出

<sdf version='1.7'>
  <world name='default'>
    <light name='sun' type='directional'>
      <cast_shadows>1</cast_shadows>
      <pose>0 0 10 0 -0 0</pose>
      <diffuse>0.8 0.8 0.8 1</diffuse>
      <specular>0.2 0.2 0.2 1</specular>
      <attenuation>
        <range>1000</range>
        <constant>0.9</constant>
        <linear>0.01</linear>
        <quadratic>0.001</quadratic>
      </attenuation>
      <direction>-0.5 0.1 -0.9</direction>
      <spot>
        <inner_angle>0</inner_angle>
        <outer_angle>0</outer_angle>
        <falloff>0</falloff>
      </spot>
    </light>
    <model name='Box'>
      <link name='link'>
        <inertial>
          <mass>3.14999</mass>
          <inertia>
            <ixx>2.86712</ixx>
            <ixy>0</ixy>
            <ixz>0</ixz>
            <iyy>2.86712</iyy>
            <iyz>0</iyz>
            <izz>0.524998</izz>
          </inertia>
          <pose>0 0 0 0 -0 0</pose>
        </inertial>
      </link>
    </model>
  </world>
</sdf>

代码

#include <iostream>
#include <boost/property_tree/xml_parser.hpp>
#include <boost/property_tree/ptree.hpp>
#include <utility>

using namespace std;

boost::property_tree::xml_writer_settings<string> xml_settings(' ',4);

int main(int argc,char **argv){
    using boost::property_tree::ptree;
    cout << BOOST_VERSION << endl;
    cout << BOOST_LIB_VERSION << endl;

    const string filename = argv[1];

    ptree pt;

    std::ifstream is(filename.c_str(),std::ifstream::binary);
    std::ofstream newWorldFile("NEW_WORLD.xml");

    read_xml(is,pt);

    for(auto &it: pt){
        if(it.first == "sdf" && pt.get_child_optional(it.first)){
            
            ptree pt1 = pt.get_child(it.first);

            for(auto &it1 : pt1){
                cout << "it1.first = " << it1.first << endl;

                if(it1.first == "world"){
                    // insert model data here. use pt1.put("model.<xmlattr>.name","IamABox"); ? or something similar?
                }
                boost::property_tree::write_xml(newWorldFile,pt1,xml_settings);
            }
        }

    }

编辑:我考虑过这样做的一种方法是将两个 xml 文件读入单独的 stringstream,然后使用 std::find 在主文件中定位标签world 文件,并将我的模型中的 .str() 结果插入到 world.world 中。如果我确实解决了这个问题并且没有其他人添加过,我会添加一个答案。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。