std-http-reader.cpp
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:3k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. /*  Asynchronous HTTP client
  2.  *  Copyright (C) 2006   Written by VCL
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (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.  */
  18. #include "std-http-reader.h"
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include <assert.h>
  23. #include <string>
  24. #ifdef WIN32
  25. #define WIN32_MEAN_AND_LEAN
  26. #include <windows.h>
  27. #include <wininet.h>
  28. #else
  29. #include <unistd.h>
  30. #include <curl/curl.h>
  31. #include <pthread.h>
  32. #endif
  33. namespace OpenKore {
  34. namespace {
  35. #ifdef WIN32
  36. #include "win32/http-reader.cpp"
  37. #define NativeHttpReader WinHttpReader
  38. #else
  39. #include "unix/http-reader.cpp"
  40. #define NativeHttpReader UnixHttpReader
  41. #define Sleep(msec) usleep(msec * 1000)
  42. #endif
  43. }
  44. StdHttpReader *
  45. StdHttpReader::create(const char *url,
  46.       const char *userAgent) {
  47. assert(url != NULL);
  48. assert(userAgent != NULL);
  49. return new NativeHttpReader(url, NULL, -1, userAgent);
  50. }
  51. StdHttpReader *
  52. StdHttpReader::createAndPost(const char *url,
  53.       const char *postData,
  54.       int postDataSize,
  55.       const char *userAgent) {
  56. assert(url != NULL);
  57. assert(postData != NULL);
  58. assert(postDataSize >= -1);
  59. assert(userAgent != NULL);
  60. return new NativeHttpReader(url, postData, postDataSize, userAgent);
  61. }
  62. char *
  63. StdHttpReader::download(const char *url, unsigned int &size,
  64. const char *userAgent) {
  65. assert(url != NULL);
  66. assert(userAgent != NULL);
  67. NativeHttpReader http(url, NULL, -1, userAgent);
  68. HttpReaderStatus status = http.getStatus();
  69. while (status != HTTP_READER_DONE && status != HTTP_READER_ERROR) {
  70. Sleep(10);
  71. status = http.getStatus();
  72. }
  73. if (status == HTTP_READER_DONE) {
  74. unsigned int len = 0;
  75. const char *data = http.getData(len);
  76. char *result = (char *) malloc(len + 1);
  77. memcpy(result, data, len);
  78. result[len] = '';
  79. return result;
  80. } else {
  81. return NULL;
  82. }
  83. }
  84. char *
  85. StdHttpReader::download(const char *url, const char *userAgent) {
  86. unsigned int size;
  87. return download(url, size, userAgent);
  88. }
  89. void
  90. StdHttpReader::init() {
  91. #ifndef WIN32
  92. UnixHttpReader::init();
  93. #endif
  94. }
  95. }