summaryrefslogtreecommitdiff
path: root/cpp/test/IceGrid/deployer/Server.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2005-04-18 13:58:42 +0000
committerBenoit Foucher <benoit@zeroc.com>2005-04-18 13:58:42 +0000
commit12736d6b110b4f7e8f5eed868fd5c1e2a369fcd2 (patch)
tree8940ba23901283d9494acff7cae7b8d3e7539582 /cpp/test/IceGrid/deployer/Server.cpp
parentfixes. (diff)
downloadice-12736d6b110b4f7e8f5eed868fd5c1e2a369fcd2.tar.bz2
ice-12736d6b110b4f7e8f5eed868fd5c1e2a369fcd2.tar.xz
ice-12736d6b110b4f7e8f5eed868fd5c1e2a369fcd2.zip
Changed deployment implementation.
Diffstat (limited to 'cpp/test/IceGrid/deployer/Server.cpp')
-rw-r--r--cpp/test/IceGrid/deployer/Server.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/cpp/test/IceGrid/deployer/Server.cpp b/cpp/test/IceGrid/deployer/Server.cpp
new file mode 100644
index 00000000000..5d4ce7a465b
--- /dev/null
+++ b/cpp/test/IceGrid/deployer/Server.cpp
@@ -0,0 +1,63 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#include <Ice/Ice.h>
+#include <TestI.h>
+#include <TestCommon.h>
+
+using namespace std;
+
+class Server : public Ice::Application
+{
+public:
+
+ virtual int run(int argc, char* argv[]);
+};
+
+int
+Server::run(int argc, char* argv[])
+{
+ Ice::PropertiesPtr properties = communicator()->getProperties();
+
+ Ice::StringSeq args = Ice::argsToStringSeq(argc, argv);
+ args = properties->parseCommandLineOptions("Test", args);
+ Ice::stringSeqToArgs(args, argc, argv);
+
+ string name = properties->getProperty("Ice.ProgramName");
+
+ Ice::ObjectAdapterPtr adapter = communicator()->createObjectAdapter("Server");
+ Ice::ObjectPtr object = new TestI(adapter, properties);
+ adapter->add(object, Ice::stringToIdentity(name));
+
+ shutdownOnInterrupt();
+ try
+ {
+ adapter->activate();
+ }
+ catch(const Ice::ObjectAdapterDeactivatedException&)
+ {
+ }
+ communicator()->waitForShutdown();
+ ignoreInterrupt();
+ return EXIT_SUCCESS;
+}
+
+int
+main(int argc, char* argv[])
+{
+ //
+ // Test if MY_ENV_VARIABLE is set.
+ //
+ char* value = getenv("MY_ENV_VARIABLE");
+ test(value != 0 && string(value) == "12");
+
+ Server app;
+ int rc = app.main(argc, argv);
+ return rc;
+}