00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef OST_DATA_INFO_ITEM_H
00029 #define OST_DATA_INFO_ITEM_H
00030
00031 #include <boost/lexical_cast.hpp>
00032
00033 #include <ost/geom/geom.hh>
00034 #include <ost/base.hh>
00035
00036 #include "info_fw.hh"
00037 #include "info_handle.hh"
00038 #include "info_group.hh"
00039 #include "info_impl_fw.hh"
00040 #include "item_type.hh"
00041
00042 namespace ost { namespace info {
00043
00044 class DLLEXPORT_OST_INFO InfoItem {
00045 friend class InfoGroup;
00046 public:
00047
00048
00050 InfoGroup GetParent() const;
00051
00053 String GetName() const;
00055 void SetName(const String& n);
00056
00058
00061 String GetValue() const;
00062
00064
00067 void SetValue(const String& val);
00068
00070
00074 Type GetType() const;
00075
00077
00078
00079
00080 void SetType(Type t);
00081
00082 void SetType(int t);
00083
00085 Real AsFloat() const;
00087 int AsInt() const;
00089 bool AsBool() const;
00091 geom::Vec3 AsVector() const;
00092
00094 void SetFloat(Real d);
00096 void SetInt(int i);
00098 void SetBool(bool b);
00100 void SetVector(const geom::Vec3& v);
00101
00103 String GetAttribute(const String& name) const;
00105 void SetAttribute(const String& name, const String& value);
00107 bool HasAttribute(const String& name) const;
00109 void RemoveAttribute(const String& name);
00111 String GetComment() const;
00112
00114 std::vector<String> GetAttributeList() const;
00115
00116 bool operator==(const InfoItem& rhs) const;
00117 bool operator!=(const InfoItem& rhs) const;
00118 private:
00119 InfoItem(const InfoHandle& root, const ElePtr& impl, Type t=IT_STRING);
00120
00121 InfoHandle root_;
00122 ElePtr impl_;
00123 Type type_;
00124 };
00125
00127 template <typename T>
00128 T Extract(const info::InfoGroup& g, const String& n)
00129 {
00130 return boost::lexical_cast<T>(g.GetItem(n).GetValue());
00131 }
00132
00133
00134 Real DLLEXPORT_OST_INFO GetFloatInfoItem(const InfoGroup& ig, const InfoPath& path, Real def);
00135 int DLLEXPORT_OST_INFO GetIntInfoItem(const InfoGroup& ig, const InfoPath& path, int def);
00136 bool DLLEXPORT_OST_INFO GetBoolInfoItem(const InfoGroup& ig, const InfoPath& path, bool def);
00137 geom::Vec3 DLLEXPORT_OST_INFO GetVectorInfoItem(const InfoGroup& ig, const InfoPath& path, const geom::Vec3& def);
00138 String DLLEXPORT_OST_INFO GetStringInfoItem(const InfoGroup& ig, const InfoPath& path, const String& def);
00139
00140 void DLLEXPORT_OST_INFO SetFloatInfoItem(InfoGroup ig, const InfoPath& path, Real val);
00141 void DLLEXPORT_OST_INFO SetIntInfoItem(InfoGroup ig, const InfoPath& path, int val);
00142 void DLLEXPORT_OST_INFO SetBoolInfoItem(InfoGroup ig, const InfoPath& path, bool val);
00143 void DLLEXPORT_OST_INFO SetVectorInfoItem(InfoGroup ig, const InfoPath& path, const geom::Vec3& val);
00144 void DLLEXPORT_OST_INFO SetStringInfoItem(InfoGroup ig, const InfoPath& path, const String& val);
00145
00146 }}
00147
00148 #endif