6.9.2 PolyORB.CORBA_P.Naming_Tools
------------------------------------------------------------------------------
-- --
-- POLYORB COMPONENTS --
-- --
-- P O L Y O R B . C O R B A _ P . N A M I N G _ T O O L S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2001-2003 Free Software Foundation, Inc. --
-- --
-- PolyORB is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 2, or (at your option) any later --
-- version. PolyORB is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public --
-- License for more details. You should have received a copy of the GNU --
-- General Public License distributed with PolyORB; see file COPYING. If --
-- not, write to the Free Software Foundation, 59 Temple Place - Suite 330, --
-- Boston, MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- PolyORB is maintained by ACT Europe. --
-- (email: sales@@act-europe.fr) --
-- --
------------------------------------------------------------------------------
-- This package allows an object to be chosen either by its IOR or by
-- its name in the naming service.
with Ada.Finalization;
with CORBA.Object;
with CosNaming.NamingContext;
package PolyORB.CORBA_P.Naming_Tools is
function Locate
(Name : CosNaming.Name)
return CORBA.Object.Ref;
function Locate
(Context : CosNaming.NamingContext.Ref;
Name : CosNaming.Name)
return CORBA.Object.Ref;
-- Locate an object given its name, given as an array of name components.
function Locate
(IOR_Or_Name : String;
Sep : Character := '/')
return CORBA.Object.Ref;
function Locate
(Context : CosNaming.NamingContext.Ref;
IOR_Or_Name : String;
Sep : Character := '/')
return CORBA.Object.Ref;
-- Locate an object by IOR or name. If the string does not start with
-- "IOR:", the name will be parsed before it is looked up, using
-- Parse_Name below.
procedure Register
(Name : in String;
Ref : in CORBA.Object.Ref;
Rebind : in Boolean := False;
Sep : in Character := '/');
-- Register an object by its name by binding or rebinding.
-- The name will be parsed by Parse_Name below; any necessary contexts
-- will be created on the name server.
-- If Rebind is True, then a rebind will be performed if the name
-- is already bound.
procedure Unregister (Name : in String);
-- Unregister an object by its name by unbinding it.
type Server_Guard is limited private;
procedure Register
(Guard : in out Server_Guard;
Name : in String;
Ref : in CORBA.Object.Ref;
Rebind : in Boolean := False;
Sep : in Character := '/');
-- A Server_Guard object is an object which is able to register a
-- server reference in a naming service (see Register above), and
-- destroy this name using Unregister when the object disappears
-- (the program terminates or the Server_Guard object lifetime has
-- expired).
function Parse_Name
(Name : String;
Sep : Character := '/')
return CosNaming.Name;
-- Split a sequence of name component specifications separated
-- with Sep characters into a name component array. Any leading
-- Sep is ignored.
private
-- implementation removed
end PolyORB.CORBA_P.Naming_Tools;