summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-05-21 19:55:56 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-05-21 19:55:56 +0000
commit67ac98e7856f9400e82a2d60d91d5ef6385dab90 (patch)
tree385e63bc6866415a7cf4d63e03b7a7b3388f0d80
parente92bfe254382a57b03938145e339e905054cbe74 (diff)
downloadATCD-67ac98e7856f9400e82a2d60d91d5ef6385dab90.tar.gz
Updates to `-ORBpreconnect' option. It will now accept the new URL style
endpoints in addition to the old style IIOP `host:port' pair. Also updated `-ORBhost, -ORBport and -ORBpreconnect' to print warning messages about the fact that they are now obsolete.
-rw-r--r--TAO/tao/ORB_Core.cpp65
1 files changed, 49 insertions, 16 deletions
diff --git a/TAO/tao/ORB_Core.cpp b/TAO/tao/ORB_Core.cpp
index 0d334b95467..4d0f08259b6 100644
--- a/TAO/tao/ORB_Core.cpp
+++ b/TAO/tao/ORB_Core.cpp
@@ -166,8 +166,6 @@ TAO_ORB_Core::init (int &argc, char *argv[])
size_t rcv_sock_size = 0;
size_t snd_sock_size = 0;
- char *preconnections = 0;
-
// Use dotted decimal addresses
// @@ This option will be treated as a suggestion to each loaded protocol to
// @@ use a character representation for the numeric address, otherwise
@@ -281,6 +279,13 @@ TAO_ORB_Core::init (int &argc, char *argv[])
// the server should listen.
arg_shifter.consume_arg ();
+ // Issue a warning since this backward compatibilty support
+ // may be dropped in future releases.
+
+ ACE_DEBUG ((LM_WARNING,
+ "(%P|%t) The `-ORBhost' option is obsolete.\n"
+ "In the future, use the `-ORBendpoint' option.\n"));
+
if (arg_shifter.is_parameter_next())
{
host = arg_shifter.get_current ();
@@ -336,6 +341,13 @@ TAO_ORB_Core::init (int &argc, char *argv[])
{
// @@ See comment for host option. fredk
+ // Issue a warning since this backward compatibilty support
+ // may be dropped in future releases.
+
+ ACE_DEBUG ((LM_WARNING,
+ "(%P|%t) The `-ORBport' option is obsolete.\n"
+ "In the future, use the `-ORBendpoint' option.\n"));
+
// Specify the port number/name on which we should listen
arg_shifter.consume_arg ();
if (arg_shifter.is_parameter_next ())
@@ -450,31 +462,52 @@ TAO_ORB_Core::init (int &argc, char *argv[])
else if (ACE_OS::strcmp (current_arg, "-ORBpreconnect") == 0)
{
arg_shifter.consume_arg ();
- // @@ This needs to be updated to deal with multiple protocols!
+
+ // Get a string which describes the connections we want to
+ // cache up-front, thus reducing the latency of the first call.
+ //
// For example, specify -ORBpreconnect once for each protocol
// -ORBpreconnect iiop://tango:10015,watusi:10016/
// -ORBpreconnect busX_iop://board1:0x07450000,board2,0x08450000/
// Or chain all possible endpoint designations together
- // -ORBpreconnect iiop://tango:10015,watusi:10016/,
+ // -ORBpreconnect iiop://tango:10015,watusi:10016/;
// busX_iop://board1:0x07450000,board2,0x08450000/
- // fredk
- //
- // Get a string which describes the host/port of connections
- // we want to cache up-front, thus reducing the latency of
- // the first call. It is specified as a comma-separated
- // list of host:port specifications, and if multiple
- // connections to the same port are desired, they must be
- // specified multiple times. For example, the following
- // connects to tango:10015 twice, and watusi:10016 once:
//
+ // The old style command line was meant for IIOP:
// -ORBpreconnect tango:10015,tango:10015,watusi:10016
if (arg_shifter.is_parameter_next ())
{
- preconnections = arg_shifter.get_current ();
+ const char *preconnections = arg_shifter.get_current ();
+
arg_shifter.consume_arg ();
+
+ ACE_CString p;
+
+ if (ACE_OS::strstr ("://", preconnections) == 0)
+ {
+ // Handle old style preconnects for backward compatibility
+
+ // Issue a warning since this backward compatibilty support
+ // may be dropped in future releases.
+
+ ACE_DEBUG ((LM_WARNING,
+ "(%P|%t) The `host:port' pair style for "
+ "`-ORBpreconnect' is obsolete.\n"
+ "In the future, use the URL style.\n"));
+
+ p =
+ ACE_CString ("iiop://") +
+ ACE_CString (preconnections) +
+ ACE_CString ("/");
+ }
+ else
+ p = ACE_CString (preconnections);
+
+ this->orb_params ()->endpoints (p);
}
}
+
else if (ACE_OS::strcmp (current_arg, "-ORBcdrtradeoff") == 0)
{
arg_shifter.consume_arg ();
@@ -704,8 +737,8 @@ TAO_ORB_Core::init (int &argc, char *argv[])
return -1;
// Have registry parse the preconnects
- if (preconnections)
- this->connector_registry ()->preconnect (preconnections);
+ if (this->orb_params ()->endpoints ().is_empty () == 0)
+ this->connector_registry ()->preconnect (this->orb_params ()->endpoints ());
return 0;
}