1 // Copyright (C) 2009 - 2012 Mathias Froehlich - Mathias.Froehlich@web.de
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Library General Public License for more details.
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 #ifndef HLAObjectClass_hxx
19 #define HLAObjectClass_hxx
24 #include "HLADataType.hxx"
25 #include "HLAObjectInstance.hxx"
26 #include "HLATypes.hxx"
33 class HLAObjectClass : public SGWeakReferenced {
35 HLAObjectClass(const std::string& name, HLAFederate* federate);
36 virtual ~HLAObjectClass();
38 /// Return the name of this object class
39 const std::string& getName() const;
41 /// return the federate this class belongs to
42 const SGWeakPtr<HLAFederate>& getFederate() const;
44 /// Return the number of attributes in this object class
45 unsigned getNumAttributes() const;
47 /// Adds a new attribute to this object class, return the index
48 unsigned addAttribute(const std::string& name);
50 /// Return the attribute index for the attribute with the given name
51 unsigned getAttributeIndex(const std::string& name) const;
52 /// Return the attribute name for the attribute with the given index
53 std::string getAttributeName(unsigned index) const;
55 /// Return the data type of the attribute with the given index
56 const HLADataType* getAttributeDataType(unsigned index) const;
57 /// Sets the data type of the attribute with the given index to dataType
58 void setAttributeDataType(unsigned index, const HLADataType* dataType);
60 /// Return the update type of the attribute with the given index
61 HLAUpdateType getAttributeUpdateType(unsigned index) const;
62 /// Sets the update type of the attribute with the given index to updateType
63 void setAttributeUpdateType(unsigned index, HLAUpdateType updateType);
65 /// Return the subscription type of the attribute with the given index
66 HLASubscriptionType getAttributeSubscriptionType(unsigned index) const;
67 /// Sets the subscription type of the attribute with the given index to subscriptionType
68 void setAttributeSubscriptionType(unsigned index, HLASubscriptionType subscriptionType);
70 /// Return the publication type of the attribute with the given index
71 HLAPublicationType getAttributePublicationType(unsigned index) const;
72 /// Sets the publication type of the attribute with the given index to publicationType
73 void setAttributePublicationType(unsigned index, HLAPublicationType publicationType);
75 /// Return the index, path pair for the given string path pair
76 HLADataElement::IndexPathPair getIndexPathPair(const HLADataElement::StringPathPair&) const;
77 /// Return the index, path pair for the given string path
78 HLADataElement::IndexPathPair getIndexPathPair(const std::string& path) const;
80 virtual bool subscribe();
81 virtual bool unsubscribe();
83 virtual bool publish();
84 virtual bool unpublish();
86 // Object instance creation and destruction
87 class InstanceCallback : public SGReferenced {
89 virtual ~InstanceCallback();
91 virtual void discoverInstance(const HLAObjectClass& objectClass, HLAObjectInstance& objectInstance, const RTIData& tag);
92 virtual void removeInstance(const HLAObjectClass& objectClass, HLAObjectInstance& objectInstance, const RTIData& tag);
94 virtual void registerInstance(const HLAObjectClass& objectClass, HLAObjectInstance& objectInstance);
95 virtual void deleteInstance(const HLAObjectClass& objectClass, HLAObjectInstance& objectInstance);
98 void setInstanceCallback(const SGSharedPtr<InstanceCallback>& instanceCallback)
99 { _instanceCallback = instanceCallback; }
100 const SGSharedPtr<InstanceCallback>& getInstanceCallback() const
101 { return _instanceCallback; }
103 // Is called by the default registration callback if installed
104 // Should register the already known object instances of this class.
105 virtual void startRegistration() const;
106 virtual void stopRegistration() const;
108 // Handles startRegistrationForObjectClass and stopRegistrationForObjectClass events
109 class RegistrationCallback : public SGReferenced {
111 virtual ~RegistrationCallback();
112 virtual void startRegistration(HLAObjectClass& objectClass) = 0;
113 virtual void stopRegistration(HLAObjectClass& objectClass) = 0;
116 void setRegistrationCallback(const SGSharedPtr<RegistrationCallback>& registrationCallback)
117 { _registrationCallback = registrationCallback; }
118 const SGSharedPtr<RegistrationCallback>& getRegistrationCallback() const
119 { return _registrationCallback; }
121 /// Create a new instance of this class.
122 virtual HLAObjectInstance* createObjectInstance(const std::string& name);
123 virtual HLAObjectInstance* createObjectInstance(); // deprecated
126 HLAObjectClass(const HLAObjectClass&);
127 HLAObjectClass& operator=(const HLAObjectClass&);
129 void _setRTIObjectClass(RTIObjectClass* objectClass);
130 void _resolveAttributeIndex(const std::string& name, unsigned index);
131 void _clearRTIObjectClass();
133 // The internal entry points from the RTILObjectClass callback functions
134 void _discoverInstance(RTIObjectInstance* objectInstance, const RTIData& tag);
135 void _removeInstance(HLAObjectInstance& objectInstance, const RTIData& tag);
136 void _registerInstance(HLAObjectInstance* objectInstance);
137 void _deleteInstance(HLAObjectInstance& objectInstance);
139 void _startRegistration();
140 void _stopRegistration();
142 friend class HLAObjectInstance;
143 friend class RTIObjectClass;
146 Attribute() : _subscriptionType(HLAUnsubscribed), _publicationType(HLAUnpublished), _updateType(HLAUndefinedUpdate) {}
147 Attribute(const std::string& name) : _name(name), _subscriptionType(HLAUnsubscribed), _publicationType(HLAUnpublished), _updateType(HLAUndefinedUpdate) {}
149 SGSharedPtr<const HLADataType> _dataType;
150 HLASubscriptionType _subscriptionType;
151 HLAPublicationType _publicationType;
152 HLAUpdateType _updateType;
154 typedef std::vector<Attribute> AttributeVector;
155 typedef std::map<std::string,unsigned> NameIndexMap;
157 /// The parent federate.
158 SGWeakPtr<HLAFederate> _federate;
160 /// The object class name
163 /// The underlying rti dispatcher class
164 SGSharedPtr<RTIObjectClass> _rtiObjectClass;
166 /// The attribute data
167 AttributeVector _attributeVector;
168 /// The mapping from attribute names to attribute indices
169 NameIndexMap _nameIndexMap;
172 SGSharedPtr<InstanceCallback> _instanceCallback;
173 SGSharedPtr<RegistrationCallback> _registrationCallback;
175 friend class HLAFederate;
178 } // namespace simgear