2 * Internet Messaging Transport Base Class
4 * Copyright 2006 Robert Shearman for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
32 #include "wine/debug.h"
34 #include "inetcomm_private.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(inetcomm
);
38 static const WCHAR wszClassName
[] = {'T','h','o','r','C','o','n','n','W','n','d','C','l','a','s','s',0};
40 #define IX_READ (WM_USER + 0)
41 #define IX_READLINE (WM_USER + 1)
42 #define IX_WRITE (WM_USER + 2)
44 HRESULT
InternetTransport_Init(InternetTransport
*This
)
46 This
->pCallback
= NULL
;
47 This
->Status
= IXP_DISCONNECTED
;
49 This
->fCommandLogging
= FALSE
;
50 This
->fnCompletion
= NULL
;
55 HRESULT
InternetTransport_GetServerInfo(InternetTransport
*This
, LPINETSERVER pInetServer
)
57 if (This
->Status
== IXP_DISCONNECTED
)
58 return IXP_E_NOT_CONNECTED
;
60 *pInetServer
= This
->ServerInfo
;
64 HRESULT
InternetTransport_InetServerFromAccount(InternetTransport
*This
,
65 IImnAccount
*pAccount
, LPINETSERVER pInetServer
)
67 FIXME("(%p, %p): stub\n", pAccount
, pInetServer
);
71 HRESULT
InternetTransport_Connect(InternetTransport
*This
,
72 LPINETSERVER pInetServer
, boolean fAuthenticate
, boolean fCommandLogging
)
75 struct addrinfo
*ai_cur
;
76 struct addrinfo hints
;
80 if (This
->Status
!= IXP_DISCONNECTED
)
81 return IXP_E_ALREADY_CONNECTED
;
83 This
->ServerInfo
= *pInetServer
;
84 This
->fCommandLogging
= fCommandLogging
;
86 This
->hwnd
= CreateWindowW(wszClassName
, wszClassName
, 0, 0, 0, 0, 0, NULL
, NULL
, NULL
, 0);
88 return HRESULT_FROM_WIN32(GetLastError());
89 SetWindowLongPtrW(This
->hwnd
, GWLP_USERDATA
, (LONG_PTR
)This
);
92 hints
.ai_family
= PF_UNSPEC
;
93 hints
.ai_socktype
= SOCK_STREAM
;
94 hints
.ai_protocol
= IPPROTO_TCP
;
97 hints
.ai_canonname
= NULL
;
100 snprintf(szPort
, sizeof(szPort
), "%d", (unsigned short)pInetServer
->dwPort
);
102 InternetTransport_ChangeStatus(This
, IXP_FINDINGHOST
);
104 ret
= getaddrinfo(pInetServer
->szServerName
, szPort
, &hints
, &ai
);
107 ERR("getaddrinfo failed: %d\n", ret
);
108 return IXP_E_CANT_FIND_HOST
;
111 for (ai_cur
= ai
; ai_cur
; ai_cur
= ai
->ai_next
)
115 if (TRACE_ON(inetcomm
))
119 getnameinfo(ai_cur
->ai_addr
, ai_cur
->ai_addrlen
,
120 host
, sizeof(host
), service
, sizeof(service
),
121 NI_NUMERICHOST
| NI_NUMERICSERV
);
122 TRACE("trying %s:%s\n", host
, service
);
125 InternetTransport_ChangeStatus(This
, IXP_CONNECTING
);
127 so
= socket(ai_cur
->ai_family
, ai_cur
->ai_socktype
, ai_cur
->ai_protocol
);
130 WARN("socket() failed\n");
135 /* FIXME: set to async */
137 if (0 > connect(This
->Socket
, ai_cur
->ai_addr
, ai_cur
->ai_addrlen
))
139 WARN("connect() failed\n");
140 closesocket(This
->Socket
);
143 InternetTransport_ChangeStatus(This
, IXP_CONNECTED
);
145 /* FIXME: call WSAAsyncSelect */
148 TRACE("connected\n");
154 return IXP_E_CANT_FIND_HOST
;
157 HRESULT
InternetTransport_HandsOffCallback(InternetTransport
*This
)
159 if (!This
->pCallback
)
162 ITransportCallback_Release(This
->pCallback
);
163 This
->pCallback
= NULL
;
168 HRESULT
InternetTransport_DropConnection(InternetTransport
*This
)
172 if (This
->Status
== IXP_DISCONNECTED
)
173 return IXP_E_NOT_CONNECTED
;
175 ret
= shutdown(This
->Socket
, SD_BOTH
);
177 ret
= closesocket(This
->Socket
);
179 DestroyWindow(This
->hwnd
);
182 InternetTransport_ChangeStatus(This
, IXP_DISCONNECTED
);
187 HRESULT
InternetTransport_GetStatus(InternetTransport
*This
,
188 IXPSTATUS
*pCurrentStatus
)
190 *pCurrentStatus
= This
->Status
;
194 HRESULT
InternetTransport_ChangeStatus(InternetTransport
*This
, IXPSTATUS Status
)
196 This
->Status
= Status
;
198 ITransportCallback_OnStatus(This
->pCallback
, Status
,
199 (IInternetTransport
*)&This
->u
.vtbl
);
203 HRESULT
InternetTransport_Read(InternetTransport
*This
, int cbBuffer
,
204 INETXPORT_COMPLETION_FUNCTION fnCompletion
)
206 if (This
->Status
== IXP_DISCONNECTED
)
207 return IXP_E_NOT_CONNECTED
;
209 if (This
->fnCompletion
)
212 This
->fnCompletion
= fnCompletion
;
214 This
->cbBuffer
= cbBuffer
;
215 This
->pBuffer
= HeapAlloc(GetProcessHeap(), 0, This
->cbBuffer
);
216 This
->iCurrentBufferOffset
= 0;
218 if (WSAAsyncSelect(This
->Socket
, This
->hwnd
, IX_READ
, FD_READ
) == SOCKET_ERROR
)
220 ERR("WSAAsyncSelect failed with error %d\n", WSAGetLastError());
221 /* FIXME: handle error */
226 HRESULT
InternetTransport_ReadLine(InternetTransport
*This
,
227 INETXPORT_COMPLETION_FUNCTION fnCompletion
)
229 if (This
->Status
== IXP_DISCONNECTED
)
230 return IXP_E_NOT_CONNECTED
;
232 if (This
->fnCompletion
)
235 This
->fnCompletion
= fnCompletion
;
237 This
->cbBuffer
= 1024;
238 This
->pBuffer
= HeapAlloc(GetProcessHeap(), 0, This
->cbBuffer
);
239 This
->iCurrentBufferOffset
= 0;
241 if (WSAAsyncSelect(This
->Socket
, This
->hwnd
, IX_READLINE
, FD_READ
) == SOCKET_ERROR
)
243 ERR("WSAAsyncSelect failed with error %d\n", WSAGetLastError());
244 /* FIXME: handle error */
249 HRESULT
InternetTransport_Write(InternetTransport
*This
, const char *pvData
,
250 int cbSize
, INETXPORT_COMPLETION_FUNCTION fnCompletion
)
254 if (This
->Status
== IXP_DISCONNECTED
)
255 return IXP_E_NOT_CONNECTED
;
257 if (This
->fnCompletion
)
260 /* FIXME: do this asynchronously */
261 ret
= send(This
->Socket
, pvData
, cbSize
, 0);
262 if (ret
== SOCKET_ERROR
)
264 ERR("send failed with error %d\n", WSAGetLastError());
265 /* FIXME: handle error */
268 fnCompletion((IInternetTransport
*)&This
->u
.vtbl
, NULL
, 0);
273 static LRESULT CALLBACK
InternetTransport_WndProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
277 InternetTransport
*This
= (InternetTransport
*)GetWindowLongPtrW(hwnd
, GWLP_USERDATA
);
280 if (!This
->fnCompletion
)
283 while (This
->iCurrentBufferOffset
< This
->cbBuffer
)
285 if (recv(This
->Socket
, &This
->pBuffer
[This
->iCurrentBufferOffset
], 1, 0) <= 0)
287 if (WSAGetLastError() == WSAEWOULDBLOCK
)
290 ERR("recv failed with error %d\n", WSAGetLastError());
291 /* FIXME: handle error */
294 This
->iCurrentBufferOffset
++;
296 if (This
->iCurrentBufferOffset
== This
->cbBuffer
)
298 INETXPORT_COMPLETION_FUNCTION fnCompletion
= This
->fnCompletion
;
301 This
->fnCompletion
= NULL
;
302 pBuffer
= This
->pBuffer
;
303 This
->pBuffer
= NULL
;
304 fnCompletion((IInternetTransport
*)&This
->u
.vtbl
, pBuffer
,
305 This
->iCurrentBufferOffset
);
306 HeapFree(GetProcessHeap(), 0, pBuffer
);
310 if (WSAAsyncSelect(This
->Socket
, hwnd
, uMsg
, FD_READ
) == SOCKET_ERROR
)
312 ERR("WSAAsyncSelect failed with error %d\n", WSAGetLastError());
313 /* FIXME: handle error */
317 else if (uMsg
== IX_READLINE
)
319 InternetTransport
*This
= (InternetTransport
*)GetWindowLongPtrW(hwnd
, GWLP_USERDATA
);
322 if (!This
->fnCompletion
)
325 while (This
->iCurrentBufferOffset
< This
->cbBuffer
- 1)
330 if (recv(This
->Socket
, &This
->pBuffer
[This
->iCurrentBufferOffset
], 1, 0) <= 0)
332 if (WSAGetLastError() == WSAEWOULDBLOCK
)
335 ERR("recv failed with error %d\n", WSAGetLastError());
336 /* FIXME: handle error */
340 if (This
->pBuffer
[This
->iCurrentBufferOffset
] == '\n')
342 INETXPORT_COMPLETION_FUNCTION fnCompletion
= This
->fnCompletion
;
345 This
->fnCompletion
= NULL
;
346 This
->pBuffer
[This
->iCurrentBufferOffset
++] = '\0';
347 pBuffer
= This
->pBuffer
;
348 This
->pBuffer
= NULL
;
350 fnCompletion((IInternetTransport
*)&This
->u
.vtbl
, pBuffer
,
351 This
->iCurrentBufferOffset
);
353 HeapFree(GetProcessHeap(), 0, pBuffer
);
356 if (This
->pBuffer
[This
->iCurrentBufferOffset
] != '\r')
357 This
->iCurrentBufferOffset
++;
360 FD_SET(This
->Socket
, &infd
);
364 if (This
->iCurrentBufferOffset
== This
->cbBuffer
- 1)
367 if (WSAAsyncSelect(This
->Socket
, hwnd
, uMsg
, FD_READ
) == SOCKET_ERROR
)
369 ERR("WSAAsyncSelect failed with error %d\n", WSAGetLastError());
370 /* FIXME: handle error */
375 return DefWindowProcW(hwnd
, uMsg
, wParam
, lParam
);
378 BOOL
InternetTransport_RegisterClass(HINSTANCE hInstance
)
383 if (WSAStartup(MAKEWORD(2, 2), &wsadata
))
386 memset(&cls
, 0, sizeof(cls
));
387 cls
.hInstance
= hInstance
;
388 cls
.lpfnWndProc
= InternetTransport_WndProc
;
389 cls
.lpszClassName
= wszClassName
;
391 return RegisterClassW(&cls
);
394 void InternetTransport_UnregisterClass(HINSTANCE hInstance
)
396 UnregisterClassW(wszClassName
, hInstance
);