2 * Copyright 2008 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
31 #include "wine/debug.h"
33 #include "mshtml_private.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
38 static HRESULT get_url(HTMLLocation *This, const WCHAR **ret)
40 if(!This->window || !This->window->doc_obj || !This->window->doc_obj->url) {
41 FIXME("No current URL\n");
45 *ret = This->window->doc_obj->url;
49 static HRESULT get_url_components(HTMLLocation *This, URL_COMPONENTSW *url)
54 hres = get_url(This, &doc_url);
58 if(!InternetCrackUrlW(doc_url, 0, 0, url)) {
59 FIXME("InternetCrackUrlW failed: 0x%08x\n", GetLastError());
67 #define HTMLLOCATION_THIS(iface) DEFINE_THIS(HTMLLocation, HTMLLocation, iface)
69 static HRESULT WINAPI HTMLLocation_QueryInterface(IHTMLLocation *iface, REFIID riid, void **ppv)
71 HTMLLocation *This = HTMLLOCATION_THIS(iface);
75 if(IsEqualGUID(&IID_IUnknown, riid)) {
76 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
77 *ppv = HTMLLOCATION(This);
78 }else if(IsEqualGUID(&IID_IHTMLLocation, riid)) {
79 TRACE("(%p)->(IID_IHTMLLocation %p)\n", This, ppv);
80 *ppv = HTMLLOCATION(This);
81 }else if(dispex_query_interface(&This->dispex, riid, ppv)) {
82 return *ppv ? S_OK : E_NOINTERFACE;
86 IUnknown_AddRef((IUnknown*)*ppv);
90 WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
94 static ULONG WINAPI HTMLLocation_AddRef(IHTMLLocation *iface)
96 HTMLLocation *This = HTMLLOCATION_THIS(iface);
97 LONG ref = InterlockedIncrement(&This->ref);
99 TRACE("(%p) ref=%d\n", This, ref);
104 static ULONG WINAPI HTMLLocation_Release(IHTMLLocation *iface)
106 HTMLLocation *This = HTMLLOCATION_THIS(iface);
107 LONG ref = InterlockedDecrement(&This->ref);
109 TRACE("(%p) ref=%d\n", This, ref);
113 This->window->location = NULL;
114 release_dispex(&This->dispex);
121 static HRESULT WINAPI HTMLLocation_GetTypeInfoCount(IHTMLLocation *iface, UINT *pctinfo)
123 HTMLLocation *This = HTMLLOCATION_THIS(iface);
124 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This->dispex), pctinfo);
127 static HRESULT WINAPI HTMLLocation_GetTypeInfo(IHTMLLocation *iface, UINT iTInfo,
128 LCID lcid, ITypeInfo **ppTInfo)
130 HTMLLocation *This = HTMLLOCATION_THIS(iface);
131 return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->dispex), iTInfo, lcid, ppTInfo);
134 static HRESULT WINAPI HTMLLocation_GetIDsOfNames(IHTMLLocation *iface, REFIID riid,
135 LPOLESTR *rgszNames, UINT cNames,
136 LCID lcid, DISPID *rgDispId)
138 HTMLLocation *This = HTMLLOCATION_THIS(iface);
139 return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->dispex), riid, rgszNames, cNames, lcid, rgDispId);
142 static HRESULT WINAPI HTMLLocation_Invoke(IHTMLLocation *iface, DISPID dispIdMember,
143 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
144 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
146 HTMLLocation *This = HTMLLOCATION_THIS(iface);
147 return IDispatchEx_Invoke(DISPATCHEX(&This->dispex), dispIdMember, riid, lcid,
148 wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
151 static HRESULT WINAPI HTMLLocation_put_href(IHTMLLocation *iface, BSTR v)
153 HTMLLocation *This = HTMLLOCATION_THIS(iface);
155 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
157 if(!This->window || !This->window->doc) {
158 FIXME("No document available\n");
162 return navigate_url(This->window->doc, v);
165 static HRESULT WINAPI HTMLLocation_get_href(IHTMLLocation *iface, BSTR *p)
167 HTMLLocation *This = HTMLLOCATION_THIS(iface);
171 TRACE("(%p)->(%p)\n", This, p);
176 hres = get_url(This, &url);
180 *p = SysAllocString(url);
181 return *p ? S_OK : E_OUTOFMEMORY;
184 static HRESULT WINAPI HTMLLocation_put_protocol(IHTMLLocation *iface, BSTR v)
186 HTMLLocation *This = HTMLLOCATION_THIS(iface);
187 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
191 static HRESULT WINAPI HTMLLocation_get_protocol(IHTMLLocation *iface, BSTR *p)
193 HTMLLocation *This = HTMLLOCATION_THIS(iface);
194 FIXME("(%p)->(%p)\n", This, p);
202 static HRESULT WINAPI HTMLLocation_put_host(IHTMLLocation *iface, BSTR v)
204 HTMLLocation *This = HTMLLOCATION_THIS(iface);
205 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
209 static HRESULT WINAPI HTMLLocation_get_host(IHTMLLocation *iface, BSTR *p)
211 HTMLLocation *This = HTMLLOCATION_THIS(iface);
212 FIXME("(%p)->(%p)\n", This, p);
220 static HRESULT WINAPI HTMLLocation_put_hostname(IHTMLLocation *iface, BSTR v)
222 HTMLLocation *This = HTMLLOCATION_THIS(iface);
223 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
227 static HRESULT WINAPI HTMLLocation_get_hostname(IHTMLLocation *iface, BSTR *p)
229 HTMLLocation *This = HTMLLOCATION_THIS(iface);
230 FIXME("(%p)->(%p)\n", This, p);
238 static HRESULT WINAPI HTMLLocation_put_port(IHTMLLocation *iface, BSTR v)
240 HTMLLocation *This = HTMLLOCATION_THIS(iface);
241 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
245 static HRESULT WINAPI HTMLLocation_get_port(IHTMLLocation *iface, BSTR *p)
247 HTMLLocation *This = HTMLLOCATION_THIS(iface);
248 URL_COMPONENTSW url = {sizeof(URL_COMPONENTSW)};
251 TRACE("(%p)->(%p)\n", This, p);
256 hres = get_url_components(This, &url);
261 const WCHAR format[] = {'%','d',0};
263 snprintfW(buf, 6, format, url.nPort);
264 *p = SysAllocString(buf);
266 const WCHAR empty[] = {0};
267 *p = SysAllocString(empty);
271 return E_OUTOFMEMORY;
275 static HRESULT WINAPI HTMLLocation_put_pathname(IHTMLLocation *iface, BSTR v)
277 HTMLLocation *This = HTMLLOCATION_THIS(iface);
278 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
282 static HRESULT WINAPI HTMLLocation_get_pathname(IHTMLLocation *iface, BSTR *p)
284 HTMLLocation *This = HTMLLOCATION_THIS(iface);
285 WCHAR buf[INTERNET_MAX_PATH_LENGTH];
286 URL_COMPONENTSW url = {sizeof(url)};
287 const WCHAR *doc_url;
291 TRACE("(%p)->(%p)\n", This, p);
296 hres = get_url(This, &doc_url);
300 hres = CoInternetParseUrl(doc_url, PARSE_PATH_FROM_URL, 0, buf, sizeof(buf), &size, 0);
301 if(SUCCEEDED(hres)) {
302 *p = SysAllocString(buf);
304 return E_OUTOFMEMORY;
308 url.dwUrlPathLength = 1;
309 hres = get_url_components(This, &url);
313 if(!url.dwUrlPathLength) {
318 *p = SysAllocStringLen(url.lpszUrlPath, url.dwUrlPathLength);
320 return E_OUTOFMEMORY;
324 static HRESULT WINAPI HTMLLocation_put_search(IHTMLLocation *iface, BSTR v)
326 HTMLLocation *This = HTMLLOCATION_THIS(iface);
327 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
331 static HRESULT WINAPI HTMLLocation_get_search(IHTMLLocation *iface, BSTR *p)
333 HTMLLocation *This = HTMLLOCATION_THIS(iface);
334 FIXME("(%p)->(%p)\n", This, p);
342 static HRESULT WINAPI HTMLLocation_put_hash(IHTMLLocation *iface, BSTR v)
344 HTMLLocation *This = HTMLLOCATION_THIS(iface);
345 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
349 static HRESULT WINAPI HTMLLocation_get_hash(IHTMLLocation *iface, BSTR *p)
351 HTMLLocation *This = HTMLLOCATION_THIS(iface);
352 FIXME("(%p)->(%p)\n", This, p);
360 static HRESULT WINAPI HTMLLocation_reload(IHTMLLocation *iface, VARIANT_BOOL flag)
362 HTMLLocation *This = HTMLLOCATION_THIS(iface);
363 FIXME("(%p)->(%x)\n", This, flag);
367 static HRESULT WINAPI HTMLLocation_replace(IHTMLLocation *iface, BSTR bstr)
369 HTMLLocation *This = HTMLLOCATION_THIS(iface);
370 FIXME("(%p)->(%s)\n", This, debugstr_w(bstr));
374 static HRESULT WINAPI HTMLLocation_assign(IHTMLLocation *iface, BSTR bstr)
376 HTMLLocation *This = HTMLLOCATION_THIS(iface);
377 FIXME("(%p)->(%s)\n", This, debugstr_w(bstr));
381 static HRESULT WINAPI HTMLLocation_toString(IHTMLLocation *iface, BSTR *String)
383 HTMLLocation *This = HTMLLOCATION_THIS(iface);
384 FIXME("(%p)->(%p)\n", This, String);
388 #undef HTMLLOCATION_THIS
390 static const IHTMLLocationVtbl HTMLLocationVtbl = {
391 HTMLLocation_QueryInterface,
393 HTMLLocation_Release,
394 HTMLLocation_GetTypeInfoCount,
395 HTMLLocation_GetTypeInfo,
396 HTMLLocation_GetIDsOfNames,
398 HTMLLocation_put_href,
399 HTMLLocation_get_href,
400 HTMLLocation_put_protocol,
401 HTMLLocation_get_protocol,
402 HTMLLocation_put_host,
403 HTMLLocation_get_host,
404 HTMLLocation_put_hostname,
405 HTMLLocation_get_hostname,
406 HTMLLocation_put_port,
407 HTMLLocation_get_port,
408 HTMLLocation_put_pathname,
409 HTMLLocation_get_pathname,
410 HTMLLocation_put_search,
411 HTMLLocation_get_search,
412 HTMLLocation_put_hash,
413 HTMLLocation_get_hash,
415 HTMLLocation_replace,
417 HTMLLocation_toString
420 static const tid_t HTMLLocation_iface_tids[] = {
424 static dispex_static_data_t HTMLLocation_dispex = {
426 DispHTMLLocation_tid,
428 HTMLLocation_iface_tids
432 HRESULT HTMLLocation_Create(HTMLWindow *window, HTMLLocation **ret)
434 HTMLLocation *location;
436 location = heap_alloc(sizeof(*location));
438 return E_OUTOFMEMORY;
440 location->lpHTMLLocationVtbl = &HTMLLocationVtbl;
442 location->window = window;
444 init_dispex(&location->dispex, (IUnknown*)HTMLLOCATION(location), &HTMLLocation_dispex);