2 * Copyright 2006-2007 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library 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 GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #define NONAMELESSUNION
25 #define NONAMELESSSTRUCT
34 #include "wine/debug.h"
35 #include "wine/unicode.h"
37 #include "mshtml_private.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
41 #define CONTENT_LENGTH "Content-Length"
42 #define UTF16_STR "utf-16"
45 const nsIInputStreamVtbl *lpInputStreamVtbl;
53 #define NSINSTREAM(x) ((nsIInputStream*) &(x)->lpInputStreamVtbl)
56 void (*destroy)(BSCallback*);
57 HRESULT (*start_binding)(BSCallback*);
58 HRESULT (*stop_binding)(BSCallback*,HRESULT);
59 HRESULT (*read_data)(BSCallback*,IStream*);
60 HRESULT (*on_progress)(BSCallback*,ULONG,LPCWSTR);
64 const IBindStatusCallbackVtbl *lpBindStatusCallbackVtbl;
65 const IServiceProviderVtbl *lpServiceProviderVtbl;
66 const IHttpNegotiate2Vtbl *lpHttpNegotiate2Vtbl;
67 const IInternetBindInfoVtbl *lpInternetBindInfoVtbl;
69 const BSCallbackVtbl *vtbl;
87 #define NSINSTREAM_THIS(iface) DEFINE_THIS(nsProtocolStream, InputStream, iface)
89 static nsresult NSAPI nsInputStream_QueryInterface(nsIInputStream *iface, nsIIDRef riid,
92 nsProtocolStream *This = NSINSTREAM_THIS(iface);
96 if(IsEqualGUID(&IID_nsISupports, riid)) {
97 TRACE("(%p)->(IID_nsISupports %p)\n", This, result);
98 *result = NSINSTREAM(This);
99 }else if(IsEqualGUID(&IID_nsIInputStream, riid)) {
100 TRACE("(%p)->(IID_nsIInputStream %p)\n", This, result);
101 *result = NSINSTREAM(This);
105 nsIInputStream_AddRef(NSINSTREAM(This));
109 WARN("unsupported interface %s\n", debugstr_guid(riid));
110 return NS_NOINTERFACE;
113 static nsrefcnt NSAPI nsInputStream_AddRef(nsIInputStream *iface)
115 nsProtocolStream *This = NSINSTREAM_THIS(iface);
116 LONG ref = InterlockedIncrement(&This->ref);
118 TRACE("(%p) ref=%d\n", This, ref);
124 static nsrefcnt NSAPI nsInputStream_Release(nsIInputStream *iface)
126 nsProtocolStream *This = NSINSTREAM_THIS(iface);
127 LONG ref = InterlockedDecrement(&This->ref);
129 TRACE("(%p) ref=%d\n", This, ref);
137 static nsresult NSAPI nsInputStream_Close(nsIInputStream *iface)
139 nsProtocolStream *This = NSINSTREAM_THIS(iface);
140 FIXME("(%p)\n", This);
141 return NS_ERROR_NOT_IMPLEMENTED;
144 static nsresult NSAPI nsInputStream_Available(nsIInputStream *iface, PRUint32 *_retval)
146 nsProtocolStream *This = NSINSTREAM_THIS(iface);
147 FIXME("(%p)->(%p)\n", This, _retval);
148 return NS_ERROR_NOT_IMPLEMENTED;
151 static nsresult NSAPI nsInputStream_Read(nsIInputStream *iface, char *aBuf, PRUint32 aCount,
154 nsProtocolStream *This = NSINSTREAM_THIS(iface);
156 TRACE("(%p)->(%p %d %p)\n", This, aBuf, aCount, _retval);
158 /* Gecko always calls Read with big enough buffer */
159 if(aCount < This->buf_size)
160 FIXME("aCount < This->buf_size\n");
162 *_retval = This->buf_size;
164 memcpy(aBuf, This->buf, This->buf_size);
170 static nsresult NSAPI nsInputStream_ReadSegments(nsIInputStream *iface,
171 nsresult (WINAPI *aWriter)(nsIInputStream*,void*,const char*,PRUint32,PRUint32,PRUint32*),
172 void *aClousure, PRUint32 aCount, PRUint32 *_retval)
174 nsProtocolStream *This = NSINSTREAM_THIS(iface);
175 PRUint32 written = 0;
178 TRACE("(%p)->(%p %p %d %p)\n", This, aWriter, aClousure, aCount, _retval);
183 if(This->buf_size > aCount)
184 FIXME("buf_size > aCount\n");
186 nsres = aWriter(NSINSTREAM(This), aClousure, This->buf, 0, This->buf_size, &written);
188 TRACE("aWritter failed: %08x\n", nsres);
189 else if(written != This->buf_size)
190 FIXME("written %d != buf_size %d\n", written, This->buf_size);
192 This->buf_size -= written;
198 static nsresult NSAPI nsInputStream_IsNonBlocking(nsIInputStream *iface, PRBool *_retval)
200 nsProtocolStream *This = NSINSTREAM_THIS(iface);
201 FIXME("(%p)->(%p)\n", This, _retval);
202 return NS_ERROR_NOT_IMPLEMENTED;
205 #undef NSINSTREAM_THIS
207 static const nsIInputStreamVtbl nsInputStreamVtbl = {
208 nsInputStream_QueryInterface,
209 nsInputStream_AddRef,
210 nsInputStream_Release,
212 nsInputStream_Available,
214 nsInputStream_ReadSegments,
215 nsInputStream_IsNonBlocking
218 static nsProtocolStream *create_nsprotocol_stream(void)
220 nsProtocolStream *ret = heap_alloc(sizeof(nsProtocolStream));
222 ret->lpInputStreamVtbl = &nsInputStreamVtbl;
229 #define STATUSCLB_THIS(iface) DEFINE_THIS(BSCallback, BindStatusCallback, iface)
231 static HRESULT WINAPI BindStatusCallback_QueryInterface(IBindStatusCallback *iface,
232 REFIID riid, void **ppv)
234 BSCallback *This = STATUSCLB_THIS(iface);
237 if(IsEqualGUID(&IID_IUnknown, riid)) {
238 TRACE("(%p)->(IID_IUnknown, %p)\n", This, ppv);
239 *ppv = STATUSCLB(This);
240 }else if(IsEqualGUID(&IID_IBindStatusCallback, riid)) {
241 TRACE("(%p)->(IID_IBindStatusCallback, %p)\n", This, ppv);
242 *ppv = STATUSCLB(This);
243 }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
244 TRACE("(%p)->(IID_IServiceProvider %p)\n", This, ppv);
245 *ppv = SERVPROV(This);
246 }else if(IsEqualGUID(&IID_IHttpNegotiate, riid)) {
247 TRACE("(%p)->(IID_IHttpNegotiate %p)\n", This, ppv);
248 *ppv = HTTPNEG(This);
249 }else if(IsEqualGUID(&IID_IHttpNegotiate2, riid)) {
250 TRACE("(%p)->(IID_IHttpNegotiate2 %p)\n", This, ppv);
251 *ppv = HTTPNEG(This);
252 }else if(IsEqualGUID(&IID_IInternetBindInfo, riid)) {
253 TRACE("(%p)->(IID_IInternetBindInfo %p)\n", This, ppv);
254 *ppv = BINDINFO(This);
258 IBindStatusCallback_AddRef(STATUSCLB(This));
262 TRACE("Unsupported riid = %s\n", debugstr_guid(riid));
263 return E_NOINTERFACE;
266 static ULONG WINAPI BindStatusCallback_AddRef(IBindStatusCallback *iface)
268 BSCallback *This = STATUSCLB_THIS(iface);
269 LONG ref = InterlockedIncrement(&This->ref);
271 TRACE("(%p) ref = %d\n", This, ref);
276 static ULONG WINAPI BindStatusCallback_Release(IBindStatusCallback *iface)
278 BSCallback *This = STATUSCLB_THIS(iface);
279 LONG ref = InterlockedDecrement(&This->ref);
281 TRACE("(%p) ref = %d\n", This, ref);
285 GlobalFree(This->post_data);
287 IMoniker_Release(This->mon);
289 IBinding_Release(This->binding);
290 list_remove(&This->entry);
291 heap_free(This->headers);
293 This->vtbl->destroy(This);
299 static HRESULT WINAPI BindStatusCallback_OnStartBinding(IBindStatusCallback *iface,
300 DWORD dwReserved, IBinding *pbind)
302 BSCallback *This = STATUSCLB_THIS(iface);
304 TRACE("(%p)->(%d %p)\n", This, dwReserved, pbind);
306 IBinding_AddRef(pbind);
307 This->binding = pbind;
310 list_add_head(&This->doc->bindings, &This->entry);
312 return This->vtbl->start_binding(This);
315 static HRESULT WINAPI BindStatusCallback_GetPriority(IBindStatusCallback *iface, LONG *pnPriority)
317 BSCallback *This = STATUSCLB_THIS(iface);
318 FIXME("(%p)->(%p)\n", This, pnPriority);
322 static HRESULT WINAPI BindStatusCallback_OnLowResource(IBindStatusCallback *iface, DWORD reserved)
324 BSCallback *This = STATUSCLB_THIS(iface);
325 FIXME("(%p)->(%d)\n", This, reserved);
329 static HRESULT WINAPI BindStatusCallback_OnProgress(IBindStatusCallback *iface, ULONG ulProgress,
330 ULONG ulProgressMax, ULONG ulStatusCode, LPCWSTR szStatusText)
332 BSCallback *This = STATUSCLB_THIS(iface);
334 TRACE("%p)->(%u %u %u %s)\n", This, ulProgress, ulProgressMax, ulStatusCode,
335 debugstr_w(szStatusText));
337 return This->vtbl->on_progress(This, ulStatusCode, szStatusText);
340 static HRESULT WINAPI BindStatusCallback_OnStopBinding(IBindStatusCallback *iface,
341 HRESULT hresult, LPCWSTR szError)
343 BSCallback *This = STATUSCLB_THIS(iface);
345 TRACE("(%p)->(%08x %s)\n", This, hresult, debugstr_w(szError));
348 IBinding_Release(This->binding);
349 This->binding = NULL;
352 list_remove(&This->entry);
354 return This->vtbl->stop_binding(This, hresult);
357 static HRESULT WINAPI BindStatusCallback_GetBindInfo(IBindStatusCallback *iface,
358 DWORD *grfBINDF, BINDINFO *pbindinfo)
360 BSCallback *This = STATUSCLB_THIS(iface);
363 TRACE("(%p)->(%p %p)\n", This, grfBINDF, pbindinfo);
365 *grfBINDF = This->bindf;
367 size = pbindinfo->cbSize;
368 memset(pbindinfo, 0, size);
369 pbindinfo->cbSize = size;
371 pbindinfo->cbstgmedData = This->post_data_len;
372 pbindinfo->dwCodePage = CP_UTF8;
373 pbindinfo->dwOptions = 0x80000;
375 if(This->post_data) {
376 pbindinfo->dwBindVerb = BINDVERB_POST;
378 pbindinfo->stgmedData.tymed = TYMED_HGLOBAL;
379 pbindinfo->stgmedData.u.hGlobal = This->post_data;
380 pbindinfo->stgmedData.pUnkForRelease = (IUnknown*)STATUSCLB(This);
381 IBindStatusCallback_AddRef(STATUSCLB(This));
387 static HRESULT WINAPI BindStatusCallback_OnDataAvailable(IBindStatusCallback *iface,
388 DWORD grfBSCF, DWORD dwSize, FORMATETC *pformatetc, STGMEDIUM *pstgmed)
390 BSCallback *This = STATUSCLB_THIS(iface);
392 TRACE("(%p)->(%08x %d %p %p)\n", This, grfBSCF, dwSize, pformatetc, pstgmed);
394 return This->vtbl->read_data(This, pstgmed->u.pstm);
397 static HRESULT WINAPI BindStatusCallback_OnObjectAvailable(IBindStatusCallback *iface,
398 REFIID riid, IUnknown *punk)
400 BSCallback *This = STATUSCLB_THIS(iface);
401 FIXME("(%p)->(%s %p)\n", This, debugstr_guid(riid), punk);
405 #undef STATUSCLB_THIS
407 static const IBindStatusCallbackVtbl BindStatusCallbackVtbl = {
408 BindStatusCallback_QueryInterface,
409 BindStatusCallback_AddRef,
410 BindStatusCallback_Release,
411 BindStatusCallback_OnStartBinding,
412 BindStatusCallback_GetPriority,
413 BindStatusCallback_OnLowResource,
414 BindStatusCallback_OnProgress,
415 BindStatusCallback_OnStopBinding,
416 BindStatusCallback_GetBindInfo,
417 BindStatusCallback_OnDataAvailable,
418 BindStatusCallback_OnObjectAvailable
421 #define HTTPNEG_THIS(iface) DEFINE_THIS(BSCallback, HttpNegotiate2, iface)
423 static HRESULT WINAPI HttpNegotiate_QueryInterface(IHttpNegotiate2 *iface,
424 REFIID riid, void **ppv)
426 BSCallback *This = HTTPNEG_THIS(iface);
427 return IBindStatusCallback_QueryInterface(STATUSCLB(This), riid, ppv);
430 static ULONG WINAPI HttpNegotiate_AddRef(IHttpNegotiate2 *iface)
432 BSCallback *This = HTTPNEG_THIS(iface);
433 return IBindStatusCallback_AddRef(STATUSCLB(This));
436 static ULONG WINAPI HttpNegotiate_Release(IHttpNegotiate2 *iface)
438 BSCallback *This = HTTPNEG_THIS(iface);
439 return IBindStatusCallback_Release(STATUSCLB(This));
442 static HRESULT WINAPI HttpNegotiate_BeginningTransaction(IHttpNegotiate2 *iface,
443 LPCWSTR szURL, LPCWSTR szHeaders, DWORD dwReserved, LPWSTR *pszAdditionalHeaders)
445 BSCallback *This = HTTPNEG_THIS(iface);
448 TRACE("(%p)->(%s %s %d %p)\n", This, debugstr_w(szURL), debugstr_w(szHeaders),
449 dwReserved, pszAdditionalHeaders);
452 *pszAdditionalHeaders = NULL;
456 size = (strlenW(This->headers)+1)*sizeof(WCHAR);
457 *pszAdditionalHeaders = CoTaskMemAlloc(size);
458 memcpy(*pszAdditionalHeaders, This->headers, size);
463 static HRESULT WINAPI HttpNegotiate_OnResponse(IHttpNegotiate2 *iface, DWORD dwResponseCode,
464 LPCWSTR szResponseHeaders, LPCWSTR szRequestHeaders, LPWSTR *pszAdditionalRequestHeaders)
466 BSCallback *This = HTTPNEG_THIS(iface);
467 FIXME("(%p)->(%d %s %s %p)\n", This, dwResponseCode, debugstr_w(szResponseHeaders),
468 debugstr_w(szRequestHeaders), pszAdditionalRequestHeaders);
472 static HRESULT WINAPI HttpNegotiate_GetRootSecurityId(IHttpNegotiate2 *iface,
473 BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved)
475 BSCallback *This = HTTPNEG_THIS(iface);
476 FIXME("(%p)->(%p %p %ld)\n", This, pbSecurityId, pcbSecurityId, dwReserved);
482 static const IHttpNegotiate2Vtbl HttpNegotiate2Vtbl = {
483 HttpNegotiate_QueryInterface,
484 HttpNegotiate_AddRef,
485 HttpNegotiate_Release,
486 HttpNegotiate_BeginningTransaction,
487 HttpNegotiate_OnResponse,
488 HttpNegotiate_GetRootSecurityId
491 #define BINDINFO_THIS(iface) DEFINE_THIS(BSCallback, InternetBindInfo, iface)
493 static HRESULT WINAPI InternetBindInfo_QueryInterface(IInternetBindInfo *iface,
494 REFIID riid, void **ppv)
496 BSCallback *This = BINDINFO_THIS(iface);
497 return IBindStatusCallback_QueryInterface(STATUSCLB(This), riid, ppv);
500 static ULONG WINAPI InternetBindInfo_AddRef(IInternetBindInfo *iface)
502 BSCallback *This = BINDINFO_THIS(iface);
503 return IBindStatusCallback_AddRef(STATUSCLB(This));
506 static ULONG WINAPI InternetBindInfo_Release(IInternetBindInfo *iface)
508 BSCallback *This = BINDINFO_THIS(iface);
509 return IBindStatusCallback_Release(STATUSCLB(This));
512 static HRESULT WINAPI InternetBindInfo_GetBindInfo(IInternetBindInfo *iface,
513 DWORD *grfBINDF, BINDINFO *pbindinfo)
515 BSCallback *This = BINDINFO_THIS(iface);
516 FIXME("(%p)->(%p %p)\n", This, grfBINDF, pbindinfo);
520 static HRESULT WINAPI InternetBindInfo_GetBindString(IInternetBindInfo *iface,
521 ULONG ulStringType, LPOLESTR *ppwzStr, ULONG cEl, ULONG *pcElFetched)
523 BSCallback *This = BINDINFO_THIS(iface);
524 FIXME("(%p)->(%u %p %u %p)\n", This, ulStringType, ppwzStr, cEl, pcElFetched);
530 static const IInternetBindInfoVtbl InternetBindInfoVtbl = {
531 InternetBindInfo_QueryInterface,
532 InternetBindInfo_AddRef,
533 InternetBindInfo_Release,
534 InternetBindInfo_GetBindInfo,
535 InternetBindInfo_GetBindString
538 #define SERVPROV_THIS(iface) DEFINE_THIS(BSCallback, ServiceProvider, iface)
540 static HRESULT WINAPI BSCServiceProvider_QueryInterface(IServiceProvider *iface,
541 REFIID riid, void **ppv)
543 BSCallback *This = SERVPROV_THIS(iface);
544 return IBindStatusCallback_QueryInterface(STATUSCLB(This), riid, ppv);
547 static ULONG WINAPI BSCServiceProvider_AddRef(IServiceProvider *iface)
549 BSCallback *This = SERVPROV_THIS(iface);
550 return IBindStatusCallback_AddRef(STATUSCLB(This));
553 static ULONG WINAPI BSCServiceProvider_Release(IServiceProvider *iface)
555 BSCallback *This = SERVPROV_THIS(iface);
556 return IBindStatusCallback_Release(STATUSCLB(This));
559 static HRESULT WINAPI BSCServiceProvider_QueryService(IServiceProvider *iface,
560 REFGUID guidService, REFIID riid, void **ppv)
562 BSCallback *This = SERVPROV_THIS(iface);
563 TRACE("(%p)->(%s %s %p)\n", This, debugstr_guid(guidService), debugstr_guid(riid), ppv);
564 return E_NOINTERFACE;
569 static const IServiceProviderVtbl ServiceProviderVtbl = {
570 BSCServiceProvider_QueryInterface,
571 BSCServiceProvider_AddRef,
572 BSCServiceProvider_Release,
573 BSCServiceProvider_QueryService
576 static void init_bscallback(BSCallback *This, const BSCallbackVtbl *vtbl, IMoniker *mon, DWORD bindf)
578 This->lpBindStatusCallbackVtbl = &BindStatusCallbackVtbl;
579 This->lpServiceProviderVtbl = &ServiceProviderVtbl;
580 This->lpHttpNegotiate2Vtbl = &HttpNegotiate2Vtbl;
581 This->lpInternetBindInfoVtbl = &InternetBindInfoVtbl;
586 list_init(&This->entry);
589 IMoniker_AddRef(mon);
593 /* Calls undocumented 84 cmd of CGID_ShellDocView */
594 static void call_docview_84(HTMLDocument *doc)
596 IOleCommandTarget *olecmd;
603 hres = IOleClientSite_QueryInterface(doc->client, &IID_IOleCommandTarget, (void**)&olecmd);
608 hres = IOleCommandTarget_Exec(olecmd, &CGID_ShellDocView, 84, 0, NULL, &var);
609 IOleCommandTarget_Release(olecmd);
610 if(SUCCEEDED(hres) && V_VT(&var) != VT_NULL)
611 FIXME("handle result\n");
614 static void parse_post_data(nsIInputStream *post_data_stream, LPWSTR *headers_ret,
615 HGLOBAL *post_data_ret, ULONG *post_data_len_ret)
617 PRUint32 post_data_len = 0, available = 0;
618 HGLOBAL post_data = NULL;
619 LPWSTR headers = NULL;
620 DWORD headers_len = 0, len;
621 const char *ptr, *ptr2, *post_data_end;
623 nsIInputStream_Available(post_data_stream, &available);
624 post_data = GlobalAlloc(0, available+1);
625 nsIInputStream_Read(post_data_stream, post_data, available, &post_data_len);
627 TRACE("post_data = %s\n", debugstr_an(post_data, post_data_len));
629 ptr = ptr2 = post_data;
630 post_data_end = (const char*)post_data+post_data_len;
632 while(ptr < post_data_end && (*ptr != '\r' || ptr[1] != '\n')) {
633 while(ptr < post_data_end && (*ptr != '\r' || ptr[1] != '\n'))
643 if(ptr-ptr2 >= sizeof(CONTENT_LENGTH)
644 && CompareStringA(LOCALE_SYSTEM_DEFAULT, NORM_IGNORECASE,
645 CONTENT_LENGTH, sizeof(CONTENT_LENGTH)-1,
646 ptr2, sizeof(CONTENT_LENGTH)-1) == CSTR_EQUAL) {
651 len = MultiByteToWideChar(CP_ACP, 0, ptr2, ptr-ptr2, NULL, 0);
654 headers = heap_realloc(headers,(headers_len+len+1)*sizeof(WCHAR));
656 headers = heap_alloc((len+1)*sizeof(WCHAR));
658 len = MultiByteToWideChar(CP_ACP, 0, ptr2, ptr-ptr2, headers+headers_len, -1);
664 headers[headers_len] = 0;
665 *headers_ret = headers;
667 if(ptr >= post_data_end-2) {
668 GlobalFree(post_data);
675 post_data_len -= ptr-(const char*)post_data;
676 memmove(post_data, ptr, post_data_len);
677 post_data = GlobalReAlloc(post_data, post_data_len+1, 0);
680 *post_data_ret = post_data;
681 *post_data_len_ret = post_data_len;
684 HRESULT start_binding(HTMLDocument *doc, BSCallback *bscallback, IBindCtx *bctx)
689 bscallback->doc = doc;
690 call_docview_84(doc);
693 RegisterBindStatusCallback(bctx, STATUSCLB(bscallback), NULL, 0);
694 IBindCtx_AddRef(bctx);
696 hres = CreateAsyncBindCtx(0, STATUSCLB(bscallback), NULL, &bctx);
698 WARN("CreateAsyncBindCtx failed: %08x\n", hres);
699 bscallback->vtbl->stop_binding(bscallback, hres);
704 hres = IMoniker_BindToStorage(bscallback->mon, bctx, NULL, &IID_IStream, (void**)&str);
705 IBindCtx_Release(bctx);
707 WARN("BindToStorage failed: %08x\n", hres);
708 bscallback->vtbl->stop_binding(bscallback, hres);
713 IStream_Release(str);
715 IMoniker_Release(bscallback->mon);
716 bscallback->mon = NULL;
729 #define BUFFERBSC_THIS(bsc) ((BufferBSC*) bsc)
731 static void BufferBSC_destroy(BSCallback *bsc)
733 BufferBSC *This = BUFFERBSC_THIS(bsc);
735 heap_free(This->buf);
739 static HRESULT BufferBSC_start_binding(BSCallback *bsc)
744 static HRESULT BufferBSC_stop_binding(BSCallback *bsc, HRESULT result)
746 BufferBSC *This = BUFFERBSC_THIS(bsc);
751 heap_free(This->buf);
759 static HRESULT BufferBSC_read_data(BSCallback *bsc, IStream *stream)
761 BufferBSC *This = BUFFERBSC_THIS(bsc);
767 This->buf = heap_alloc(This->size);
771 if(This->bsc.readed == This->size) {
773 This->buf = heap_realloc(This->buf, This->size);
777 hres = IStream_Read(stream, This->buf+This->bsc.readed, This->size-This->bsc.readed, &readed);
778 This->bsc.readed += readed;
779 }while(hres == S_OK);
784 static HRESULT BufferBSC_on_progress(BSCallback *bsc, ULONG status_code, LPCWSTR status_text)
789 #undef BUFFERBSC_THIS
791 static const BSCallbackVtbl BufferBSCVtbl = {
793 BufferBSC_start_binding,
794 BufferBSC_stop_binding,
796 BufferBSC_on_progress,
800 static BufferBSC *create_bufferbsc(IMoniker *mon)
802 BufferBSC *ret = heap_alloc_zero(sizeof(*ret));
804 init_bscallback(&ret->bsc, &BufferBSCVtbl, mon, 0);
810 HRESULT bind_mon_to_buffer(HTMLDocument *doc, IMoniker *mon, void **buf)
812 BufferBSC *bsc = create_bufferbsc(mon);
817 hres = start_binding(doc, &bsc->bsc, NULL);
818 if(SUCCEEDED(hres)) {
820 if(SUCCEEDED(hres)) {
827 IBindStatusCallback_Release(STATUSCLB(&bsc->bsc));
832 struct nsChannelBSC {
835 nsChannel *nschannel;
836 nsIStreamListener *nslistener;
837 nsISupports *nscontext;
839 nsProtocolStream *nsstream;
842 static HRESULT read_stream_data(nsChannelBSC *This, IStream *stream)
847 if(!This->nslistener) {
853 hres = IStream_Read(stream, buf, sizeof(buf), &read);
854 }while(hres == S_OK && read);
860 This->nsstream = create_nsprotocol_stream();
863 hres = IStream_Read(stream, This->nsstream->buf, sizeof(This->nsstream->buf),
864 &This->nsstream->buf_size);
865 if(!This->nsstream->buf_size)
868 if(!This->bsc.readed && This->nsstream->buf_size >= 2 && *(WORD*)This->nsstream->buf == 0xfeff) {
869 This->nschannel->charset = heap_alloc(sizeof(UTF16_STR));
870 memcpy(This->nschannel->charset, UTF16_STR, sizeof(UTF16_STR));
873 if(!This->bsc.readed) {
874 nsres = nsIStreamListener_OnStartRequest(This->nslistener,
875 (nsIRequest*)NSCHANNEL(This->nschannel), This->nscontext);
877 FIXME("OnStartRequest failed: %08x\n", nsres);
879 /* events are reset when a new document URI is loaded, so re-initialise them here */
880 if(This->bsc.doc && This->bsc.doc->bscallback == This && This->bsc.doc->nscontainer)
881 init_nsevents(This->bsc.doc->nscontainer);
884 This->bsc.readed += This->nsstream->buf_size;
886 nsres = nsIStreamListener_OnDataAvailable(This->nslistener,
887 (nsIRequest*)NSCHANNEL(This->nschannel), This->nscontext,
888 NSINSTREAM(This->nsstream), This->bsc.readed-This->nsstream->buf_size,
889 This->nsstream->buf_size);
891 ERR("OnDataAvailable failed: %08x\n", nsres);
893 if(This->nsstream->buf_size)
894 FIXME("buffer is not empty!\n");
895 }while(hres == S_OK);
900 static void on_stop_nsrequest(nsChannelBSC *This)
902 if(!This->nslistener)
905 nsIStreamListener_OnStopRequest(This->nslistener, (nsIRequest*)NSCHANNEL(This->nschannel),
906 This->nscontext, NS_OK);
909 static void add_nsrequest(nsChannelBSC *This)
913 if(!This->nschannel || !This->nschannel->load_group)
916 nsres = nsILoadGroup_AddRequest(This->nschannel->load_group,
917 (nsIRequest*)NSCHANNEL(This->nschannel), This->nscontext);
920 ERR("AddRequest failed:%08x\n", nsres);
923 #define NSCHANNELBSC_THIS(bsc) ((nsChannelBSC*) bsc)
925 static void nsChannelBSC_destroy(BSCallback *bsc)
927 nsChannelBSC *This = NSCHANNELBSC_THIS(bsc);
930 nsIChannel_Release(NSCHANNEL(This->nschannel));
932 nsIStreamListener_Release(This->nslistener);
934 nsISupports_Release(This->nscontext);
936 nsIInputStream_Release(NSINSTREAM(This->nsstream));
940 static HRESULT nsChannelBSC_start_binding(BSCallback *bsc)
942 nsChannelBSC *This = NSCHANNELBSC_THIS(bsc);
949 static HRESULT nsChannelBSC_stop_binding(BSCallback *bsc, HRESULT result)
951 nsChannelBSC *This = NSCHANNELBSC_THIS(bsc);
953 on_stop_nsrequest(This);
955 if(This->nslistener) {
956 if(This->nschannel->load_group) {
959 nsres = nsILoadGroup_RemoveRequest(This->nschannel->load_group,
960 (nsIRequest*)NSCHANNEL(This->nschannel), NULL, NS_OK);
962 ERR("RemoveRequest failed: %08x\n", nsres);
969 if(This->bsc.doc && This->bsc.doc->bscallback == This && !This->bsc.doc->nscontainer) {
970 task_t *task = heap_alloc(sizeof(task_t));
972 task->doc = This->bsc.doc;
973 task->task_id = TASK_PARSECOMPLETE;
977 * This should be done in the worker thread that parses HTML,
978 * but we don't have such thread.
986 static HRESULT nsChannelBSC_read_data(BSCallback *bsc, IStream *stream)
988 nsChannelBSC *This = NSCHANNELBSC_THIS(bsc);
990 return read_stream_data(This, stream);
993 static HRESULT nsChannelBSC_on_progress(BSCallback *bsc, ULONG status_code, LPCWSTR status_text)
995 nsChannelBSC *This = NSCHANNELBSC_THIS(bsc);
997 switch(status_code) {
998 case BINDSTATUS_MIMETYPEAVAILABLE:
1002 heap_free(This->nschannel->content_type);
1003 This->nschannel->content_type = heap_strdupWtoA(status_text);
1009 #undef NSCHANNELBSC_THIS
1011 static const BSCallbackVtbl nsChannelBSCVtbl = {
1012 nsChannelBSC_destroy,
1013 nsChannelBSC_start_binding,
1014 nsChannelBSC_stop_binding,
1015 nsChannelBSC_read_data,
1016 nsChannelBSC_on_progress,
1019 nsChannelBSC *create_channelbsc(IMoniker *mon)
1021 nsChannelBSC *ret = heap_alloc_zero(sizeof(*ret));
1023 init_bscallback(&ret->bsc, &nsChannelBSCVtbl, mon, BINDF_ASYNCHRONOUS | BINDF_ASYNCSTORAGE | BINDF_PULLDATA);
1028 IMoniker *get_channelbsc_mon(nsChannelBSC *This)
1031 IMoniker_AddRef(This->bsc.mon);
1032 return This->bsc.mon;
1035 void set_document_bscallback(HTMLDocument *doc, nsChannelBSC *callback)
1039 if(doc->bscallback) {
1040 if(doc->bscallback->bsc.binding)
1041 IBinding_Abort(doc->bscallback->bsc.binding);
1042 doc->bscallback->bsc.doc = NULL;
1043 IBindStatusCallback_Release(STATUSCLB(&doc->bscallback->bsc));
1046 LIST_FOR_EACH_ENTRY(iter, &doc->bindings, BSCallback, entry) {
1048 list_remove(&iter->entry);
1051 doc->bscallback = callback;
1054 IBindStatusCallback_AddRef(STATUSCLB(&callback->bsc));
1055 callback->bsc.doc = doc;
1059 HRESULT channelbsc_load_stream(nsChannelBSC *bscallback, IStream *stream)
1063 const char text_html[] = "text/html";
1065 add_nsrequest(bscallback);
1067 if(bscallback->nschannel)
1068 bscallback->nschannel->content_type = heap_strdupA(text_html);
1070 hres = read_stream_data(bscallback, stream);
1071 IBindStatusCallback_OnStopBinding(STATUSCLB(&bscallback->bsc), hres, ERROR_SUCCESS);
1076 void channelbsc_set_channel(nsChannelBSC *This, nsChannel *channel, nsIStreamListener *listener, nsISupports *context)
1078 nsIChannel_AddRef(NSCHANNEL(channel));
1079 This->nschannel = channel;
1081 nsIStreamListener_AddRef(listener);
1082 This->nslistener = listener;
1085 nsISupports_AddRef(context);
1086 This->nscontext = context;
1090 void hlink_frame_navigate(HTMLDocument *doc, IHlinkFrame *hlink_frame,
1091 LPCWSTR uri, nsIInputStream *post_data_stream, DWORD hlnf)
1093 BSCallback *callback;
1099 callback = &create_channelbsc(NULL)->bsc;
1101 if(post_data_stream) {
1102 parse_post_data(post_data_stream, &callback->headers, &callback->post_data,
1103 &callback->post_data_len);
1104 TRACE("headers = %s post_data = %s\n", debugstr_w(callback->headers),
1105 debugstr_an(callback->post_data, callback->post_data_len));
1108 hr = CreateAsyncBindCtx(0, STATUSCLB(callback), NULL, &bindctx);
1110 IBindStatusCallback_Release(STATUSCLB(callback));
1114 hr = CoCreateInstance(&CLSID_StdHlink, NULL, CLSCTX_INPROC_SERVER, &IID_IHlink, (LPVOID*)&hlink);
1116 IBindCtx_Release(bindctx);
1117 IBindStatusCallback_Release(STATUSCLB(callback));
1121 hr = CreateURLMoniker(NULL, uri, &mon);
1122 if (SUCCEEDED(hr)) {
1123 IHlink_SetMonikerReference(hlink, 0, mon, NULL);
1125 if(hlnf & HLNF_OPENINNEWWINDOW) {
1126 static const WCHAR wszBlank[] = {'_','b','l','a','n','k',0};
1127 IHlink_SetTargetFrameName(hlink, wszBlank); /* FIXME */
1130 IHlinkFrame_Navigate(hlink_frame, hlnf, bindctx, STATUSCLB(callback), hlink);
1132 IMoniker_Release(mon);
1135 IBindCtx_Release(bindctx);
1136 IBindStatusCallback_Release(STATUSCLB(callback));