Plugin.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2021 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 #ifndef SDF_PLUGIN_HH_
18 #define SDF_PLUGIN_HH_
19 
20 #include <memory>
21 #include <string>
22 #include <vector>
23 
24 #include <sdf/Element.hh>
25 #include <sdf/Error.hh>
26 #include <sdf/parser.hh>
27 #include <sdf/Types.hh>
28 #include "sdf/sdf_config.h"
29 #include "sdf/system_util.hh"
30 
31 #ifdef _WIN32
32 // Disable warning C4251 which is triggered by
33 // std::unique_ptr
34 #pragma warning(push)
35 #pragma warning(disable: 4251)
36 #endif
37 
38 namespace sdf
39 {
40  // Inline bracket to help doxygen filtering.
41  inline namespace SDF_VERSION_NAMESPACE {
42  //
43  class PluginPrivate;
44 
46  {
48  public: Plugin();
49 
51  public: ~Plugin();
52 
55  public: Plugin(const Plugin &_plugin);
56 
59  public: Plugin(Plugin &&_plugin) noexcept;
60 
67  public: Errors Load(ElementPtr _sdf);
68 
73  public: std::string Name() const;
74 
79  public: void SetName(const std::string &_name);
80 
83  public: std::string Filename() const;
84 
87  public: void ClearContents();
88 
92  public: const std::vector<sdf::ElementPtr> &Contents() const;
93 
98  public: void InsertContent(const sdf::ElementPtr _elem);
99 
103  public: void SetFilename(const std::string &_filename);
104 
109  public: sdf::ElementPtr Element() const;
110 
116  public: sdf::ElementPtr ToElement() const;
117 
121  public: Plugin &operator=(const Plugin &_plugin);
122 
126  public: Plugin &operator=(Plugin &&_plugin) noexcept;
127 
131  public: friend std::ostream &operator<<(std::ostream& _out,
132  const sdf::Plugin &_plugin)
133  {
134  return _out << _plugin.ToElement()->ToString("");
135  }
136 
140  public: friend std::istream &operator>>(std::istream &_in,
141  sdf::Plugin &_plugin)
142  {
143  std::ostringstream stream;
144  stream << "<sdf version='" << SDF_VERSION << "'>";
145  stream << std::string(std::istreambuf_iterator<char>(_in), {});
146  stream << "</sdf>";
147 
148  sdf::SDFPtr sdfParsed(new sdf::SDF());
149  sdf::init(sdfParsed);
150  bool result = sdf::readString(stream.str(), sdfParsed);
151  if (!result)
152  return _in;
153 
154  _plugin.ClearContents();
155  _plugin.Load(sdfParsed->Root()->GetFirstElement());
156 
157  return _in;
158  }
159 
161  std::unique_ptr<sdf::PluginPrivate> dataPtr;
162  };
163 
165  using Plugins = std::vector<Plugin>;
166 }
167 }
168 
169 #ifdef _WIN32
170 #pragma warning(pop)
171 #endif
172 
173 #endif
sdf::v12::Plugin::ClearContents
void ClearContents()
Remove the contents of the plugin, this is everything that is a child element of the <plugin>.
sdf::v12::init
IGNITION_SDFORMAT_VISIBLE bool init(SDFPtr _sdf)
Initialize the SDF interface from the embedded root spec file.
sdf::v12::readString
IGNITION_SDFORMAT_VISIBLE bool readString(const std::string &_xmlString, SDFPtr _sdf, Errors &_errors)
Populate the SDF values from a string.
Error.hh
sdf
namespace for Simulation Description Format parser
Definition: Actor.hh:34
sdf::v12::Plugins
std::vector< Plugin > Plugins
A vector of Plugin.
Definition: Plugin.hh:165
sdf::v12::Plugin::operator>>
friend std::istream & operator>>(std::istream &_in, sdf::Plugin &_plugin)
Input stream operator for a Plugin.
Definition: Plugin.hh:140
sdf::v12::Errors
std::vector< Error > Errors
A vector of Error.
Definition: Types.hh:106
sdf::v12::Plugin::dataPtr
std::unique_ptr< sdf::PluginPrivate > dataPtr
Private data pointer.
Definition: Plugin.hh:161
Types.hh
sdf_config.h
sdf::v12::Plugin::Load
Errors Load(ElementPtr _sdf)
Load the plugin based on a element pointer.
sdf::v12::SDF
Base SDF class.
Definition: SDFImpl.hh:118
SDFORMAT_VISIBLE
#define SDFORMAT_VISIBLE
Definition: system_util.hh:25
sdf::v12::Element
class IGNITION_SDFORMAT_VISIBLE Element
Definition: Element.hh:50
sdf::v12::SDFPtr
std::shared_ptr< SDF > SDFPtr
Definition: SDFImpl.hh:52
sdf::v12::Plugin
Definition: Plugin.hh:45
sdf::v12::Plugin::ToElement
sdf::ElementPtr ToElement() const
Create and return an SDF element filled with data from this plugin.
sdf::v12::Plugin::operator<<
friend std::ostream & operator<<(std::ostream &_out, const sdf::Plugin &_plugin)
Output stream operator for a Plugin.
Definition: Plugin.hh:131
system_util.hh
sdf::v12::ElementPtr
std::shared_ptr< Element > ElementPtr
Definition: Element.hh:54
Element.hh
parser.hh