]> git.mxchange.org Git - simgear.git/blob - simgear/hla/HLAObjectClass.hxx
Merge branch 'timoore/optimizations' into next
[simgear.git] / simgear / hla / HLAObjectClass.hxx
1 // Copyright (C) 2009 - 2012  Mathias Froehlich - Mathias.Froehlich@web.de
2 //
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.
7 //
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.
12 //
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.
16 //
17
18 #ifndef HLAObjectClass_hxx
19 #define HLAObjectClass_hxx
20
21 #include <string>
22 #include <vector>
23
24 #include "HLADataType.hxx"
25 #include "HLAObjectInstance.hxx"
26 #include "HLATypes.hxx"
27
28 namespace simgear {
29
30 class RTIObjectClass;
31 class HLAFederate;
32
33 class HLAObjectClass : public SGWeakReferenced {
34 public:
35     HLAObjectClass(const std::string& name, HLAFederate* federate);
36     virtual ~HLAObjectClass();
37
38     /// Return the name of this object class
39     const std::string& getName() const;
40
41     /// return the federate this class belongs to
42     const SGWeakPtr<HLAFederate>& getFederate() const;
43
44     /// Return the number of attributes in this object class
45     unsigned getNumAttributes() const;
46
47     /// Adds a new attribute to this object class, return the index
48     unsigned addAttribute(const std::string& name);
49
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;
54
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);
59
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);
64
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);
69
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);
74
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;
79
80     virtual bool subscribe();
81     virtual bool unsubscribe();
82
83     virtual bool publish();
84     virtual bool unpublish();
85
86     // Object instance creation and destruction
87     class InstanceCallback : public SGReferenced {
88     public:
89         virtual ~InstanceCallback();
90
91         virtual void discoverInstance(const HLAObjectClass& objectClass, HLAObjectInstance& objectInstance, const RTIData& tag);
92         virtual void removeInstance(const HLAObjectClass& objectClass, HLAObjectInstance& objectInstance, const RTIData& tag);
93
94         virtual void registerInstance(const HLAObjectClass& objectClass, HLAObjectInstance& objectInstance);
95         virtual void deleteInstance(const HLAObjectClass& objectClass, HLAObjectInstance& objectInstance);
96     };
97
98     void setInstanceCallback(const SGSharedPtr<InstanceCallback>& instanceCallback)
99     { _instanceCallback = instanceCallback; }
100     const SGSharedPtr<InstanceCallback>& getInstanceCallback() const
101     { return _instanceCallback; }
102
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;
107
108     // Handles startRegistrationForObjectClass and stopRegistrationForObjectClass events
109     class RegistrationCallback : public SGReferenced {
110     public:
111         virtual ~RegistrationCallback();
112         virtual void startRegistration(HLAObjectClass& objectClass) = 0;
113         virtual void stopRegistration(HLAObjectClass& objectClass) = 0;
114     };
115
116     void setRegistrationCallback(const SGSharedPtr<RegistrationCallback>& registrationCallback)
117     { _registrationCallback = registrationCallback; }
118     const SGSharedPtr<RegistrationCallback>& getRegistrationCallback() const
119     { return _registrationCallback; }
120
121     /// Create a new instance of this class.
122     virtual HLAObjectInstance* createObjectInstance(const std::string& name);
123
124 private:
125     HLAObjectClass(const HLAObjectClass&);
126     HLAObjectClass& operator=(const HLAObjectClass&);
127
128     void _setRTIObjectClass(RTIObjectClass* objectClass);
129     void _resolveAttributeIndex(const std::string& name, unsigned index);
130     void _clearRTIObjectClass();
131
132     // The internal entry points from the RTILObjectClass callback functions
133     void _discoverInstance(RTIObjectInstance* objectInstance, const RTIData& tag);
134     void _removeInstance(HLAObjectInstance& objectInstance, const RTIData& tag);
135     void _registerInstance(HLAObjectInstance* objectInstance);
136     void _deleteInstance(HLAObjectInstance& objectInstance);
137
138     void _startRegistration();
139     void _stopRegistration();
140
141     friend class HLAObjectInstance;
142     friend class RTIObjectClass;
143
144     struct Attribute {
145         Attribute() : _subscriptionType(HLAUnsubscribed), _publicationType(HLAUnpublished), _updateType(HLAUndefinedUpdate) {}
146         Attribute(const std::string& name) : _name(name), _subscriptionType(HLAUnsubscribed), _publicationType(HLAUnpublished), _updateType(HLAUndefinedUpdate) {}
147         std::string _name;
148         SGSharedPtr<const HLADataType> _dataType;
149         HLASubscriptionType _subscriptionType;
150         HLAPublicationType _publicationType;
151         HLAUpdateType _updateType;
152     };
153     typedef std::vector<Attribute> AttributeVector;
154     typedef std::map<std::string,unsigned> NameIndexMap;
155
156     /// The parent federate.
157     SGWeakPtr<HLAFederate> _federate;
158
159     /// The object class name
160     std::string _name;
161
162     /// The underlying rti dispatcher class
163     SGSharedPtr<RTIObjectClass> _rtiObjectClass;
164
165     /// The attribute data
166     AttributeVector _attributeVector;
167     /// The mapping from attribute names to attribute indices
168     NameIndexMap _nameIndexMap;
169
170     // Callback classes
171     SGSharedPtr<InstanceCallback> _instanceCallback;
172     SGSharedPtr<RegistrationCallback> _registrationCallback;
173
174     friend class HLAFederate;
175 };
176
177 } // namespace simgear
178
179 #endif