mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
only have to contain one dependency and pragma Elaborate_All in order to make a complete server. Update documentation. [Imported from Perforce change 4058 at 2006-12-01 19:31:02] Subversion-branch: /trunk/polyorb Subversion-revision: 33239
101 lines
3.6 KiB
Ada
101 lines
3.6 KiB
Ada
------------------------------------------------------------------------------
|
|
-- --
|
|
-- POLYORB COMPONENTS --
|
|
-- --
|
|
-- S E R V E R --
|
|
-- --
|
|
-- B o d y --
|
|
-- --
|
|
-- Copyright (C) 2001 Free Software Fundation --
|
|
-- --
|
|
-- AdaBroker 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. AdaBroker 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 AdaBroker; see file COPYING. If --
|
|
-- not, write to the Free Software Foundation, 59 Temple Place - Suite 330, --
|
|
-- Boston, MA 02111-1307, USA. --
|
|
-- --
|
|
-- PolyORB is maintained by ENST Paris University. --
|
|
-- --
|
|
------------------------------------------------------------------------------
|
|
|
|
-- $Id$
|
|
|
|
with Ada.Text_IO;
|
|
with GNAT.Command_Line; use GNAT.Command_Line;
|
|
|
|
with PolyORB.CORBA_P.Server_Tools;
|
|
|
|
with PolyORB.Setup.No_Tasking_Server;
|
|
pragma Elaborate_All (PolyORB.Setup.No_Tasking_Server);
|
|
pragma Warnings (Off, PolyORB.Setup.No_Tasking_Server);
|
|
|
|
with CORBA;
|
|
with CORBA.Object;
|
|
with CORBA.Impl;
|
|
with PortableServer;
|
|
|
|
with Echo.Impl;
|
|
|
|
procedure Server is
|
|
use PolyORB.CORBA_P.Server_Tools;
|
|
|
|
Ref : CORBA.Object.Ref;
|
|
-- Register_Server : Boolean := False;
|
|
-- Use_Delegate : Boolean := False;
|
|
|
|
begin
|
|
|
|
-- Parse command line
|
|
|
|
loop
|
|
case Getopt ("d s") is
|
|
when ASCII.NUL => exit;
|
|
-- when 'd' => Use_Delegate := True;
|
|
-- when 's' => Register_Server := True;
|
|
when others => raise Program_Error;
|
|
end case;
|
|
end loop;
|
|
|
|
-- Should we use the Delegate or the regular version?
|
|
|
|
declare
|
|
-- use CORBA.Impl;
|
|
|
|
Obj : constant CORBA.Impl.Object_Ptr
|
|
:= new Echo.Impl.Object;
|
|
begin
|
|
Initiate_Servant (PortableServer.Servant (Obj), Ref);
|
|
-- Note that Ref is a smart pointer to a Reference_Info, *not*
|
|
-- to a CORBA.Impl.Object.
|
|
end;
|
|
|
|
-- If the server is to be registered, check whether there is a name
|
|
-- given on the command line, use "echo" otherwise.
|
|
|
|
-- if Register_Server then
|
|
-- declare
|
|
-- Name : constant String := Get_Argument;
|
|
-- begin
|
|
-- if Name = "" then
|
|
-- Register ("echo", Ref);
|
|
-- else
|
|
-- Register (Name, Ref);
|
|
-- end if;
|
|
-- end;
|
|
-- end if;
|
|
|
|
-- Print IOR so that we can give it to a client
|
|
|
|
Ada.Text_IO.Put_Line
|
|
("'" & CORBA.To_Standard_String (CORBA.Object.Object_To_String (Ref)) &
|
|
"'");
|
|
|
|
-- Launch the server
|
|
Initiate_Server;
|
|
end Server;
|