From edd76dbfad6a28c11e441571af493e1eb99ddf52 Mon Sep 17 00:00:00 2001 From: Jose Date: Wed, 13 Aug 2014 22:30:18 +0200 Subject: Rename WS transport files for consistency with TCP/UDP transports. --- cpp/src/Ice/WSConnector.cpp | 113 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 cpp/src/Ice/WSConnector.cpp (limited to 'cpp/src/Ice/WSConnector.cpp') diff --git a/cpp/src/Ice/WSConnector.cpp b/cpp/src/Ice/WSConnector.cpp new file mode 100644 index 00000000000..4bef468dc25 --- /dev/null +++ b/cpp/src/Ice/WSConnector.cpp @@ -0,0 +1,113 @@ +// ********************************************************************** +// +// 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 +#include +#include +#include + +using namespace std; +using namespace Ice; +using namespace IceInternal; + +TransceiverPtr +IceInternal::WSConnector::connect() +{ + return new WSTransceiver(_instance, _delegate->connect(), _host, _port, _resource); +} + +Short +IceInternal::WSConnector::type() const +{ + return _delegate->type(); +} + +string +IceInternal::WSConnector::toString() const +{ + return _delegate->toString(); +} + +bool +IceInternal::WSConnector::operator==(const Connector& r) const +{ + const WSConnector* p = dynamic_cast(&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 +IceInternal::WSConnector::operator!=(const Connector& r) const +{ + return !operator==(r); +} + +bool +IceInternal::WSConnector::operator<(const Connector& r) const +{ + const WSConnector* p = dynamic_cast(&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; +} + +IceInternal::WSConnector::WSConnector(const ProtocolInstancePtr& instance, const ConnectorPtr& del, const string& host, + int port, const string& resource) : + _instance(instance), _delegate(del), _host(host), _port(port), _resource(resource) +{ +} + +IceInternal::WSConnector::~WSConnector() +{ +} -- cgit v1.2.3