SBinetHttpConnection.cpp
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:4k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #include <SWIbufferedInputStream.hpp>
  23. #include <SWIbufferedOutputStream.hpp>
  24. #include <SWIsocket.hpp>
  25. #include "SBinetSSLsocket.hpp"
  26. #include "SBinetChannel.h"
  27. #include "SBinetHttpConnection.hpp"
  28. SBinetHttpConnection::SBinetHttpConnection(SBinetURL::Protocol protocol,
  29.                                            const SWIipAddress& ipAddress,
  30.                                            bool usesProxy,
  31.                                            SBinetChannel *channel,
  32.                                            const char *connId):
  33.   _remoteAddress(ipAddress),_socket(NULL),_inputStream(NULL),
  34.   _outputStream(NULL),_channel(channel), _usesProxy(usesProxy),
  35.   _protocol(protocol), _connId(NULL)
  36. {
  37.   if (connId != NULL)
  38.   {
  39.     _connId = new char[strlen(connId) + 1];
  40.     ::strcpy(_connId, connId);
  41.   }
  42. }
  43. SBinetHttpConnection::~SBinetHttpConnection()
  44. {
  45.   close();
  46.   delete [] _connId;
  47. }
  48. SWIstream::Result SBinetHttpConnection::connect(long timeout)
  49. {
  50.   if (_socket != NULL) return SWIstream::SUCCESS;
  51.   switch (_protocol)
  52.   {
  53.    case SBinetURL::HTTP_PROTOCOL:
  54.      _socket = new SWIsocket(SWIsocket::sock_stream, _channel);
  55.      break;
  56.    case SBinetURL::HTTPS_PROTOCOL:
  57.      _socket = new SBinetSSLsocket(SWIsocket::sock_stream, _channel);
  58.      break;
  59.    default:
  60.      _channel->Error(263, NULL);
  61.      return SWIstream::INVALID_ARGUMENT;
  62.   }
  63.   SWIstream::Result rc = _socket->connect(_remoteAddress, timeout);
  64.   if (rc != SWIstream::SUCCESS)
  65.   {
  66.     delete _socket;
  67.     _socket = NULL;
  68.   }
  69.   return rc;
  70. }
  71. SWIinputStream *SBinetHttpConnection::getInputStream()
  72. {
  73.   if (_socket != NULL && _inputStream == NULL)
  74.   {
  75.     SWIinputStream *s = _socket->getInputStream();
  76.     if (s != NULL)
  77.     {
  78.       _inputStream = (s->isBuffered() ?
  79.                       s :
  80.                       new SWIbufferedInputStream(s));
  81.     }
  82.   }
  83.   return _inputStream;
  84. }
  85. SWIoutputStream *SBinetHttpConnection::getOutputStream()
  86. {
  87.   if (_socket != NULL && _outputStream == NULL)
  88.   {
  89.     SWIoutputStream *s = _socket->getOutputStream();
  90.     if (s != NULL)
  91.     {
  92.       _outputStream = (s->isBuffered() ?
  93.                        s :
  94.                        new SWIbufferedOutputStream(s));
  95.     }
  96.   }
  97.   return _outputStream;
  98. }
  99. SWIstream::Result SBinetHttpConnection::close()
  100. {
  101.   if (_socket == NULL) return SWIstream::ILLEGAL_STATE;
  102.   SWIstream::Result rc = _socket->close();
  103.   delete _socket;
  104.   delete _inputStream;
  105.   delete _outputStream;
  106.   _socket = NULL;
  107.   _inputStream = NULL;
  108.   _outputStream = NULL;
  109.   return rc;
  110. }
  111. const SWIipAddress* SBinetHttpConnection::getRemoteAddress()
  112. {
  113.   return &_remoteAddress;
  114. }