1 | /** |
---|
2 | * Author : Gérald FENOY |
---|
3 | * |
---|
4 | * Copyright 2008-2009 GeoLabs SARL. All rights reserved. |
---|
5 | * |
---|
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
---|
7 | * of this software and associated documentation files (the "Software"), to deal |
---|
8 | * in the Software without restriction, including without limitation the rights |
---|
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
---|
10 | * copies of the Software, and to permit persons to whom the Software is |
---|
11 | * furnished to do so, subject to the following conditions: |
---|
12 | * |
---|
13 | * The above copyright notice and this permission notice shall be included in |
---|
14 | * all copies or substantial portions of the Software. |
---|
15 | * |
---|
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
---|
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
---|
22 | * THE SOFTWARE. |
---|
23 | */ |
---|
24 | |
---|
25 | #ifndef _ULINET_H |
---|
26 | #define _ULINET_H |
---|
27 | |
---|
28 | #include "fcgi_stdio.h" |
---|
29 | #include <stdlib.h> |
---|
30 | #include <fcntl.h> |
---|
31 | #include <curl/curl.h> |
---|
32 | #ifndef WIN32 |
---|
33 | #include <unistd.h> |
---|
34 | #endif |
---|
35 | #include <string.h> |
---|
36 | #include "time.h" |
---|
37 | #ifdef USE_JS |
---|
38 | #ifdef WIN32 |
---|
39 | #define XP_WIN 1 |
---|
40 | #else |
---|
41 | #define XP_UNIX 0 |
---|
42 | #endif |
---|
43 | #include "jsapi.h" |
---|
44 | #endif |
---|
45 | #ifndef bool |
---|
46 | #define bool int |
---|
47 | #endif |
---|
48 | #ifndef true |
---|
49 | #define true 1 |
---|
50 | #define false -1 |
---|
51 | #endif |
---|
52 | |
---|
53 | #define MAX_REQ 50 |
---|
54 | |
---|
55 | #ifdef _ULINET |
---|
56 | static char CCookie[MAX_REQ][1024]; |
---|
57 | #else |
---|
58 | extern char HEADER[MAX_REQ][3072]; |
---|
59 | extern char CCookie[MAX_REQ][1024]; |
---|
60 | #endif |
---|
61 | |
---|
62 | #ifdef __cplusplus |
---|
63 | extern "C" { |
---|
64 | #endif |
---|
65 | |
---|
66 | //static pthread_mutex_t hMutexConnect = PTHREAD_MUTEX_INITIALIZER; |
---|
67 | |
---|
68 | static char* waitingRequests[MAX_REQ]; |
---|
69 | |
---|
70 | struct MemoryStruct { |
---|
71 | char *memory; |
---|
72 | size_t size; |
---|
73 | }; |
---|
74 | |
---|
75 | typedef struct { |
---|
76 | CURL *handle; |
---|
77 | struct curl_slist *header; |
---|
78 | char* filename; |
---|
79 | FILE* file; |
---|
80 | size_t size; |
---|
81 | unsigned char *pabyData; |
---|
82 | unsigned char *mimeType; |
---|
83 | int hasCacheFile; |
---|
84 | int nDataLen; |
---|
85 | int nDataAlloc; |
---|
86 | int id; |
---|
87 | } _HINTERNET; |
---|
88 | |
---|
89 | typedef struct { |
---|
90 | CURLM *handle; |
---|
91 | _HINTERNET ihandle[MAX_REQ]; |
---|
92 | char *waitingRequests[MAX_REQ]; |
---|
93 | char *agent; |
---|
94 | int nb; |
---|
95 | } HINTERNET; |
---|
96 | |
---|
97 | size_t write_data_into(void *buffer, size_t size, size_t nmemb, void *data); |
---|
98 | |
---|
99 | size_t content_write_data(void *buffer, size_t size, size_t nmemb, void *data); |
---|
100 | |
---|
101 | size_t header_write_data(void *buffer, size_t size, size_t nmemb, void *data); |
---|
102 | |
---|
103 | |
---|
104 | void setProxy(CURL* handle,char* host,long port); |
---|
105 | |
---|
106 | |
---|
107 | #if defined(macintosh) || (defined(__MACH__) && defined(__APPLE__)) |
---|
108 | |
---|
109 | #include <CoreServices/CoreServices.h> |
---|
110 | #include <SystemConfiguration/SystemConfiguration.h> |
---|
111 | char* CFStringToCString(CFStringRef dest,char * buffer); |
---|
112 | OSStatus setProxiesForProtcol(CURL* handle,const char *proto); |
---|
113 | |
---|
114 | #else |
---|
115 | |
---|
116 | //#include <gconf/gconf-client.h> |
---|
117 | int setProxiesForProtcol(CURL* handle,const char *proto); |
---|
118 | |
---|
119 | #endif |
---|
120 | |
---|
121 | |
---|
122 | #define INTERNET_OPEN_TYPE_DIRECT 0 |
---|
123 | #define INTERNET_OPEN_TYPE_PRECONFIG 1 |
---|
124 | #define INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY 2 |
---|
125 | #define INTERNET_OPEN_TYPE_PROXY 3 |
---|
126 | #ifndef WIN32 |
---|
127 | typedef char* LPCTSTR; |
---|
128 | #endif |
---|
129 | HINTERNET InternetOpen(char* lpszAgent,int dwAccessType,char* lpszProxyName,char* lpszProxyBypass,int dwFlags); |
---|
130 | |
---|
131 | void InternetCloseHandle(HINTERNET* handle); |
---|
132 | |
---|
133 | #define INTERNET_FLAG_EXISTING_CONNECT 0 |
---|
134 | #define INTERNET_FLAG_HYPERLINK 1 |
---|
135 | #define INTERNET_FLAG_IGNORE_CERT_CN_INVALID 2 |
---|
136 | #define INTERNET_FLAG_IGNORE_CERT_DATE_INVALID 3 |
---|
137 | #define INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP 4 |
---|
138 | #define INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS 5 |
---|
139 | #define INTERNET_FLAG_KEEP_CONNECTION 6 |
---|
140 | #define INTERNET_FLAG_NEED_FILE 7 |
---|
141 | #define INTERNET_FLAG_NO_AUTH 8 |
---|
142 | #define INTERNET_FLAG_NO_AUTO_REDIRECT 9 |
---|
143 | #define INTERNET_FLAG_NO_CACHE_WRITE 10 |
---|
144 | //typedef char* LPVOID; |
---|
145 | #ifndef WIN32 |
---|
146 | typedef void* LPVOID; |
---|
147 | typedef void* LPTSTR; |
---|
148 | typedef size_t* LPDWORD; |
---|
149 | #endif |
---|
150 | #ifndef bool |
---|
151 | #define bool int |
---|
152 | #endif |
---|
153 | |
---|
154 | # define CHECK_INET_HANDLE(h) (h.handle != 0) |
---|
155 | |
---|
156 | HINTERNET InternetOpenUrl(HINTERNET* hInternet,LPCTSTR lpszUrl,LPCTSTR lpszHeaders,size_t dwHeadersLength,size_t dwFlags,size_t dwContext); |
---|
157 | |
---|
158 | int processDownloads(HINTERNET* hInternet); |
---|
159 | |
---|
160 | int freeCookieList(HINTERNET hInternet); |
---|
161 | |
---|
162 | int InternetReadFile(_HINTERNET hInternet,LPVOID lpBuffer,int dwNumberOfBytesToRead,size_t *lpdwNumberOfBytesRead); |
---|
163 | |
---|
164 | #ifdef __cplusplus |
---|
165 | } |
---|
166 | #endif |
---|
167 | |
---|
168 | #endif |
---|
169 | |
---|