-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathparser_urdf.hh
86 lines (73 loc) · 3.04 KB
/
parser_urdf.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
* Copyright 2012 Open Source Robotics Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef SDFORMAT_URDF2SDF_HH_
#define SDFORMAT_URDF2SDF_HH_
#include <tinyxml2.h>
#include <sdf/sdf_config.h>
#include <string>
#include "sdf/Console.hh"
#include "sdf/Types.hh"
#include "sdf/system_util.hh"
namespace sdf
{
// Inline bracket to help doxygen filtering.
inline namespace SDF_VERSION_NAMESPACE {
//
/// \brief URDF to SDF converter
///
/// This is now deprecated for external usage and will be removed in the next
/// major version of libsdformat. Instead, consider using `sdf::readFile` or
/// `sdf::readString`, which automatically convert URDF to SDF.
class URDF2SDF
{
/// \brief constructor
public: URDF2SDF();
/// \brief destructor
public: ~URDF2SDF();
/// \brief convert urdf xml document string to sdf xml document
/// \param[in] _xmlDoc document containing the urdf model.
/// \param[inout] _sdfXmlDoc document to populate with the sdf model.
public: void InitModelDoc(const tinyxml2::XMLDocument* _xmlDoc,
tinyxml2::XMLDocument *_sdfXmlDoc);
/// \brief convert urdf file to sdf xml document
/// \param[in] _urdfStr a string containing filename of the urdf model.
/// \param[inout] _sdfXmlDoc document to populate with the sdf model.
public: void InitModelFile(const std::string &_filename,
tinyxml2::XMLDocument *_sdfXmlDoc);
/// \brief convert urdf string to sdf xml document, with option to enforce
/// limits.
/// \param[in] _urdfStr a string containing model urdf
/// \param[inout] _sdfXmlDoc document to populate with the sdf model.
/// \param[in] _enforceLimits option to enforce joint limits
public: void InitModelString(const std::string &_urdfStr,
tinyxml2::XMLDocument *_sdfXmlDoc,
bool _enforceLimits = true);
/// \brief Return true if the filename is a URDF model.
/// \param[in] _filename File to check.
/// \return True if _filename is a URDF model.
public: static bool IsURDF(const std::string &_filename);
/// list extensions for debugging
public: void ListSDFExtensions();
/// list extensions for debugging
public: void ListSDFExtensions(const std::string &_reference);
/// things that do not belong in urdf but should be mapped into sdf
/// @todo: do this using sdf definitions, not hard coded stuff
private: void ParseSDFExtension(tinyxml2::XMLDocument &_urdfXml);
};
}
}
#endif