blob: 13eff81a49c3ddc33a796cba47102f419ec62f73 [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 <vcclr.h>
#include "../begin_native.hpp"
#include <geode/CacheWriter.hpp>
#include "../end_native.hpp"
#include "../ICacheWriter.hpp"
using namespace System;
namespace apache
{
namespace geode
{
namespace client
{
/// <summary>
/// Wraps the managed <see cref="Apache.Geode.Client.ICacheWriter" />
/// object and implements the native <c>apache::geode::client::CacheWriter</c> interface.
/// </summary>
class ManagedCacheWriterGeneric
: public CacheWriter
{
public:
/// <summary>
/// Constructor to initialize with the provided managed object.
/// </summary>
/// <param name="userptr">
/// The managed object.
/// </param>
inline ManagedCacheWriterGeneric(Object^ userptr) : m_userptr(userptr) { }
/// <summary>
/// Static function to create a <c>ManagedCacheWriter</c> using given
/// managed assembly path and given factory function.
/// </summary>
/// <param name="assemblyPath">
/// The path of the managed assembly that contains the <c>ICacheWriter</c>
/// factory function.
/// </param>
/// <param name="factoryFunctionName">
/// The name of the factory function of the managed class for creating
/// an object that implements <c>ICacheWriter</c>.
/// This should be a static function of the format
/// {Namespace}.{Class Name}.{Method Name}.
/// </param>
/// <exception cref="IllegalArgumentException">
/// If the managed library cannot be loaded or the factory function fails.
/// </exception>
static CacheWriter* create(const char* assemblyPath,
const char* factoryFunctionName);
virtual ~ManagedCacheWriterGeneric() { }
/// <summary>
/// Called before an entry is updated. The entry update is initiated by a
/// <c>put</c> or a <c>get</c> that causes the loader to update an existing entry.
/// </summary>
/// <remarks>
/// The entry previously existed in the cache where the operation was
/// initiated, although the old value may have been null. The entry being
/// updated may or may not exist in the local cache where the CacheWriter is
/// installed.
/// </remarks>
/// <param name="ev">
/// EntryEvent denotes the event object associated with updating the entry
/// </param>
/// <seealso cref="Apache.Geode.Client.Region.Put" />
/// <seealso cref="Apache.Geode.Client.Region.Get" />
bool beforeUpdate(const EntryEvent& ev);
/// <summary>
/// Called before an entry is created. Entry creation is initiated by a
/// <c>create</c>, a <c>put</c>, or a <c>get</c>.
/// </summary>
/// <remarks>
/// The <c>CacheWriter</c> can determine whether this value comes from a
/// <c>get</c> or not from <c>load</c>. The entry being created may already
/// exist in the local cache where this <c>CacheWriter</c> is installed,
/// but it does not yet exist in the cache where the operation was initiated.
/// </remarks>
/// <param name="ev">
/// EntryEvent denotes the event object associated with creating the entry
/// </param>
/// <seealso cref="Apache.Geode.Client.Region.Create" />
/// <seealso cref="Apache.Geode.Client.Region.Put" />
/// <seealso cref="Apache.Geode.Client.Region.Get" />
bool beforeCreate(const EntryEvent& ev);
/// <summary>
/// Called before an entry is destroyed.
/// </summary>
/// <remarks>
/// The entry being destroyed may or may
/// not exist in the local cache where the CacheWriter is installed. This method
/// is <em>not</em> called as a result of expiration or
/// <see cref="Apache.Geode.Client.Region.LocalDestroyRegion" />.
/// </remarks>
/// <param name="ev">
/// EntryEvent denotes the event object associated with destroying the entry
/// </param>
/// <seealso cref="Apache.Geode.Client.Region.Destroy" />
bool beforeDestroy(const EntryEvent& ev);
/// <summary>
/// called before this region is cleared
/// </summary>
bool beforeRegionClear(const RegionEvent& ev);
/// <summary>
/// called before this region is destroyed
/// </summary>
/// <param name="ev">
/// RegionEvent denotes the event object associated with destroying the region
/// </param>
/// <seealso cref="Apache.Geode.Client.Region.DestroyRegion" />
bool beforeRegionDestroy(const RegionEvent& ev);
/// <summary>
/// Called when the region containing this callback is destroyed, when
/// the cache is closed.
/// </summary>
/// <remarks>
/// Implementations should clean up any external
/// resources, such as database connections. Any runtime exceptions this method
/// throws will be logged.
/// <para>
/// It is possible for this method to be called multiple times on a single
/// callback instance, so implementations must be tolerant of this.
/// </para>
/// </remarks>
/// <seealso cref="Apache.Geode.Client.Cache.Close" />
/// <seealso cref="Apache.Geode.Client.Region.DestroyRegion" />
void close(const std::shared_ptr<Region>& rp);
/// <summary>
/// Returns the wrapped managed object reference.
/// </summary>
inline Apache::Geode::Client::ICacheWriter<Object^, Object^>^ ptr() const
{
return m_managedptr;
}
inline void setptr(Apache::Geode::Client::ICacheWriter<Object^, Object^>^ managedptr)
{
m_managedptr = managedptr;
}
inline Object^ userptr() const
{
return m_userptr;
}
private:
/// <summary>
/// Using gcroot to hold the managed delegate pointer (since it cannot be stored directly).
/// Note: not using auto_gcroot since it will result in 'Dispose' of the ICacheWriter
/// to be called which is not what is desired when this object is destroyed. Normally this
/// managed object may be created by the user and will be handled automatically by the GC.
/// </summary>
gcroot<Apache::Geode::Client::ICacheWriter<Object^, Object^>^> m_managedptr;
gcroot<Object^> m_userptr;
};
} // namespace client
} // namespace geode
} // namespace apache