GridGain C++
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
binary_object.h
Go to the documentation of this file.
1 /*
2  * Copyright 2019 GridGain Systems, Inc. and Contributors.
3  *
4  * Licensed under the GridGain Community Edition License (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * https://www.gridgain.com/products/software/community-edition/gridgain-community-edition-license
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
22 #ifndef _IGNITE_BINARY_BINARY_OBJECT
23 #define _IGNITE_BINARY_BINARY_OBJECT
24 
25 #include <stdint.h>
26 
27 #include <ignite/impl/binary/binary_object_impl.h>
28 
29 namespace ignite
30 {
31  namespace impl
32  {
33  namespace binary
34  {
35  class BinaryWriterImpl;
36  }
37  }
38 
39  namespace binary
40  {
47  class IGNITE_IMPORT_EXPORT BinaryObject
48  {
49  friend class ignite::impl::binary::BinaryWriterImpl;
50  public:
52 
57  BinaryObject(const impl::binary::BinaryObjectImpl& impl) :
58  impl(impl)
59  {
60  // No-op.
61  }
62 
72  BinaryObject(impl::interop::InteropMemory& mem, int32_t start,
73  impl::binary::BinaryIdResolver* idRslvr, impl::binary::BinaryTypeManager* metaMgr) :
74  impl(mem, start, idRslvr, metaMgr)
75  {
76  // No-op.
77  }
79 
85  BinaryObject(const BinaryObject& other) :
86  impl(other.impl)
87  {
88  // No-op.
89  }
90 
98  {
99  impl = other.impl;
100 
101  return *this;
102  }
103 
111  template<typename T>
112  T Deserialize() const
113  {
114  return impl.Deserialize<T>();
115  }
116 
125  template<typename T>
126  T GetField(const char* name) const
127  {
128  return impl.GetField<T>(name);
129  }
130 
138  bool HasField(const char* name) const
139  {
140  return impl.HasField(name);
141  }
142 
143  private:
145  impl::binary::BinaryObjectImpl impl;
146  };
147 
148  /* Specialization */
149  template<>
150  inline BinaryObject BinaryObject::GetField(const char* name) const
151  {
152  return BinaryObject(impl.GetField<impl::binary::BinaryObjectImpl>(name));
153  }
154  }
155 }
156 
157 #endif //_IGNITE_BINARY_BINARY_OBJECT
ignite::binary::BinaryObject
Binary object.
Definition: binary_object.h:47
ignite
Ignite API.
Definition: cache.h:47
ignite::binary::BinaryObject::BinaryObject
BinaryObject(const BinaryObject &other)
Copy constructor.
Definition: binary_object.h:85
ignite::binary::BinaryObject::operator=
BinaryObject & operator=(const BinaryObject &other)
Assignment operator.
Definition: binary_object.h:97
ignite::binary::BinaryObject::Deserialize
T Deserialize() const
Deserialize object.
Definition: binary_object.h:112
ignite::binary::BinaryObject::HasField
bool HasField(const char *name) const
Check if the binary object has the specified field.
Definition: binary_object.h:138
ignite::binary::BinaryObject::GetField
T GetField(const char *name) const
Get field.
Definition: binary_object.h:126