1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
|
/*
* Copyright (C) Volition, Inc. 1999. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on the
* source.
*
*/
#include "globalincs/pstypes.h"
#ifdef _WIN32
#include <windows.h>
#include <direct.h>
#endif
#include <stdio.h>
#include <string.h>
#include "inetfile/cftp.h"
#include "inetfile/chttpget.h"
#include "inetfile/inetgetfile.h"
#define INET_STATE_CONNECTING 1
#define INET_STATE_ERROR 2
#define INET_STATE_RECEIVING 3
#define INET_STATE_GOT_FILE 4
void InetGetFile::AbortGet()
{
#ifdef USE_INETFILE
if (m_bUseHTTP) {
http->AbortGet();
} else {
ftp->AbortGet();
}
#endif
}
InetGetFile::InetGetFile(char *URL, char *localfile)
{
#ifdef USE_INETFILE
m_HardError = 0;
http = NULL;
ftp = NULL;
if ( (URL == NULL) || (localfile == NULL) )
m_HardError = INET_ERROR_BADPARMS;
// create directory if not already there.
char dir_name[256], *end;
// make sure localfile has \ in it or we'll be here a long time.
if ( strstr(localfile, DIR_SEPARATOR_STR) ) {
strcpy_s(dir_name, localfile);
int len = strlen(localfile);
end = dir_name + len;
// start from end of localfile and go to first \ to get dirname
while ( *end != DIR_SEPARATOR_CHAR ) {
end--;
}
*end = '\0';
if ( _mkdir(dir_name) == 0 ) {
mprintf(( "CFILE: Created new directory '%s'\n", dir_name ));
}
}
printf("URL: %s\n", URL);
if ( strstr(URL, "http:") ) {
m_bUseHTTP = true;
printf("using http!\n");
// using http proxy?
extern char Multi_options_proxy[512];
extern ushort Multi_options_proxy_port;
if ( strlen(Multi_options_proxy) > 0 ) {
http = new ChttpGet(URL, localfile, Multi_options_proxy, Multi_options_proxy_port);
} else {
http = new ChttpGet(URL, localfile);
}
if (http == NULL) {
m_HardError = INET_ERROR_NO_MEMORY;
}
} else if ( strstr(URL, "ftp:") ) {
m_bUseHTTP = FALSE;
printf("using ftp! (%s)\n", URL);
ftp = new CFtpGet(URL,localfile);
if (ftp == NULL) {
m_HardError = INET_ERROR_NO_MEMORY;
}
} else {
m_HardError = INET_ERROR_CANT_PARSE_URL;
}
Sleep(1000);
#endif
}
InetGetFile::~InetGetFile()
{
if (http != NULL)
delete http;
if (ftp != NULL)
delete ftp;
}
bool InetGetFile::IsConnecting()
{
#ifdef USE_INETFILE
int state;
if (m_bUseHTTP) {
state = http->GetStatus();
} else {
state = ftp->GetStatus();
}
if (state == FTP_STATE_CONNECTING) {
return true;
} else {
return false;
}
#else
return false;
#endif
}
bool InetGetFile::IsReceiving()
{
#ifdef USE_INETFILE
int state;
if (m_bUseHTTP) {
state = http->GetStatus();
} else {
state = ftp->GetStatus();
}
if (state == FTP_STATE_RECEIVING) {
return true;
} else {
return false;
}
#else
return false;
#endif
}
bool InetGetFile::IsFileReceived()
{
#ifdef USE_INETFILE
int state;
if (m_bUseHTTP) {
state = http->GetStatus();
} else {
state = ftp->GetStatus();
}
if (state == FTP_STATE_FILE_RECEIVED) {
return true;
} else {
return false;
}
#else
return false;
#endif
}
bool InetGetFile::IsFileError()
{
#ifdef USE_INETFILE
int state;
if (m_HardError)
return true;
if (m_bUseHTTP) {
state = http->GetStatus();
} else {
state = ftp->GetStatus();
}
printf("state: %i\n", state);
switch (state)
{
case FTP_STATE_URL_PARSING_ERROR:
case FTP_STATE_HOST_NOT_FOUND:
case FTP_STATE_DIRECTORY_INVALID:
case FTP_STATE_FILE_NOT_FOUND:
case FTP_STATE_CANT_CONNECT:
case FTP_STATE_LOGIN_ERROR:
case FTP_STATE_INTERNAL_ERROR:
case FTP_STATE_SOCKET_ERROR:
case FTP_STATE_UNKNOWN_ERROR:
case FTP_STATE_RECV_FAILED:
case FTP_STATE_CANT_WRITE_FILE:
return true;
case FTP_STATE_CONNECTING:
return false;
default:
return false;
}
#endif
return false;
}
int InetGetFile::GetErrorCode()
{
#ifdef USE_INETFILE
int state;
if (m_HardError)
return m_HardError;
if (m_bUseHTTP) {
state = http->GetStatus();
} else {
state = ftp->GetStatus();
}
switch (state)
{
case FTP_STATE_URL_PARSING_ERROR:
return INET_ERROR_CANT_PARSE_URL;
case FTP_STATE_HOST_NOT_FOUND:
return INET_ERROR_HOST_NOT_FOUND;
case FTP_STATE_DIRECTORY_INVALID:
case FTP_STATE_FILE_NOT_FOUND:
return INET_ERROR_BAD_FILE_OR_DIR;
case FTP_STATE_CANT_CONNECT:
case FTP_STATE_LOGIN_ERROR:
case FTP_STATE_INTERNAL_ERROR:
case FTP_STATE_SOCKET_ERROR:
case FTP_STATE_UNKNOWN_ERROR:
case FTP_STATE_RECV_FAILED:
return INET_ERROR_UNKNOWN_ERROR;
case FTP_STATE_CANT_WRITE_FILE:
return INET_ERROR_CANT_WRITE_FILE;
default:
return INET_ERROR_NO_ERROR;
}
#endif
return INET_ERROR_NO_ERROR;
}
int InetGetFile::GetTotalBytes()
{
#ifdef USE_INETFILE
if (m_bUseHTTP) {
return http->GetTotalBytes();
} else {
return ftp->GetTotalBytes();
}
#else
return 0;
#endif
}
int InetGetFile::GetBytesIn()
{
#ifdef USE_INETFILE
if (m_bUseHTTP) {
return http->GetBytesIn();
} else {
return ftp->GetBytesIn();
}
#else
return 0;
#endif
}
|