2 * Copyright 2005 Jacek Caban
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
25 #define NONAMELESSUNION
26 #define NONAMELESSSTRUCT
34 #include "wine/debug.h"
35 #include "wine/unicode.h"
37 #include "mshtml_private.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
41 /**********************************************************
42 * IPersistMoniker implementation
45 #define PERSISTMON_THIS(iface) DEFINE_THIS(HTMLDocument, PersistMoniker, iface)
47 static HRESULT WINAPI PersistMoniker_QueryInterface(IPersistMoniker *iface, REFIID riid,
50 HTMLDocument *This = PERSISTMON_THIS(iface);
51 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
54 static ULONG WINAPI PersistMoniker_AddRef(IPersistMoniker *iface)
56 HTMLDocument *This = PERSISTMON_THIS(iface);
57 return IHTMLDocument2_AddRef(HTMLDOC(This));
60 static ULONG WINAPI PersistMoniker_Release(IPersistMoniker *iface)
62 HTMLDocument *This = PERSISTMON_THIS(iface);
63 return IHTMLDocument2_Release(HTMLDOC(This));
66 static HRESULT WINAPI PersistMoniker_GetClassID(IPersistMoniker *iface, CLSID *pClassID)
68 HTMLDocument *This = PERSISTMON_THIS(iface);
69 return IPersist_GetClassID(PERSIST(This), pClassID);
72 static HRESULT WINAPI PersistMoniker_IsDirty(IPersistMoniker *iface)
74 HTMLDocument *This = PERSISTMON_THIS(iface);
75 FIXME("(%p)\n", This);
79 static nsIInputStream *get_post_data_stream(IBindCtx *bctx)
81 nsIInputStream *ret = NULL;
82 IBindStatusCallback *callback;
83 IHttpNegotiate *http_negotiate;
86 DWORD post_len = 0, headers_len = 0;
87 LPWSTR headers = NULL;
88 WCHAR emptystr[] = {0};
92 static WCHAR _BSCB_Holder_[] =
93 {'_','B','S','C','B','_','H','o','l','d','e','r','_',0};
96 /* FIXME: This should be done in URLMoniker */
100 hres = IBindCtx_GetObjectParam(bctx, _BSCB_Holder_, (IUnknown**)&callback);
104 hres = IBindStatusCallback_QueryInterface(callback, &IID_IHttpNegotiate,
105 (void**)&http_negotiate);
106 if(SUCCEEDED(hres)) {
107 hres = IHttpNegotiate_BeginningTransaction(http_negotiate, emptystr,
108 emptystr, 0, &headers);
109 IHttpNegotiate_Release(http_negotiate);
111 if(SUCCEEDED(hres) && headers)
112 headers_len = WideCharToMultiByte(CP_ACP, 0, headers, -1, NULL, 0, NULL, NULL);
115 memset(&bindinfo, 0, sizeof(bindinfo));
116 bindinfo.cbSize = sizeof(bindinfo);
118 hres = IBindStatusCallback_GetBindInfo(callback, &bindf, &bindinfo);
120 if(SUCCEEDED(hres) && bindinfo.dwBindVerb == BINDVERB_POST)
121 post_len = bindinfo.cbstgmedData;
123 if(headers_len || post_len) {
124 int len = headers_len ? headers_len-1 : 0;
126 static const char content_length[] = "Content-Length: %u\r\n\r\n";
128 data = mshtml_alloc(headers_len+post_len+sizeof(content_length)+8);
131 WideCharToMultiByte(CP_ACP, 0, headers, -1, data, -1, NULL, NULL);
132 CoTaskMemFree(headers);
136 sprintf(data+len, content_length, post_len);
139 memcpy(data+len, bindinfo.stgmedData.u.hGlobal, post_len);
142 TRACE("data = %s\n", debugstr_an(data, len+post_len));
144 ret = create_nsstream(data, len+post_len);
147 ReleaseBindInfo(&bindinfo);
148 IBindStatusCallback_Release(callback);
153 static HRESULT WINAPI PersistMoniker_Load(IPersistMoniker *iface, BOOL fFullyAvailable,
154 IMoniker *pimkName, LPBC pibc, DWORD grfMode)
156 HTMLDocument *This = PERSISTMON_THIS(iface);
157 BSCallback *bscallback;
163 TRACE("(%p)->(%x %p %p %08x)\n", This, fFullyAvailable, pimkName, pibc, grfMode);
166 IUnknown *unk = NULL;
170 * "__PrecreatedObject"
171 * "BIND_CONTEXT_PARAM"
172 * "__HTMLLOADOPTIONS"
176 * "_ITransData_Object_"
180 IBindCtx_GetObjectParam(pibc, (LPOLESTR)SZ_HTML_CLIENTSITE_OBJECTPARAM, &unk);
182 IOleClientSite *client = NULL;
184 hres = IUnknown_QueryInterface(unk, &IID_IOleClientSite, (void**)&client);
185 if(SUCCEEDED(hres)) {
186 TRACE("Got client site %p\n", client);
187 IOleObject_SetClientSite(OLEOBJ(This), client);
188 IOleClientSite_Release(client);
191 IUnknown_Release(unk);
195 This->readystate = READYSTATE_LOADING;
196 call_property_onchanged(This->cp_propnotif, DISPID_READYSTATE);
198 HTMLDocument_LockContainer(This, TRUE);
200 hres = IMoniker_GetDisplayName(pimkName, pibc, NULL, &url);
202 WARN("GetDiaplayName failed: %08x\n", hres);
206 TRACE("got url: %s\n", debugstr_w(url));
209 IOleCommandTarget *cmdtrg = NULL;
211 hres = IOleClientSite_QueryInterface(This->client, &IID_IOleCommandTarget,
213 if(SUCCEEDED(hres)) {
218 IOleCommandTarget_Exec(cmdtrg, &CGID_ShellDocView, 37, 0, &var, NULL);
222 bscallback = create_bscallback(pimkName);
224 task = mshtml_alloc(sizeof(task_t));
227 task->task_id = TASK_SETDOWNLOADSTATE;
232 if(This->nscontainer) {
233 nsIInputStream *post_data_stream = get_post_data_stream(pibc);
235 This->nscontainer->bscallback = bscallback;
236 nsres = nsIWebNavigation_LoadURI(This->nscontainer->navigation, url,
237 LOAD_FLAGS_NONE, NULL, post_data_stream, NULL);
238 This->nscontainer->bscallback = NULL;
241 nsIInputStream_Release(post_data_stream);
243 if(!bscallback->nschannel)
244 ERR("bscallback->nschannel == NULL\n");
246 if(NS_SUCCEEDED(nsres)) {
247 /* FIXME: don't return here (URL Moniker needs to be good enough) */
249 IBindStatusCallback_Release(STATUSCLB(bscallback));
252 }else if(nsres != WINE_NS_LOAD_FROM_MONIKER) {
253 WARN("LoadURI failed: %08x\n", nsres);
257 set_document_bscallback(This, bscallback);
258 hres = start_binding(bscallback);
260 IBindStatusCallback_Release(STATUSCLB(bscallback));
266 static HRESULT WINAPI PersistMoniker_Save(IPersistMoniker *iface, IMoniker *pimkName,
267 LPBC pbc, BOOL fRemember)
269 HTMLDocument *This = PERSISTMON_THIS(iface);
270 FIXME("(%p)->(%p %p %x)\n", This, pimkName, pbc, fRemember);
274 static HRESULT WINAPI PersistMoniker_SaveCompleted(IPersistMoniker *iface, IMoniker *pimkName, LPBC pibc)
276 HTMLDocument *This = PERSISTMON_THIS(iface);
277 FIXME("(%p)->(%p %p)\n", This, pimkName, pibc);
281 static HRESULT WINAPI PersistMoniker_GetCurMoniker(IPersistMoniker *iface, IMoniker **ppimkName)
283 HTMLDocument *This = PERSISTMON_THIS(iface);
284 FIXME("(%p)->(%p)\n", This, ppimkName);
288 static const IPersistMonikerVtbl PersistMonikerVtbl = {
289 PersistMoniker_QueryInterface,
290 PersistMoniker_AddRef,
291 PersistMoniker_Release,
292 PersistMoniker_GetClassID,
293 PersistMoniker_IsDirty,
296 PersistMoniker_SaveCompleted,
297 PersistMoniker_GetCurMoniker
300 /**********************************************************
301 * IMonikerProp implementation
304 #define MONPROP_THIS(iface) DEFINE_THIS(HTMLDocument, MonikerProp, iface)
306 static HRESULT WINAPI MonikerProp_QueryInterface(IMonikerProp *iface, REFIID riid, void **ppvObject)
308 HTMLDocument *This = MONPROP_THIS(iface);
309 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
312 static ULONG WINAPI MonikerProp_AddRef(IMonikerProp *iface)
314 HTMLDocument *This = MONPROP_THIS(iface);
315 return IHTMLDocument2_AddRef(HTMLDOC(This));
318 static ULONG WINAPI MonikerProp_Release(IMonikerProp *iface)
320 HTMLDocument *This = MONPROP_THIS(iface);
321 return IHTMLDocument_Release(HTMLDOC(This));
324 static HRESULT WINAPI MonikerProp_PutProperty(IMonikerProp *iface, MONIKERPROPERTY mkp, LPCWSTR val)
326 HTMLDocument *This = MONPROP_THIS(iface);
327 FIXME("(%p)->(%d %s)\n", This, mkp, debugstr_w(val));
331 static const IMonikerPropVtbl MonikerPropVtbl = {
332 MonikerProp_QueryInterface,
335 MonikerProp_PutProperty
338 /**********************************************************
339 * IPersistFile implementation
342 #define PERSISTFILE_THIS(iface) DEFINE_THIS(HTMLDocument, PersistFile, iface)
344 static HRESULT WINAPI PersistFile_QueryInterface(IPersistFile *iface, REFIID riid, void **ppvObject)
346 HTMLDocument *This = PERSISTFILE_THIS(iface);
347 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
350 static ULONG WINAPI PersistFile_AddRef(IPersistFile *iface)
352 HTMLDocument *This = PERSISTFILE_THIS(iface);
353 return IHTMLDocument2_AddRef(HTMLDOC(This));
356 static ULONG WINAPI PersistFile_Release(IPersistFile *iface)
358 HTMLDocument *This = PERSISTFILE_THIS(iface);
359 return IHTMLDocument2_Release(HTMLDOC(This));
362 static HRESULT WINAPI PersistFile_GetClassID(IPersistFile *iface, CLSID *pClassID)
364 HTMLDocument *This = PERSISTFILE_THIS(iface);
366 TRACE("(%p)->(%p)\n", This, pClassID);
371 memcpy(pClassID, &CLSID_HTMLDocument, sizeof(CLSID));
375 static HRESULT WINAPI PersistFile_IsDirty(IPersistFile *iface)
377 HTMLDocument *This = PERSISTFILE_THIS(iface);
378 FIXME("(%p)\n", This);
382 static HRESULT WINAPI PersistFile_Load(IPersistFile *iface, LPCOLESTR pszFileName, DWORD dwMode)
384 HTMLDocument *This = PERSISTFILE_THIS(iface);
385 FIXME("(%p)->(%s %08x)\n", This, debugstr_w(pszFileName), dwMode);
389 static HRESULT WINAPI PersistFile_Save(IPersistFile *iface, LPCOLESTR pszFileName, BOOL fRemember)
391 HTMLDocument *This = PERSISTFILE_THIS(iface);
392 FIXME("(%p)->(%s %x)\n", This, debugstr_w(pszFileName), fRemember);
396 static HRESULT WINAPI PersistFile_SaveCompleted(IPersistFile *iface, LPCOLESTR pszFileName)
398 HTMLDocument *This = PERSISTFILE_THIS(iface);
399 FIXME("(%p)->(%s)\n", This, debugstr_w(pszFileName));
403 static HRESULT WINAPI PersistFile_GetCurFile(IPersistFile *iface, LPOLESTR *pszFileName)
405 HTMLDocument *This = PERSISTFILE_THIS(iface);
406 FIXME("(%p)->(%p)\n", This, pszFileName);
410 static const IPersistFileVtbl PersistFileVtbl = {
411 PersistFile_QueryInterface,
414 PersistFile_GetClassID,
418 PersistFile_SaveCompleted,
419 PersistFile_GetCurFile
422 #define PERSTRINIT_THIS(iface) DEFINE_THIS(HTMLDocument, PersistStreamInit, iface)
424 static HRESULT WINAPI PersistStreamInit_QueryInterface(IPersistStreamInit *iface,
425 REFIID riid, void **ppv)
427 HTMLDocument *This = PERSTRINIT_THIS(iface);
428 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppv);
431 static ULONG WINAPI PersistStreamInit_AddRef(IPersistStreamInit *iface)
433 HTMLDocument *This = PERSTRINIT_THIS(iface);
434 return IHTMLDocument2_AddRef(HTMLDOC(This));
437 static ULONG WINAPI PersistStreamInit_Release(IPersistStreamInit *iface)
439 HTMLDocument *This = PERSTRINIT_THIS(iface);
440 return IHTMLDocument2_AddRef(HTMLDOC(This));
443 static HRESULT WINAPI PersistStreamInit_GetClassID(IPersistStreamInit *iface, CLSID *pClassID)
445 HTMLDocument *This = PERSTRINIT_THIS(iface);
446 return IPersist_GetClassID(PERSIST(This), pClassID);
449 static HRESULT WINAPI PersistStreamInit_IsDirty(IPersistStreamInit *iface)
451 HTMLDocument *This = PERSTRINIT_THIS(iface);
452 FIXME("(%p)\n", This);
456 static HRESULT WINAPI PersistStreamInit_Load(IPersistStreamInit *iface, LPSTREAM pStm)
458 HTMLDocument *This = PERSTRINIT_THIS(iface);
459 FIXME("(%p)->(%p)\n", This, pStm);
463 static HRESULT WINAPI PersistStreamInit_Save(IPersistStreamInit *iface, LPSTREAM pStm,
466 HTMLDocument *This = PERSTRINIT_THIS(iface);
467 nsIDOMDocument *nsdoc;
472 DWORD len, written=0;
476 WARN("(%p)->(%p %x) needs more work\n", This, pStm, fClearDirty);
478 if(!This->nscontainer)
481 nsres = nsIWebNavigation_GetDocument(This->nscontainer->navigation, &nsdoc);
482 if(NS_FAILED(nsres)) {
483 ERR("GetDocument failed: %08x\n", nsres);
487 nsres = nsIDOMDocument_QueryInterface(nsdoc, &IID_nsIDOMNode, (void**)&nsnode);
488 nsIDOMDocument_Release(nsdoc);
489 if(NS_FAILED(nsres)) {
490 ERR("Could not get nsIDOMNode failed: %08x\n", nsres);
494 nsAString_Init(&nsstr, NULL);
495 nsnode_to_nsstring(nsnode, &nsstr);
496 nsIDOMNode_Release(nsnode);
498 nsAString_GetData(&nsstr, &strw, NULL);
500 len = WideCharToMultiByte(CP_ACP, 0, strw, -1, NULL, 0, NULL, NULL);
501 str = mshtml_alloc(len);
502 WideCharToMultiByte(CP_ACP, 0, strw, -1, str, len, NULL, NULL);
504 nsAString_Finish(&nsstr);
506 ERR("%s\n", debugstr_a(str));
508 hres = IStream_Write(pStm, str, len, &written);
510 FIXME("Write failed: %08x\n", hres);
517 static HRESULT WINAPI PersistStreamInit_GetSizeMax(IPersistStreamInit *iface,
518 ULARGE_INTEGER *pcbSize)
520 HTMLDocument *This = PERSTRINIT_THIS(iface);
521 FIXME("(%p)->(%p)\n", This, pcbSize);
525 static HRESULT WINAPI PersistStreamInit_InitNew(IPersistStreamInit *iface)
527 HTMLDocument *This = PERSTRINIT_THIS(iface);
528 FIXME("(%p)\n", This);
532 #undef PERSTRINIT_THIS
534 static const IPersistStreamInitVtbl PersistStreamInitVtbl = {
535 PersistStreamInit_QueryInterface,
536 PersistStreamInit_AddRef,
537 PersistStreamInit_Release,
538 PersistStreamInit_GetClassID,
539 PersistStreamInit_IsDirty,
540 PersistStreamInit_Load,
541 PersistStreamInit_Save,
542 PersistStreamInit_GetSizeMax,
543 PersistStreamInit_InitNew
546 void HTMLDocument_Persist_Init(HTMLDocument *This)
548 This->lpPersistMonikerVtbl = &PersistMonikerVtbl;
549 This->lpPersistFileVtbl = &PersistFileVtbl;
550 This->lpMonikerPropVtbl = &MonikerPropVtbl;
551 This->lpPersistStreamInitVtbl = &PersistStreamInitVtbl;
553 This->bscallback = NULL;