/* -*- C++ -*- */ //============================================================================= /** * @file Token_Request_Reply.h * * $Id$ * * Define the format used to exchange messages between the * ACE_Token Server and its clients. * * * @author Douglas C. Schmidt (schmidt@cs.wustl.edu) * @author Tim Harrison (harrison@cs.wustl.edu) */ //============================================================================= #ifndef ACE_TOKEN_REQUEST_REPLY_H #define ACE_TOKEN_REQUEST_REPLY_H #include "ace/pre.h" #include "ace/Local_Tokens.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "ace/Time_Value.h" // Specifies the size of the fixed length portion of // the Transfer structure in ACE_Token_Request #define ACE_TOKEN_REQUEST_HEADER_SIZE 40 /** * @class ACE_Token_Request * * @brief Message format for delivering requests to the ACE_Token Server. * * This class is implemented to minimize data copying. * In particular, all marshaling is done in situ... */ class ACE_Export ACE_Token_Request { public: /// Operation types. enum OPERATION { /// Acquire the token. ACQUIRE, /// Release the token. RELEASE, /// Renew the token. RENEW, /// Remove the token. REMOVE, // Try to acquire the token. TRY_ACQUIRE }; /// Default constructor. ACE_Token_Request (void); /** * token_type - MUTEX, RWLOCK * proxy_type - MUTEX, RLOCK, WLOCK (acquires mean different things) * operation - method * token_name * client_id * options - we check USE_TIMEOUT and use the arg. */ ACE_Token_Request (int token_type, int proxy_type, ACE_UINT32 operation, const ACE_TCHAR token_name[], const ACE_TCHAR client_id[], const ACE_Synch_Options &options); // = Set/get the length of the encoded/decoded message. ACE_UINT32 length (void) const; void length (ACE_UINT32); // = Set/get the type of proxy int proxy_type (void) const; void proxy_type (int proxy_type); // = Set/get the type of token int token_type (void) const; void token_type (int token_type); // = Set/get the type of the operation. ACE_UINT32 operation_type (void) const; void operation_type (ACE_UINT32); // = Set/get the requeue position. These should be used when renew // is the operation type. ACE_UINT32 requeue_position (void) const; void requeue_position (ACE_UINT32); // = Set/get notify. These should be used when acquire is the operation type. ACE_UINT32 notify (void) const; void notify (ACE_UINT32); // = Set/get the timeout. ACE_Synch_Options &options (void) const; void options (const ACE_Synch_Options &options); // = Set/get the name of the token and the client id. The set // method is combined to make it easier on us. We're copying the // names as a contiguous buffer. ACE_TCHAR *token_name (void) const; ACE_TCHAR *client_id (void) const; void token_name (const ACE_TCHAR *token_name, const ACE_TCHAR *client_id); /// Encode the message before transmission. int encode (void *&); /// Decode message after reception. This must be called to set the /// internal options. int decode (void); /// Print out the values of the message for debugging purposes. void dump (void) const; private: // = The 5 fields in the struct are transmitted to the server. // The remaining 2 fields are not tranferred -- they are used only on // the server-side to simplify lookups. struct Transfer { ACE_UINT32 length_; // Length of entire request. ACE_UINT32 token_type_; // Type of the request (i.e., MUTEX, RLOCK, WLOCK... ACE_UINT32 proxy_type_; // Type of the request (i.e., MUTEX, RLOCK, WLOCK... ACE_UINT32 operation_type_; // Type of the request (i.e., , , , and ). ACE_UINT32 requeue_position_; // this only makes sense when operation type is renew ACE_UINT32 notify_; // this only makes sense when operation type is renew // = ACE_Synch_Options stuff ACE_UINT32 use_timeout_; // Indicates if we should block forever. If 1, then // and indicates how long we should wait. If 0, // then we block forever. ACE_UINT32 sec_; // Max seconds willing to wait for token if not blocking forever. ACE_UINT32 usec_; // Max micro seconds to wait for token if not blocking forever. ACE_UINT32 arg_; // value returned in ; ACE_TCHAR data_[ACE_MAXTOKENNAMELEN + ACE_MAXCLIENTIDLEN + 3]; // The data portion contains the including a 0 terminator, // a ':', then the including a 0 terminator } transfer_; /// Pointer to the beginning of the token name in this->data_. ACE_TCHAR *token_name_; /// Pointer to the beginning of the client id in this->data_; ACE_TCHAR *client_id_; /// Holds arg, sec, usec, etc. ACE_Synch_Options options_; }; /** * @class ACE_Token_Reply * * @brief Message format for delivering replies from the ACE_Token Server. * * This class is implemented to minimize data copying. * In particular, all marshaling is done in situ... */ class ACE_Export ACE_Token_Reply { public: /// Default constructor. ACE_Token_Reply (void); // = Set/get the length of the encoded/decoded message. ACE_UINT32 length (void) const; void length (ACE_UINT32); // = Set/get the errno of a reply. ACE_UINT32 errnum (void) const; void errnum (ACE_UINT32); // = Set/get the arg of a reply. ACE_UINT32 arg (void) const; void arg (ACE_UINT32); /// Encode the message before transfer. int encode (void *&); /// Decode a message after reception. int decode (void); /// Print out the values of the message for debugging purposes. void dump (void) const; private: // = The 2 fields in the struct are transmitted to the server. struct Transfer { ACE_UINT32 length_; // Length of entire reply. ACE_UINT32 errno_; // Indicates why error occurred if type_> == . // Typical reasons include: // (if client requested a non-blocking check for the token). // (if the client timed out after waiting for the token). // (if the token lock was removed out from underneath a waiter). // (attempt to renew a token that isn't owned by the client). ACE_UINT32 arg_; // magic cookie } transfer_; }; #if defined (__ACE_INLINE__) #include "ace/Token_Request_Reply.i" #endif /* __ACE_INLINE__ */ #include "ace/post.h" #endif /* ACE_TOKEN_REQUEST_REPLY_H */