/usr/include/omniORB4/IOP_C.h is in libomniorb4-dev 4.1.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | // -*- Mode: C++; -*-
// Package : omniORB2
// IOP_C.h Created on: 05/01/2001
// Author : Sai Lai Lo (sll)
//
// Copyright (C) 2001 AT&T Laboratories Cambridge
//
// This file is part of the omniORB library
//
// The omniORB library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public
// License along with this library; if not, write to the Free
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
// 02111-1307, USA
//
//
// Description:
// *** PROPRIETORY INTERFACE ***
//
/*
$Log$
Revision 1.1.2.2 2001/05/02 14:20:15 sll
Make sure that getStream() is used instead of casting to get a cdrStream
from a IOP_C and IOP_S.
Revision 1.1.2.1 2001/04/18 17:26:29 sll
Big checkin with the brand new internal APIs.
*/
#ifndef __IOP_C_H__
#define __IOP_C_H__
OMNI_NAMESPACE_BEGIN(omni)
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
class IOP_C {
public:
IOP_C() {}
virtual ~IOP_C() {}
enum State { UnUsed,
Idle,
RequestInProgress,
WaitingForReply,
ReplyIsBeingProcessed,
Zombie
};
virtual cdrStream& getStream() = 0;
// A IOP_C instance operates in one of the following states:
//
// Idle - no request has been initiated
// RequestInProgress - a request is being composed, arguments
// can be marshalled into the
// cdrStream
// WaitingForReply - the request has been sent, no reply
// has come in yet.
// ReplyIsBeingProcessed - a reply has started arriving, results
// can be unmarshalled from the
// cdrStream
// Zombie - the destructor has been called
//
// Calling the member functions InitialiseRequest(), ReceiveReply() and
// RequestCompleted() cause the IOP_C to change state. The state transitions
// are as follows:
// +------------+
// | | ~IOP_C()
// +----+---+ |
// | Zombie |<-------+
// +--------+
// ^
// | ~IOP_C()
// |
// RequestCompleted() +----+---+ InitialiseRequest()
// +---------------->| Idle |---------------+
// | +---+----+ |
// | | V
// +-----------------------+ | +--------------------+
// | ReplyIsBeingProcessed | | | RequestInProgress |
// +-----------------------+ | +---------+----------+
// ^ | |
// | | |
// | | IssueLocateRequest() |
// | | |
// | | |
// | | |
// | | |
// | V |
// | +--------------------+ |
// +---------| WaitingForReply |<-------------+
// <got a proper +--------------------+ ReceiveReply()
// reply header while
// in ReceiveReply() or IssueLocateRequest()>
//
// The constructor initialises a IOP_C to Idle state.
//
// When the destructor is called, the state is examined. If it is *not* in
// Idle or WaitingForReply, there is something seriously wrong with the
// cdrStream. Also the state of the strand, on which the
// cdrStream is built, is unknown. For this reason, the strand
// is marked as dying by the destructor. The destructor may be called
// multiple times. It simply returns if the instance is already in Zombie
// state.
//
// Calling the member functions InitialiseRequest(), ReceiveReply(),
// RequestCompleted() and IssueLocateRequest() while the IOP_C is not
// in the appropriate state as indicated above would cause a
// CORBA::INTERNAL() exception to be raised.
//
virtual void InitialiseRequest() = 0;
virtual GIOP::ReplyStatusType ReceiveReply() = 0;
virtual void RequestCompleted(_CORBA_Boolean skip=0) = 0;
virtual GIOP::LocateStatusType IssueLocateRequest() = 0;
private:
IOP_C(const IOP_C&);
IOP_C& operator=(const IOP_C&);
operator cdrStream& ();
// This is to make sure that we do not have any code that blindly cast
// a reference to this object to a cdrStream&. All code should use
// getStream() instead.
};
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
class IOP_C_Holder {
public:
IOP_C_Holder(const omniIOR*,const _CORBA_Octet*,_CORBA_ULong,Rope*,
omniCallDescriptor*);
~IOP_C_Holder();
IOP_C* operator->() { return pd_iop_c; }
operator IOP_C& () { return *pd_iop_c; }
private:
Rope* pd_rope;
IOP_C* pd_iop_c;
};
OMNI_NAMESPACE_END(omni)
#endif // __IOP_C_H__
|