00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef TAO_PLUGGABLE_MESSAGING_UTILS_H
00017 #define TAO_PLUGGABLE_MESSAGING_UTILS_H
00018
00019 #include "ace/pre.h"
00020
00021 #include "tao/IOP_IORC.h"
00022 #include "tao/GIOPC.h"
00023
00024 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00025 # pragma once
00026 #endif
00027
00028 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00029
00030 class TAO_Transport;
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 class TAO_Export TAO_Pluggable_Reply_Params_Base
00044 {
00045 public:
00046
00047 TAO_Pluggable_Reply_Params_Base (void);
00048
00049
00050 IOP::ServiceContextList svc_ctx_;
00051
00052
00053 CORBA::ULong request_id_;
00054
00055
00056
00057
00058
00059
00060 CORBA::Boolean is_dsi_;
00061
00062
00063
00064 ptrdiff_t dsi_nvlist_align_;
00065
00066
00067
00068
00069
00070
00071
00072 IOP::ServiceContextList &service_context_notowned (void);
00073 void service_context_notowned (IOP::ServiceContextList *svc);
00074
00075
00076
00077 CORBA::Boolean argument_flag_;
00078
00079 GIOP::ReplyStatusType reply_status (void) const;
00080 void reply_status (GIOP::ReplyStatusType status);
00081
00082 GIOP::LocateStatusType locate_reply_status (void) const;
00083 void locate_reply_status (GIOP::LocateStatusType status);
00084
00085 protected:
00086
00087 IOP::ServiceContextList *service_context_;
00088 private:
00089
00090 GIOP::ReplyStatusType reply_status_;
00091
00092
00093 GIOP::LocateStatusType locate_reply_status_;
00094
00095 };
00096
00097
00098
00099
00100
00101
00102
00103 class TAO_Export TAO_Pluggable_Reply_Params
00104 : public TAO_Pluggable_Reply_Params_Base
00105 {
00106 public:
00107
00108 TAO_Pluggable_Reply_Params (TAO_Transport *t);
00109
00110
00111
00112 TAO_InputCDR *input_cdr_;
00113
00114 TAO_Transport *transport_;
00115 };
00116
00117 TAO_END_VERSIONED_NAMESPACE_DECL
00118
00119 #if defined (__ACE_INLINE__)
00120 #include "tao/Pluggable_Messaging_Utils.inl"
00121 #endif
00122
00123 #include "ace/post.h"
00124
00125 #endif