summaryrefslogtreecommitdiff
path: root/cpp/src/IceWS/ConnectorI.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2014-03-19 12:45:55 -0700
committerMark Spruiell <mes@zeroc.com>2014-03-19 12:45:55 -0700
commitcdcffbcc3c3c052afdeb772ff0167e7a90b525bb (patch)
tree4f16ee41ef7d33394c44e9db81e4d6cd89908250 /cpp/src/IceWS/ConnectorI.cpp
parentfixing testicedist.py for 5487 (diff)
downloadice-cdcffbcc3c3c052afdeb772ff0167e7a90b525bb.tar.bz2
ice-cdcffbcc3c3c052afdeb772ff0167e7a90b525bb.tar.xz
ice-cdcffbcc3c3c052afdeb772ff0167e7a90b525bb.zip
merging javascript branch
Diffstat (limited to 'cpp/src/IceWS/ConnectorI.cpp')
-rw-r--r--cpp/src/IceWS/ConnectorI.cpp114
1 files changed, 114 insertions, 0 deletions
diff --git a/cpp/src/IceWS/ConnectorI.cpp b/cpp/src/IceWS/ConnectorI.cpp
new file mode 100644
index 00000000000..1772fcd27c8
--- /dev/null
+++ b/cpp/src/IceWS/ConnectorI.cpp
@@ -0,0 +1,114 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2014 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 <IceWS/ConnectorI.h>
+#include <IceWS/Instance.h>
+#include <IceWS/TransceiverI.h>
+#include <IceWS/EndpointI.h>
+#include <IceWS/Util.h>
+
+using namespace std;
+using namespace Ice;
+using namespace IceWS;
+
+IceInternal::TransceiverPtr
+IceWS::ConnectorI::connect()
+{
+ return new TransceiverI(_instance, _delegate->connect(), _host, _port, _resource);
+}
+
+Short
+IceWS::ConnectorI::type() const
+{
+ return _delegate->type();
+}
+
+string
+IceWS::ConnectorI::toString() const
+{
+ return _delegate->toString();
+}
+
+bool
+IceWS::ConnectorI::operator==(const Connector& r) const
+{
+ const ConnectorI* p = dynamic_cast<const ConnectorI*>(&r);
+ if(!p)
+ {
+ return false;
+ }
+
+ if(this == p)
+ {
+ return true;
+ }
+
+ if(_delegate != p->_delegate)
+ {
+ return false;
+ }
+
+ if(_resource != p->_resource)
+ {
+ return false;
+ }
+
+ return true;
+}
+
+bool
+IceWS::ConnectorI::operator!=(const Connector& r) const
+{
+ return !operator==(r);
+}
+
+bool
+IceWS::ConnectorI::operator<(const Connector& r) const
+{
+ const ConnectorI* p = dynamic_cast<const ConnectorI*>(&r);
+ if(!p)
+ {
+ return type() < r.type();
+ }
+
+ if(this == p)
+ {
+ return false;
+ }
+
+ if(_delegate < p->_delegate)
+ {
+ return true;
+ }
+ else if(p->_delegate < _delegate)
+ {
+ return false;
+ }
+
+ if(_resource < p->_resource)
+ {
+ return true;
+ }
+ else if(p->_resource < _resource)
+ {
+ return false;
+ }
+
+ return false;
+}
+
+IceWS::ConnectorI::ConnectorI(const InstancePtr& instance, const IceInternal::ConnectorPtr& del,
+ const string& host, int port, const string& resource) :
+ _instance(instance), _delegate(del), _host(host), _port(port), _resource(resource)
+{
+}
+
+IceWS::ConnectorI::~ConnectorI()
+{
+}