31#ifndef FGPROPERTYMANAGER_H
32#define FGPROPERTYMANAGER_H
40#if defined( HAVE_CONFIG_H )
47#include "simgear/props/props.hxx"
49# include "simgear/math/SGMath.hxx"
86 GetNode (
const std::string &path,
bool create =
false);
89 GetNode (
const std::string &relpath,
int index,
bool create =
false);
97 bool HasNode (
const std::string &path);
102 const std::string&
GetName(
void )
const {
return getNameString(); }
107 std::string GetPrintableName(
void )
const;
113 std::string GetFullyQualifiedName(
void)
const;
122 std::string GetRelativeName(
const std::string &path =
"/fdm/jsbsim/" )
const;
138 bool GetBool (
const std::string &name,
bool defaultValue =
false)
const;
155 int GetInt (
const std::string &name,
int defaultValue = 0)
const;
172 int GetLong (
const std::string &name,
long defaultValue = 0L)
const;
189 float GetFloat (
const std::string &name,
float defaultValue = 0.0)
const;
206 double GetDouble (
const std::string &name,
double defaultValue = 0.0)
const;
223 std::string GetString (
const std::string &name, std::string defaultValue =
"")
const;
239 bool SetBool (
const std::string &name,
bool val);
255 bool SetInt (
const std::string &name,
int val);
271 bool SetLong (
const std::string &name,
long val);
287 bool SetFloat (
const std::string &name,
float val);
303 bool SetDouble (
const std::string &name,
double val);
319 bool SetString (
const std::string &name,
const std::string &val);
339 void SetArchivable (
const std::string &name,
bool state =
true);
354 void SetReadable (
const std::string &name,
bool state =
true);
369 void SetWritable (
const std::string &name,
bool state =
true);
372typedef SGSharedPtr<FGPropertyNode> FGPropertyNode_ptr;
373typedef SGSharedPtr<const FGPropertyNode> FGConstPropertyNode_ptr;
388 FGPropertyNode* GetNode(
const std::string &path,
bool create =
false)
389 {
return root->
GetNode(path, create); }
390 FGPropertyNode* GetNode(
const std::string &relpath,
int index,
bool create =
false)
391 {
return root->
GetNode(relpath, index, create); }
392 bool HasNode(
const std::string& path)
const
394 std::string newPath = path;
395 if (newPath[0] ==
'-') newPath.erase(0,1);
406 std::string mkPropertyName(std::string name,
bool lowercase);
421 void Untie (
const std::string &name);
431 void Untie (SGPropertyNode* property);
443 void Unbind(
const void* instance);
453 template <
typename T>
void Unbind(
const std::shared_ptr<T>& instance) {
454 Unbind(instance.get());
466 template <
typename T>
void
467 Tie (
const std::string &name, T *pointer)
469 SGPropertyNode*
property = root->getNode(name.c_str(),
true);
471 std::cerr <<
"Could not get or create property " << name << std::endl;
475 if (!property->tie(SGRawValuePointer<T>(pointer),
false))
476 std::cerr <<
"Failed to tie property " << name <<
" to a pointer" << std::endl;
478 tied_properties.push_back(PropertyState(property,
nullptr));
479 if (FGJSBBase::debug_lvl & 0x20) std::cout << name << std::endl;
497 template <
typename T>
void
498 Tie (
const std::string &name, T (*getter)(),
void (*setter)(T) =
nullptr)
500 SGPropertyNode*
property = root->getNode(name.c_str(),
true);
502 std::cerr <<
"Could not get or create property " << name << std::endl;
506 if (!property->tie(SGRawValueFunctions<T>(getter, setter),
false))
507 std::cerr <<
"Failed to tie property " << name <<
" to functions"
510 tied_properties.push_back(PropertyState(property,
nullptr));
511 if (!setter)
property->setAttribute(SGPropertyNode::WRITE,
false);
512 if (!getter)
property->setAttribute(SGPropertyNode::READ,
false);
513 if (FGJSBBase::debug_lvl & 0x20) std::cout << name << std::endl;
532 template <
typename T>
void
533 Tie (
const std::string &name,
int index, T (*getter)(
int),
534 void (*setter)(
int, T) =
nullptr)
536 SGPropertyNode*
property = root->getNode(name.c_str(),
true);
538 std::cerr <<
"Could not get or create property " << name << std::endl;
542 if (!property->tie(SGRawValueFunctionsIndexed<T>(index, getter, setter),
544 std::cerr <<
"Failed to tie property " << name <<
" to indexed functions"
547 tied_properties.push_back(PropertyState(property,
nullptr));
548 if (!setter)
property->setAttribute(SGPropertyNode::WRITE,
false);
549 if (!getter)
property->setAttribute(SGPropertyNode::READ,
false);
550 if (FGJSBBase::debug_lvl & 0x20) std::cout << name << std::endl;
570 template <
class T,
class V>
void
571 Tie (
const std::string &name, T * obj, V (T::*getter)() const,
572 void (T::*setter)(V) = nullptr)
574 SGPropertyNode*
property = root->getNode(name.c_str(),
true);
576 std::cerr <<
"Could not get or create property " << name << std::endl;
580 if (!property->tie(SGRawValueMethods<T,V>(*obj, getter, setter),
false))
581 std::cerr <<
"Failed to tie property " << name <<
" to object methods"
584 tied_properties.push_back(PropertyState(property, obj));
585 if (!setter)
property->setAttribute(SGPropertyNode::WRITE,
false);
586 if (!getter)
property->setAttribute(SGPropertyNode::READ,
false);
587 if (FGJSBBase::debug_lvl & 0x20) std::cout << name << std::endl;
607 template <
class T,
class V>
void
608 Tie (
const std::string &name, T * obj,
int index, V (T::*getter)(int) const,
609 void (T::*setter)(int, V) = nullptr)
611 SGPropertyNode*
property = root->getNode(name.c_str(),
true);
613 std::cerr <<
"Could not get or create property " << name << std::endl;
617 if (!property->tie(SGRawValueMethodsIndexed<T,V>(*obj, index, getter, setter),
619 std::cerr <<
"Failed to tie property " << name
620 <<
" to indexed object methods" << std::endl;
622 tied_properties.push_back(PropertyState(property, obj));
623 if (!setter)
property->setAttribute(SGPropertyNode::WRITE,
false);
624 if (!getter)
property->setAttribute(SGPropertyNode::READ,
false);
625 if (FGJSBBase::debug_lvl & 0x20) std::cout << name << std::endl;
630 struct PropertyState {
631 SGPropertyNode_ptr node;
632 const void* BindingInstance =
nullptr;
633 bool WriteAttribute =
true;
634 bool ReadAttribute =
true;
635 PropertyState(SGPropertyNode* property,
const void* instance)
636 : node(property), BindingInstance(instance) {
637 WriteAttribute = node->getAttribute(SGPropertyNode::WRITE);
638 ReadAttribute = node->getAttribute(SGPropertyNode::READ);
641 node->setAttribute(SGPropertyNode::WRITE, WriteAttribute);
642 node->setAttribute(SGPropertyNode::READ, ReadAttribute);
646 std::list<PropertyState> tied_properties;
647 FGPropertyNode_ptr root;
void Tie(const std::string &name, int index, T(*getter)(int), void(*setter)(int, T)=nullptr)
Tie a property to a pair of indexed functions.
virtual ~FGPropertyManager(void)
Destructor.
FGPropertyManager(FGPropertyNode *_root)
Constructor.
void Tie(const std::string &name, T(*getter)(), void(*setter)(T)=nullptr)
Tie a property to a pair of simple functions.
void Tie(const std::string &name, T *obj, V(T::*getter)() const, void(T::*setter)(V)=nullptr)
Tie a property to a pair of object methods.
void Tie(const std::string &name, T *pointer)
Tie a property to an external variable.
void Unbind(const std::shared_ptr< T > &instance)
Unbind all properties bound by this manager to an instance.
void Tie(const std::string &name, T *obj, int index, V(T::*getter)(int) const, void(T::*setter)(int, V)=nullptr)
Tie a property to a pair of indexed object methods.
FGPropertyManager(void)
Default constructor.
Class wrapper for property handling.
FGPropertyNode * GetNode(const std::string &path, bool create=false)
Get a property node.
const std::string & GetName(void) const
Get the name of a node.
bool HasNode(const std::string &path)
Test whether a given node exists.
virtual ~FGPropertyNode(void)
Destructor.