/usr/include/omniORB4/internal/initRefs.h is in libomniorb4-dev 4.1.6-1.
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 | // -*- Mode: C++; -*-
// Package : omniORB2
// initRefs.h Created on: 20/08/98
// Author : Sai-Lai Lo
//
// Copyright (C) 1996-2000 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:
// *** PROPRIETARY INTERFACE ***
//
/*
$Log$
Revision 1.1.4.4 2001/11/13 14:11:44 dpg1
Tweaks for CORBA 2.5 compliance.
Revision 1.1.4.3 2001/10/17 16:44:05 dpg1
Update DynAny to CORBA 2.5 spec, const Any exception extraction.
Revision 1.1.4.2 2001/05/29 17:03:49 dpg1
In process identity.
Revision 1.1.4.1 2001/04/18 17:18:16 sll
Big checkin with the brand new internal APIs.
These files were relocated and scoped with the omni namespace.
Revision 1.2.2.2 2000/09/27 17:38:58 sll
Updated include/omniORB3 to include/omniORB4
Revision 1.2.2.1 2000/07/17 10:35:39 sll
Merged from omni3_develop the diff between omni3_0_0_pre3 and omni3_0_0.
Revision 1.3 2000/07/13 15:26:03 dpg1
Merge from omni3_develop for 3.0 release.
Revision 1.1.2.2 2000/06/27 15:33:53 sll
Changed #include to match the new location of the stubs.
Revision 1.1.2.1 2000/04/27 10:39:18 dpg1
Interoperable Naming Service
Moved from bootstrap_i.h, and extended.
Revision 1.4.6.2 1999/09/27 08:48:31 djr
Minor corrections to get rid of warnings.
Revision 1.4.6.1 1999/09/22 14:26:24 djr
Major rewrite of orbcore to support POA.
Revision 1.4 1999/05/25 18:10:46 sll
Now CORBA::ORB::ObjectIdList and CORBA_InitialReference::ObjIdList
are different types.
Revision 1.3 1999/03/11 16:25:51 djr
Updated copyright notice
Revision 1.2 1998/08/25 18:52:09 sll
Added dummy marshalling functions in serviceRecord to make gcc-2.7.2 happy.
Revision 1.1 1998/08/21 19:28:15 sll
Initial revision
*/
#ifndef __INITREFS_H__
#define __INITREFS_H__
#include <omniORB4/bootstrap.hh>
OMNI_NAMESPACE_BEGIN(omni)
class CORBA_InitialReferences_i;
class omniInitialReferences {
public:
static CORBA::Boolean setFromFile(const char* identifier, const char* uri);
static CORBA::Boolean setFromArgs(const char* identifier, const char* uri);
// Set initial references from the configuration file and the
// command line arguments respectively. Return true if the uri looks
// syntactically valid, false if it is definitely invalid.
static void setFromORB(const char* identifier, CORBA::Object_ptr obj);
// Implementation of CORBA 2.5 ORB::register_initial_reference().
static void setDefaultInitRefFromFile(const char* defInit);
static void setDefaultInitRefFromArgs(const char* defInit);
// Default string set by -ORBDefaultInitRef
static CORBA::Object_ptr resolve(const char* identifier,
unsigned int cycles = 0);
// Real implementation of ORB::resolve_initial_references(). cycles
// is used to count recursive calls within stringToObject, and bail
// out if we loop too much. Responsible for returning pseudo objects
// (like "RootPOA") as well as normal CORBA objects.
static CORBA::ORB::ObjectIdList* list();
// Real implementation of ORB::list_initial_services().
typedef CORBA::Object_ptr (*pseudoObj_fn)();
static void registerPseudoObjFn(const char* identifier, pseudoObj_fn fn);
// Function to register a pseudo object. If resolve() is called with
// the given identifier, the function is called. The registered
// function must return a suitable pseudo object when called, and
// must be thread safe. The identifier string must exist for the
// lifetime of the initRefs module.
// This function is NOT thread safe.
// Deprecated INIT bootagent functions:
static void remFromFile(const char* identifier);
// Remove the specified identifier from the file list. Used to
// remove NameService and InterfaceRepository if -ORBInitialHost is
// given on the command line.
static void remFromArgs(const char* identifier);
// Not used, just here for symmetry
static void initialise_bootstrap_agentImpl();
static int invoke_bootstrap_agentImpl(omniCallHandle&);
// Returns 0 if there is no bootstrap agent. May throw
// the usual exceptions for an object invocation...
static int is_bootstrap_agentImpl_initialised();
// Returns true if a boostrap agent exists.
static void initialise_bootstrap_agent(const char* host, CORBA::UShort port);
};
OMNI_NAMESPACE_END(omni)
#endif
|