/usr/include/omniORB4/internal/dynamicImplementation.h is in libomniorb4-dev 4.2.2-0.8.
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 | // -*- Mode: C++; -*-
// Package : omniORB2
// dynamicImplementation.h Created on: 11/1998
// Author : David Riddoch (djr)
//
// Copyright (C) 1996-1999 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 Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 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
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library. If not, see http://www.gnu.org/licenses/
//
//
// Description:
// Dynamic Skeleton Interface (DSI).
//
#ifndef __DYNAMICIMPLEMENTATION_H__
#define __DYNAMICIMPLEMENTATION_H__
OMNI_NAMESPACE_BEGIN(omni)
class serverRequestCallDescriptor;
//////////////////////////////////////////////////////////////////////
/////////////////////////// ServerRequest ////////////////////////////
//////////////////////////////////////////////////////////////////////
class omniServerRequest : public CORBA::ServerRequest {
public:
virtual ~omniServerRequest();
omniServerRequest(omniCallHandle& handle);
virtual const char* operation();
virtual void arguments(CORBA::NVList_ptr&);
virtual CORBA::Context_ptr ctx();
virtual void set_result(const CORBA::Any&);
virtual void set_exception(const CORBA::Any&);
enum State {
SR_READY, // initial state
SR_GOT_PARAMS, // user has retrieved params AND there is context info
// left to be retrieved.
SR_GOT_CTX, // user has retrieved params and context
SR_GOT_RESULT, // user has given a result value
SR_EXCEPTION, // user has set an exception
SR_DSI_ERROR, // usage error
SR_ERROR // MARSHAL or other error
};
//////////////////////
// omniORB internal //
//////////////////////
State state() { return pd_state; }
void do_reply();
serverRequestCallDescriptor* calldesc() { return pd_calldesc; }
private:
State pd_state; // to check proper invocation order
omniCallHandle& pd_handle; // we don't own
serverRequestCallDescriptor* pd_calldesc;
};
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
class serverRequestCallDescriptor : public omniCallDescriptor {
public:
serverRequestCallDescriptor(const char* op,size_t oplen);
void unmarshalArguments(cdrStream& s);
void marshalReturnedValues(cdrStream& s);
CORBA::Context_var pd_context;
CORBA::NVList_var pd_params;
CORBA::Any pd_result;
CORBA::Any pd_exception;
};
OMNI_NAMESPACE_END(omni)
#endif // __DYNAMICIMPLEMENTATION_H__
|