EntityRef.h
Go to the documentation of this file.
1 /*
2 * This file is part of ArmarX.
3 *
4 * ArmarX is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * ArmarX is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU 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, see <http://www.gnu.org/licenses/>.
15 *
16 * @package ArmarX::
17 * @author Mirko Waechter ( mirko.waechter at kit dot edu)
18 * @date 2014
19 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20 * GNU General Public License
21 */
22 #pragma once
23 
25 
26 #include <MemoryX/interface/core/MemoryInterface.h>
27 
28 namespace armarx::VariantType
29 {
31  armarx::Variant::addTypeName("::memoryx::EntityRefBase");
32 }
33 
34 namespace memoryx
35 {
36 
37  class EntityRef;
39 
40  class MongoSerializer;
42 
43  /**
44  * @brief The EntityRef class is used to store references to Entities as values in other Entity instances.
45  */
46  class EntityRef : public EntityRefBase
47  {
48  public:
49  EntityRef();
50  EntityRef(const std::string entityName);
51  EntityRef(EntityBasePtr entity,
52  const std::string& segmentName,
53  const std::string& memoryName,
54  MemoryInterfacePrx memoryPrx,
55  EntityMemorySegmentInterfacePrx segmentPrx);
56  EntityRef(const EntityRef& entityRef);
57 
58  // Serializable interface
59  public:
60  void serialize(const armarx::ObjectSerializerBasePtr& serializer,
61  const Ice::Current& c = Ice::emptyCurrent) const override;
62  void deserialize(const armarx::ObjectSerializerBasePtr& serializer,
63  const Ice::Current& c = Ice::emptyCurrent) override;
64 
65  // VariantDataClass interface
66  public:
67  armarx::VariantDataClassPtr clone(const Ice::Current& c = Ice::emptyCurrent) const override;
68  // inherited from VariantDataClass
69  Ice::ObjectPtr ice_clone() const override;
70  std::string output(const Ice::Current& c = Ice::emptyCurrent) const override;
71  Ice::Int getType(const Ice::Current& c = Ice::emptyCurrent) const override;
72 
73  bool validate(const Ice::Current& c = Ice::emptyCurrent) override;
74  EntityBasePtr getEntity(const Ice::Current& c = Ice::emptyCurrent) const override;
75 
76  public:
77  bool equals(const EntityRefBasePtr& other,
78  const Ice::Current& c = Ice::emptyCurrent) const override;
79  };
80 } // namespace memoryx
armarx::VariantType::EntityRef
const armarx::VariantTypeId EntityRef
Definition: EntityRef.h:30
memoryx::EntityRef::deserialize
void deserialize(const armarx::ObjectSerializerBasePtr &serializer, const Ice::Current &c=Ice::emptyCurrent) override
Definition: EntityRef.cpp:83
memoryx::EntityRef::serialize
void serialize(const armarx::ObjectSerializerBasePtr &serializer, const Ice::Current &c=Ice::emptyCurrent) const override
Definition: EntityRef.cpp:70
memoryx::EntityRef::equals
bool equals(const EntityRefBasePtr &other, const Ice::Current &c=Ice::emptyCurrent) const override
Definition: EntityRef.cpp:168
memoryx
VirtualRobot headers.
Definition: CommonPlacesTester.cpp:48
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:46
memoryx::EntityRef::getEntity
EntityBasePtr getEntity(const Ice::Current &c=Ice::emptyCurrent) const override
Definition: EntityRef.cpp:153
memoryx::EntityRef::getType
Ice::Int getType(const Ice::Current &c=Ice::emptyCurrent) const override
Definition: EntityRef.cpp:141
memoryx::EntityRef
The EntityRef class is used to store references to Entities as values in other Entity instances.
Definition: EntityRef.h:46
IceInternal::Handle
Definition: forward_declarations.h:8
memoryx::EntityRef::EntityRef
EntityRef()
Definition: EntityRef.cpp:35
armarx::VariantType
Definition: ChannelRef.h:167
armarx::VariantTypeId
Ice::Int VariantTypeId
Definition: Variant.h:43
memoryx::EntityRef::clone
armarx::VariantDataClassPtr clone(const Ice::Current &c=Ice::emptyCurrent) const override
Definition: EntityRef.cpp:123
memoryx::EntityRef::ice_clone
Ice::ObjectPtr ice_clone() const override
Definition: EntityRef.cpp:129
memoryx::MongoSerializer
Definition: MongoSerializer.h:40
armarx::armem::laser_scans::constants::memoryName
const std::string memoryName
Definition: constants.h:28
IceUtil::Handle< MongoSerializer >
armarx::VariantType::Int
const VariantTypeId Int
Definition: Variant.h:917
armarx::aron::type::ObjectPtr
std::shared_ptr< Object > ObjectPtr
Definition: Object.h:36
memoryx::EntityRef::output
std::string output(const Ice::Current &c=Ice::emptyCurrent) const override
Definition: EntityRef.cpp:135
Variant.h
armarx::Variant::addTypeName
static VariantTypeId addTypeName(const std::string &typeName)
Register a new type for the use in a Variant.
Definition: Variant.cpp:869
memoryx::EntityRef::validate
bool validate(const Ice::Current &c=Ice::emptyCurrent) override
Definition: EntityRef.cpp:147