/usr/include/Gyoto/GyotoFactoryMessenger.h is in libgyoto1-dev 0.1.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 | /**
* \file GyotoFactoryMessenger.h
* \brief Factory / SmartPointee::Subcontractor_t interface
*/
#ifdef GYOTO_USE_XERCES
/*
Copyright 2011 Thibaut Paumard
This file is part of Gyoto.
Gyoto is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Gyoto is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Gyoto. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __GyotoFactoryMessenger_H_
#define __GyotoFactoryMessenger_H_
/// Internal to Xerces
/**
* For obscure reasons, this needs to be set to 0 instead of just
* undefined.
*/
#ifndef XERCES_INCLUDE_WCHAR_H
#define XERCES_INCLUDE_WCHAR_H 0
#endif
#include <xercesc/dom/DOMElement.hpp>
#include <string>
#include <GyotoDefs.h>
#include <GyotoSmartPointer.h>
namespace Gyoto {
class Factory;
class FactoryMessenger;
namespace Metric { class Generic; }
namespace Astrobj { class Generic; }
namespace Spectrum { class Generic ; }
class Screen;
class Photon;
}
/**
* \class Gyoto::FactoryMessenger
* \brief Factory / SmartPointee::Subcontractor_t interface
*
* A FactoryMessenger instance is like an employee passing messages
* between its employer (the Factory) and a subcontractor (a function
* of the SmartPointee::Subcontractor_t type).
*
* The FactoryMessenger also communicate with the fillElement method
* of some classes (Astrobj::Generic::fillElement(),
* Metric::Generic::fillElement(), Spectrum::Generic::fillElement()).
*
* A subcontractor function typically loops calling getNextParameter()
* to read all the parameters provided for it in an XML file. If BASE
* is one of Astrobj, Metric or Spectrum, and MyClass is an
* implementation of BASE::Generic, the subcontractor static member
* function often looks like this:
*
* \code
* SmartPointer<Gyoto::BASE::Generic> MyClass::Subcontractor(Gyoto::FactoryMessenger *messenger) {
* SmartPointer<Gyoto::BASE::MyClass> deliverable = new MyClass();
* while (messenger->getNextParameter(name, content) {
* if (name=="SomeProperty") deliverable -> setSomeProperty(content);
* else if (name=="AnotherProperty") deliverable -> setAnotherProperty(content);
* }
* return deliverable;
* }
* \endcode
*
* Other get* methods are provided to cope with more complex syntax
* (e.g. when XML attributes are used, as in <ParameterName
* attribute="attrvalue">ParameterValue</ParameterName>
*
* Conversely, the Factory asks certain Gyoto classes through their
* fillElement() method how they should be printed or saved to an XML
* file. Those fillElement() methods use the FactoryMessenger::set*()
* methods (in particular setParameter()) as well as, occasionally,
* makeChild() to describe themselves to the Factory.
*/
class Gyoto::FactoryMessenger {
private:
Gyoto::Factory* employer_;
///< The Factory that sent this messenger
xercesc::DOMElement *element_;
///< The XML element concerned by this transaction
xercesc::DOMNodeList* children_;
///< The children of the XML element concerned by this transaction
XMLSize_t nodeCount_;
///< The number of children of the XML element concerned by this transaction
XMLSize_t curNodeIndex_;
///< Current child
public:
FactoryMessenger(Gyoto::Factory*, xercesc::DOMElement*);
///< Constructor called before subcontracting
FactoryMessenger(const FactoryMessenger& parent, std::string) ;
///< Constructor called before fillElement
void reset();
///< Get back to first parameter
///// GET METHODS, CALLED FROM A SUBCONTRACTOR
/**
* An Gyoto XML file may contain at most a single Metric section
* and it may be present about anywhere in the XML tree. Individual
* subcontractors should not try to interpret this section directly,
* but should call getMetric() to find and interpret the Metric
* section.
*/
SmartPointer<Metric::Generic> getMetric () ;
///< Build and get the Metric described in this XML file
/**
* An Gyoto XML file may contain at most a single Screen section
* and it may be present about anywhere in the XML tree. Individual
* subcontractors should not try to interpret this section directly,
* but should call getScreen() to find and interpret the Screen
* section.
*/
SmartPointer<Screen> getScreen () ;
///< Build and get the Screen described in this XML file
/**
* An Gyoto XML file may contain at most a single Photon section
* and it may be present about anywhere in the XML tree. Individual
* subcontractors should not try to interpret this section directly,
* but should call getPhoton() to find and interpret the Photon
* section.
*/
SmartPointer<Photon> getPhoton () ;
///< Build and get the Photon described in this XML file
/**
* An Gyoto XML file may contain at most a single Astrobj section
* and it may be present about anywhere in the XML tree. Individual
* subcontractors should not try to interpret this section directly,
* but should call getAstrobj() to find and interpret the Astrobj
* section.
*/
SmartPointer<Astrobj::Generic> getAstrobj () ;
///< Build and get the Astrobj described in this XML file
/**
* On each call, return a pair name-content of one of the
* children_. Usually, "name" is the name of a parameter and
* "content" is the string representation of the corresponding
* value. For instance:
* \code
* <Name>Content</Name>
* \endcode
*
* \param name upon output, name of the child
* \param content of the child
* \param unit= propertty of the child
* \return 1 if there remains parameters to retrieve, 0 otherwise.
*/
int getNextParameter(std::string* name,
std::string* content,
std::string* unit=NULL);
///< Get name and value of next parameter
/**
* For instance a Spectrometer description looks like this
* \code
* <Spectrometer kind="wave" nsamples="10"> 2.0e-6 2.4e-6</Astrobj>
* \endcode
* and the Spectrometer builder uses getSelfAttribute() to retrieve
* the attributes "kind" and "nsamples".
*
* \param attrname name of the attribute
* \return attrvalue
*/
std::string getSelfAttribute(std::string attrname) const ;
///< Get attribute of FactoryMessenger::element_
/**
* For instance
* \code
* <ParameterName attrname="attrvalue">ParameterContent</ParameterName>
* \endcode
*
* \param attrname name of the attribute
* \return attrvalue
*/
std::string getAttribute(std::string attrname) const ;
///< Get attribute of a last retrieved parameter
/**
* In exceptional circumstances, it may be necessary to get the
* entire text content of the topmost element
* FactoryMessenger::element_ instead or getting only the individual
* FactoryMessenger::children_ .
*
* For instance a Spectrometer description looks like this:
* \code
* <Spectrometer kind="wave" nsamples="10"> 2.0e-6 2.4e-6</Astrobj>
* \endcode
* and the Spectrometer builder uses getFullContent() to retrieve
* the spectral boundaries (2.0e-6 and 2.4e-6 here).
*/
std::string getFullContent() const ;
///< Get full content of element_
/**
* If one of the FactoryMessenger::children_ is complex (for
* instance the complete description of a Gyoto::Spectrum), it is
* possible to initialize a new FactoryMessenger and call the
* correct subcontractor:
* \code
* SmartPointer<Spectrum::Generic> spectrum = NULL;
* while (messenger->getNextParameter(name, content) {
* if (name=="Spectrum") {
* content = messenger->getAttribute("kind");
* FactoryMessenger* child = messenger->getChild();
* deliverable->setSpectrum( (*Spectrum::getSubcontractor(content))(child) );
* delete child;
* }
* }
* \endcode
* The child is allocated with new and must be deleted after use.
*/
FactoryMessenger * getChild() const ;
///< Get another FactoryMessenger instance initialized to current child
/**
* This function takes a relative path (e.g. ../foo/bar.data) and
* transforms it into a full path (starting with "/"). It is not
* guaranteed to be portable (we assume that the path separator is
* "/" and that absolute paths start with "/").
*
* \param relpath path relative to the directory where the XML file
* on which the Factory works is located.
*
* \return fullpath at full path specification to the same point pon
* the file-system.
*/
std::string fullPath(std::string relpath) ;
///< Transform path into full path specification
///////// SET METHODS, CALLED FROM FILLELEMENT
/**
* At most one Metric section may be present in a give Gyoto XML file.
*
* When an object's fillElement() method is called, if this object
* is connected to a Metric, it should call setMetric() with this
* Metric. Very often, the Metric will already have been set
* previously. The Factory will check that all the objects in the
* hierarchy are attached to the same Metric instance, and save this
* instance only once. Trying to set the Metric to something else
* than the already set Metric instance is an error condition.
*
* To make things clearer: Assume "scenery" is a fully filled
* Scenery. scenery->fillElement(messenger) will call:
* \code
* messenger->setMetric(Scenery::gg_)
* messenger->setScreen(Scenery::screen_)
* messenger->setAstrobj(Scenery::obj_);
* \endcode
*
* The Factory will then call screen_->fillElement(child_messenger)
* and obj_->fillElement(child_messenger), each of which will also
* call setMetric(). If the same Metric is connected to the Astrobj,
* to the Screen and to the Scenery, all is well. Else, you have a
* bug to fix.
*/
void setMetric(SmartPointer<Metric::Generic>);
///< Set the Metric
/**
* Same as setMetric(), but for the Astrobj.
*/
void setAstrobj(SmartPointer<Astrobj::Generic>);
///< Set the Astrobj
/**
* Same as setMetric(), but for the Screen.
*/
void setScreen(SmartPointer<Screen>);
///< Set the Screen
/**
* Create child XML element of the form
* \code
* <name/>
* \endcode
* for instance when "name" is boolean (present or absent), or only
* takes attributes (see FactoryMessenger::setAttribute()). As an
* example, Astrobj::Generic::fillElement() uses
* setParameter() to set either Opticallythin or OpticallyThick.
*/
void setParameter(std::string name);
///< Output parameter
/**
* Convert value to striing "svalue" and create an XML child element
* of the form
* \code
* <name>svalue</name>
* \endcode
*/
void setParameter(std::string name, double value);
///< Output parameter
/**
* Convert value to striing "svalue" and create an XML child element
* of the form
* \code
* <name>svalue</name>
* \endcode
*/
void setParameter(std::string name, long int value);
///< Output parameter
/**
* Convert value to striing "svalue" and create an XML child element
* of the form
* \code
* <name>svalue</name>
* \endcode
*/
void setParameter(std::string name, unsigned int value);
///< Output parameter
/**
* Convert value to striing "svalue" and create an XML child element
* of the form
* \code
* <name>svalue</name>
* \endcode
*/
void setParameter(std::string name, unsigned long value);
///< Output parameter
/**
* Convert value to string "svalue" and create an XML child element
* of the form
* \code
* <name>svalue</name>
* \endcode
*/
void setParameter(std::string name, int value);
///< Output parameter
/**
* Create an XML child element of the form
* \code
* <name>value</name>
* \endcode
*/
void setParameter(std::string name, std::string value);
///< Output parameter
/**
* For instance:
* \code
* double val[4] = {1., 2., 3., 4.};
* messenger->setParameter("MyArray", val, 4);
* \endcode
* will result in something like this:
* \code
* <MyArray>1.000000 2.000000 3.000000 4.000000</MyArray>
* \endcode
*
* The exact format is unspecified, determined at compile time, and
* by default, unlike in the example above, outputs a large number
* of digits for each double (about 20).
*
* \param name the name of the parameter
* \param val[] an array of doubles
* \param n number of cells in val[]
* \param child (optional) if not NULL, a new FactoryMessenger is
* created to access the new parameter element e.g. to set
* attributes in it (using setSelfAttribute()). You then need to
* delete the child.
*/
void setParameter(std::string name, double val[], size_t n,
FactoryMessenger** child= NULL);
///< Output an array of parameters
/**
* For instance Spectrometer::fillElement() sets its "kind"
* attribute somewhat like this:
* \code
* messenger->setSelfAttribute("kind", "wave");
* \endcode
* to produce something like this:
* \code
* <Spectrometer kind="wave"/>
* \endcode
*/
void setSelfAttribute(std::string attrname, std::string value) ;
///< Set attribute in FactoryMessenger::element_
/**
* See setSelfAttribute(std::string attrname, std::string value)
*/
void setSelfAttribute(std::string attrname, unsigned long value) ;
///< Set attribute in FactoryMessenger::element_
/**
* See setSelfAttribute(std::string attrname, std::string value)
*/
void setSelfAttribute(std::string attrname, unsigned int value) ;
///< Set attribute in FactoryMessenger::element_
/**
* See setSelfAttribute(std::string attrname, std::string value)
*/
void setSelfAttribute(std::string attrname, double value) ;
///< Set attribute in FactoryMessenger::element_
/**
* Exceptionnaly, a class instance may be best described by setting
* the entire content of the correponding element than by setting a
* bunch of "parameters". This is the case of the spectrometer,
* which sets a couple of attributes and reserves the full content
* for the spectral boundaries (see Spectrometer::fillElement()).
*/
void setFullContent(std::string value) ;
///< Low level, prefer setParameter()
/**
* To be used from fillElement() methods. For instance, the
* Star::fillElement() method calls makeChild() to save the Star's
* Spectrum and Opacity members somewhat like this:
* \code
* FactoryMessenger * child;
* child = messenger-> makeChild("Spectrum");
* spectrum_ -> fillElement(child);
* delete child;
* child = messenger-> makeChild("Opacity");
* opacity_ -> fillElement(child);
* delete child;
* child=NULL;
* \endcode
*
* The child messenger is allocated with new, you need to delete it
* after use.
*/
FactoryMessenger* makeChild(std::string name);
///< Create child FactoryMessenger
};
#endif
#endif
|