1
0
mirror of https://github.com/stefanocasazza/ULib.git synced 2025-09-28 19:05:55 +08:00
ULib/include/ulib/net/rpc/rpc_gen_method.h
2015-01-23 17:24:36 +01:00

84 lines
2.3 KiB
C++

// ============================================================================
//
// = LIBRARY
// ULib - c++ library
//
// = FILENAME
// rpc_gen_method.h
//
// = AUTHOR
// Stefano Casazza
//
// ============================================================================
#ifndef ULIB_RPC_GENERIC_METHOD_H
#define ULIB_RPC_GENERIC_METHOD_H 1
#include <ulib/command.h>
#include <ulib/net/rpc/rpc_method.h>
class U_EXPORT URPCGenericMethod : public URPCMethod {
public:
// COSTRUTTORI
URPCGenericMethod(const UString& n, const UString& _ns, UCommand* cmd, int rtype) : response_type(rtype), response(U_CAPACITY)
{
U_TRACE_REGISTER_OBJECT(0, URPCGenericMethod, "%.*S,%.*S,%p,%d", U_STRING_TO_TRACE(n), U_STRING_TO_TRACE(_ns), cmd, rtype)
command = cmd;
URPCMethod::ns = _ns;
URPCMethod::method_name = n;
}
virtual ~URPCGenericMethod()
{
U_TRACE_UNREGISTER_OBJECT(0, URPCGenericMethod)
delete command;
}
// VIRTUAL METHOD
// Transforms the method into something that servers and clients can send. The encoder holds the actual
// data while the client hands data to be entered in. This makes a whole lot more sense in the samples that
// should have shipped with the library
virtual void encode()
{
U_TRACE(0, "URPCGenericMethod::encode()")
U_INTERNAL_ASSERT_POINTER(URPCMethod::encoder)
U_RPC_ENCODE_RES(hasFailed() ? "ERR " : "DONE", response);
}
// Only to be called on the server by the object dispatcher. This method executes the call and returns true
// if the call succeeded, false if it failed. URPCGenericMethod should keep any return data in a member
// variable. The information will be returned via a call to encode
virtual bool execute(URPCEnvelope& theCall);
// DEBUG
#if defined(U_STDCPP_ENABLE) && defined(DEBUG)
const char* dump(bool reset) const;
#endif
protected:
UCommand* command;
int response_type;
UString response;
private:
#ifdef U_COMPILER_DELETE_MEMBERS
URPCGenericMethod(const URPCGenericMethod& g) = delete;
URPCGenericMethod& operator=(const URPCGenericMethod& g) = delete;
#else
URPCGenericMethod(const URPCGenericMethod& g) : URPCMethod() {}
URPCGenericMethod& operator=(const URPCGenericMethod& g) { return *this; }
#endif
};
#endif