📄 kfscallbackobj.h
字号:
//---------------------------------------------------------- -*- Mode: C++ -*-// $Id: KfsCallbackObj.h 71 2008-07-07 15:49:14Z sriramsrao $ //// Created 2006/03/14// Author: Sriram Rao//// Copyright 2008 Quantcast Corp.// Copyright 2006-2008 Kosmix Corp.//// This file is part of Kosmos File System (KFS).//// Licensed 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.//// //----------------------------------------------------------------------------#ifndef _LIBIO_KFSCALLBACKOBJ_H#define _LIBIO_KFSCALLBACKOBJ_H#include <iostream>namespace KFS{////// \file KfsCallbackObj.h/// \brief Callback/Continuations based programming model////// A KfsCallback object is based on a Continuation programming/// model: The object executes until it makes a blocking call, at/// which point control switches over to another object.////// A continuation consists of two parts: (1) state, (2) an event/// handler that will be called when an event occurs. The/// KfsCallbackObj class defined here is only a base class./////// For KfsCallbackObj object, we want the virtual function table to be the// first element of the object. This will debugging easier on// optimized builds---from the virtual table, we can tell what type of// object we are looking at.//struct _force_vfp_to_top { virtual ~_force_vfp_to_top() { };};// abstract base class for ObjectMethod templateclass ObjectMethodBase { public: virtual ~ObjectMethodBase() {} virtual int execute(int code, void *data) = 0;}; //// A derived sub-class of the KfsCallbackObj class defines its own event// handlers. We need to store a pointer to such an handler so that// the callback can be invoked. This is an implementation problem// because: we can store a pointer in a derived class to something in// the base class, but not vice-versa. //// SOOO..., create an object that holds two things: (1) the object on// which a callback is defined, and (2) a pointer to the method in// that object. By doing this with templates, we preserve type-safety// and work the magic without using any type-casting.// template<class T>class ObjectMethod : public ObjectMethodBase {public: typedef int (T::*MethodPtr)(int code, void *data); // save pointer to object and method ObjectMethod( T* optr, MethodPtr mptr ) : mOptr(optr), mMptr(mptr) {} int execute(int code, void *data) { return (mOptr->*mMptr)(code, data); // execute the method }private: T* mOptr; // pointer to the object MethodPtr mMptr; // pointer to the method};////// \brief Sets the event handler for a callback object./// @param pobj Pointer to the KfsCallback object/// @param meth Pointer to the handler method in the KfsCallbackObj///template<class T>void SET_HANDLER( T* pobj, typename ObjectMethod<T>::MethodPtr meth ){ pobj->SetCallback( new ObjectMethod<T>(pobj, meth) );}////// \class KfsCallbackObj/// A callback object has state and an event handler that will be invoked/// whenever an event occurs for this callback object.///class KfsCallbackObj : public _force_vfp_to_top {public: KfsCallbackObj() { mObjMeth = NULL; } virtual ~KfsCallbackObj() { delete mObjMeth; } /// /// Sets the callback for this callback object. /// void SetCallback(ObjectMethodBase *p) { delete mObjMeth; mObjMeth = p; } /// /// Signature for an event handler: /// @param code An integer about the event that occurred /// @param data A pointer to the data associated with the event /// int HandleEvent(int code, void *data) { return mObjMeth->execute(code, data); }private: ObjectMethodBase *mObjMeth;};}#endif // _LIBIO_KFSCALLBACKOBJ_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -