GridGain C++
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ignite_binding.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_IGNITE_BINDING
23 #define _IGNITE_IGNITE_BINDING
24 
25 #include <ignite/common/common.h>
26 #include <ignite/common/concurrent.h>
27 
28 #include <ignite/impl/ignite_binding_impl.h>
29 #include <ignite/impl/bindings.h>
30 
31 namespace ignite
32 {
37  class IGNITE_IMPORT_EXPORT IgniteBinding
38  {
39  public:
44  impl()
45  {
46  // No-op.
47  }
48 
54  IgniteBinding(common::concurrent::SharedPointer<impl::IgniteBindingImpl> impl) :
55  impl(impl)
56  {
57  // No-op.
58  }
59 
66  template<typename P>
68  {
69  IgniteError err;
70 
71  RegisterCacheEntryProcessor<P>(err);
72 
74  }
75 
84  template<typename P>
86  {
87  impl::IgniteBindingImpl *im = impl.Get();
88 
89  if (im)
90  {
91  im->RegisterCallback(impl::IgniteBindingImpl::CallbackType::CACHE_ENTRY_PROCESSOR_APPLY,
92  binary::BinaryType<P>::GetTypeId(), impl::binding::ListenerApply<P, typename P::KeyType,
93  typename P::ValueType, typename P::ReturnType, typename P::ArgumentType>, err);
94  }
95  else
96  {
98  "Instance is not usable (did you check for error?).");
99  }
100  }
101 
108  template<typename F>
110  {
111  impl::IgniteBindingImpl *im = impl.Get();
112 
113  int32_t typeId = binary::BinaryType<F>::GetTypeId();
114 
115  if (im)
116  {
117  im->RegisterCallback(impl::IgniteBindingImpl::CallbackType::CACHE_ENTRY_FILTER_CREATE,
118  typeId, impl::binding::FilterCreate<F>);
119  }
120  else
121  {
123  "Instance is not usable (did you check for error?).");
124  }
125  }
126 
133  template<typename F>
135  {
136  impl::IgniteBindingImpl *im = impl.Get();
137 
138  int32_t typeId = binary::BinaryType<F>::GetTypeId();
139 
140  if (im)
141  {
142  im->RegisterCallback(impl::IgniteBindingImpl::CallbackType::COMPUTE_JOB_CREATE,
143  typeId, impl::binding::ComputeJobCreate<F, typename F::ReturnType>);
144  }
145  else
146  {
148  "Instance is not usable (did you check for error?).");
149  }
150  }
151 
162  bool IsValid() const
163  {
164  return impl.IsValid();
165  }
166 
167  private:
169  common::concurrent::SharedPointer<impl::IgniteBindingImpl> impl;
170  };
171 }
172 
173 #endif //_IGNITE_IGNITE_BINDING
ignite::IgniteBinding
Ignite Binding.
Definition: ignite_binding.h:37
ignite
Ignite API.
Definition: cache.h:47
ignite::IgniteBinding::RegisterCacheEntryProcessor
void RegisterCacheEntryProcessor()
Register type as Cache Entry Processor.
Definition: ignite_binding.h:67
ignite::IgniteBinding::IsValid
bool IsValid() const
Check if the instance is valid.
Definition: ignite_binding.h:162
ignite::IgniteBinding::RegisterComputeFunc
void RegisterComputeFunc()
Register type as Compute function.
Definition: ignite_binding.h:134
ignite::IgniteBinding::IgniteBinding
IgniteBinding()
Default constructor.
Definition: ignite_binding.h:43
ignite::IgniteError::IGNITE_ERR_GENERIC
static const int IGNITE_ERR_GENERIC
Generic Ignite error.
Definition: ignite_error.h:130
ignite::binary::BinaryType
Binary type structure.
Definition: binary_type.h:148
ignite::IgniteBinding::RegisterCacheEntryProcessor
void RegisterCacheEntryProcessor(IgniteError &err)
Register Type as Cache Entry Processor.
Definition: ignite_binding.h:85
ignite::IgniteError::ThrowIfNeeded
static void ThrowIfNeeded(const IgniteError &err)
Throw an error if code is not IGNITE_SUCCESS.
Definition: ignite_error.cpp:26
ignite::IgniteBinding::RegisterCacheEntryEventFilter
void RegisterCacheEntryEventFilter()
Register type as Cache Entry Event Filter.
Definition: ignite_binding.h:109
ignite::IgniteError
Ignite error information.
Definition: ignite_error.h:93
ignite::IgniteBinding::IgniteBinding
IgniteBinding(common::concurrent::SharedPointer< impl::IgniteBindingImpl > impl)
Constructor.
Definition: ignite_binding.h:54