summaryrefslogtreecommitdiff
path: root/cpp/test/IceStorm/repstress/Control.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceStorm/repstress/Control.cpp')
-rw-r--r--cpp/test/IceStorm/repstress/Control.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/cpp/test/IceStorm/repstress/Control.cpp b/cpp/test/IceStorm/repstress/Control.cpp
new file mode 100644
index 00000000000..8234b826f1b
--- /dev/null
+++ b/cpp/test/IceStorm/repstress/Control.cpp
@@ -0,0 +1,63 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2007 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 <Controller.h>
+
+using namespace std;
+using namespace Ice;
+using namespace Test;
+
+int
+run(int argc, char* argv[], const CommunicatorPtr& communicator)
+{
+ if(argc < 2)
+ {
+ cerr << "Usage: " << argv[0] << " proxy" << endl;
+ return EXIT_FAILURE;
+ }
+
+ ControllerPrx control = ControllerPrx::uncheckedCast(communicator->stringToProxy(argv[1]));
+ control->stop();
+
+ return EXIT_SUCCESS;
+}
+
+int
+main(int argc, char* argv[])
+{
+ int status;
+ CommunicatorPtr communicator;
+
+ try
+ {
+ communicator = initialize(argc, argv);
+ status = run(argc, argv, communicator);
+ }
+ catch(const Exception& ex)
+ {
+ cerr << ex << endl;
+ status = EXIT_FAILURE;
+ }
+
+ if(communicator)
+ {
+ try
+ {
+ communicator->destroy();
+ }
+ catch(const Exception& ex)
+ {
+ cerr << ex << endl;
+ status = EXIT_FAILURE;
+ }
+ }
+
+ return status;
+}