blob: 6e5a4a2db3fb5de8ec5547f636991694ff8724e9 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include "geode_defs.hpp"
#include "begin_native.hpp"
#include <geode/Cache.hpp>
#include "end_native.hpp"
#include "native_shared_ptr.hpp"
#include "IRegion.hpp"
#include "Log.hpp"
#include "ExceptionTypes.hpp"
#include "RegionAttributes.hpp"
using namespace System;
using namespace System::Collections::Generic;
namespace Apache
{
namespace Geode
{
namespace Client
{
namespace native = apache::geode::client;
generic<class TKey, class TValue>
ref class RegionEntry;
generic<class TKey, class TValue>
ref class AttributesMutator;
generic<class TKey, class TValue>
public ref class LocalRegion : public IRegion<TKey, TValue>
{
public:
virtual property TValue default[TKey]
{
TValue get(TKey key);
void set(TKey key, TValue value);
}
virtual System::Collections::Generic::IEnumerator<KeyValuePair<TKey,TValue>>^ GetEnumerator();
virtual System::Collections::IEnumerator^ GetEnumeratorOld() =
System::Collections::IEnumerable::GetEnumerator;
virtual bool ContainsKey(TKey key);
virtual void Add(TKey key, TValue val);
virtual void Add(KeyValuePair<TKey, TValue> keyValuePair);
virtual void Add(TKey key, TValue value, Object^ callbackArg);
virtual bool Remove(TKey key);
virtual bool Remove( TKey key, Object^ callbackArg );
virtual bool Remove(KeyValuePair<TKey,TValue> keyValuePair);
virtual bool Remove(TKey key, TValue value, Object^ callbackArg );
virtual bool Contains(KeyValuePair<TKey,TValue> keyValuePair);
virtual void Clear();
virtual void Clear(Object^ callbackArg);
virtual void CopyTo(array<KeyValuePair<TKey,TValue>>^ toArray, int startIdx);
virtual bool TryGetValue(TKey key, TValue %val);
virtual property int Count
{
int get();
}
virtual property bool IsReadOnly
{
bool get() {throw gcnew System::NotImplementedException;/*return false;*/}
}
virtual property System::Collections::Generic::ICollection<TKey>^ Keys
{
System::Collections::Generic::ICollection<TKey>^ get();
}
virtual property System::Collections::Generic::ICollection<TValue>^ Values
{
System::Collections::Generic::ICollection<TValue>^ get();
}
virtual void Put(TKey key, TValue value, Object^ callbackArg);
virtual void Put(TKey key, TValue value);
virtual TValue Get(TKey key, Object^ callbackArg);
virtual TValue Get(TKey key);
virtual void InvalidateRegion();
virtual void InvalidateRegion(Object^ callbackArg);
virtual void DestroyRegion();
virtual void DestroyRegion(Object^ callbackArg);
virtual void Invalidate(TKey key);
virtual void Invalidate(TKey key, Object^ callbackArg);
virtual void PutAll(System::Collections::Generic::IDictionary<TKey, TValue>^ map);
virtual void PutAll(System::Collections::Generic::IDictionary<TKey, TValue>^ map, TimeSpan timeout);
virtual void PutAll(System::Collections::Generic::IDictionary<TKey, TValue>^ map, TimeSpan timeout, Object^ callbackArg);
virtual void GetAll(System::Collections::Generic::ICollection<TKey>^ keys,
System::Collections::Generic::IDictionary<TKey, TValue>^ values,
System::Collections::Generic::IDictionary<TKey, System::Exception^>^ exceptions);
virtual void GetAll(System::Collections::Generic::ICollection<TKey>^ keys,
System::Collections::Generic::IDictionary<TKey, TValue>^ values,
System::Collections::Generic::IDictionary<TKey, System::Exception^>^ exceptions,
bool addToLocalCache);
virtual void GetAll(System::Collections::Generic::ICollection<TKey>^ keys,
System::Collections::Generic::IDictionary<TKey, TValue>^ values,
System::Collections::Generic::IDictionary<TKey, System::Exception^>^ exceptions,
bool addToLocalCache, Object^ callbackArg);
virtual void RemoveAll(System::Collections::Generic::ICollection<TKey>^ keys);
virtual void RemoveAll(System::Collections::Generic::ICollection<TKey>^ keys,
Object^ callbackArg);
virtual property String^ Name
{
String^ get();
}
virtual property String^ FullPath
{
String^ get();
}
virtual property IRegion<TKey, TValue>^ ParentRegion
{
IRegion<TKey, TValue>^ get( );
}
virtual property RegionAttributes<TKey, TValue>^ Attributes
{
RegionAttributes<TKey, TValue>^ get();
}
virtual property AttributesMutator<TKey, TValue>^ AttributesMutator
{
Apache::Geode::Client::AttributesMutator<TKey, TValue>^ get();
}
virtual property Apache::Geode::Client::CacheStatistics^ Statistics
{
Apache::Geode::Client::CacheStatistics^ get();
}
virtual IRegion<TKey, TValue>^ GetSubRegion( String^ path );
virtual IRegion<TKey, TValue>^ CreateSubRegion( String^ subRegionName,
RegionAttributes<TKey,TValue>^ attributes );
virtual System::Collections::Generic::ICollection<IRegion<TKey, TValue>^>^ SubRegions( bool recursive );
virtual RegionEntry<TKey, TValue>^ GetEntry( TKey key );
virtual System::Collections::Generic::ICollection<RegionEntry<TKey,TValue>^>^ GetEntries(bool recursive);
virtual property Apache::Geode::Client::IRegionService^ RegionService
{
Apache::Geode::Client::IRegionService^ get( );
}
virtual bool ContainsValueForKey( TKey key );
//Additional Region properties and methods
virtual property bool IsDestroyed
{
bool get();
}
generic<class TResult>
virtual ISelectResults<TResult>^ Query( String^ predicate );
generic<class TResult>
virtual ISelectResults<TResult>^ Query( String^ predicate, TimeSpan timeout );
virtual bool ExistsValue( String^ predicate );
virtual bool ExistsValue( String^ predicate, TimeSpan timeout );
virtual Object^ SelectValue( String^ predicate );
virtual Object^ SelectValue( String^ predicate, TimeSpan timeout );
virtual ISubscriptionService<TKey>^ GetSubscriptionService();
virtual IRegion<TKey, TValue>^ GetLocalView();
internal:
/// <summary>
/// Internal factory function to wrap a native object pointer inside
/// this managed class with null pointer check.
/// </summary>
/// <param name="nativeptr">The native object pointer</param>
/// <returns>
/// The managed wrapper object; null if the native pointer is null.
/// </returns>
//generic<class TKey, class TValue>
inline static IRegion<TKey, TValue>^ Create( std::shared_ptr<native::Region> nativeptr )
{
return __nullptr == nativeptr ? nullptr :
gcnew LocalRegion<TKey, TValue>( nativeptr );
}
std::shared_ptr<native::Region> GetNative()
{
return m_nativeptr->get_shared_ptr();
}
/// <summary>
/// Private constructor to wrap a native object pointer
/// </summary>
/// <param name="nativeptr">The native object pointer</param>
inline LocalRegion( std::shared_ptr<native::Region> nativeptr )
{
m_nativeptr = gcnew native_shared_ptr<native::Region>(nativeptr);
}
private:
inline std::shared_ptr<apache::geode::client::Serializable> getRegionEntryValue(std::shared_ptr<apache::geode::client::CacheableKey>& key);
native_shared_ptr<native::Region>^ m_nativeptr;
};
} // namespace Client
} // namespace Geode
} // namespace Apache