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;
50 #define HTMLLOCATION_THIS(iface) DEFINE_THIS(HTMLLocation, HTMLLocation, iface)
52 static HRESULT WINAPI HTMLLocation_QueryInterface(IHTMLLocation *iface, REFIID riid, void **ppv)
54 HTMLLocation *This = HTMLLOCATION_THIS(iface);
58 if(IsEqualGUID(&IID_IUnknown, riid)) {
59 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
60 *ppv = HTMLLOCATION(This);
61 }else if(IsEqualGUID(&IID_IHTMLLocation, riid)) {
62 TRACE("(%p)->(IID_IHTMLLocation %p)\n", This, ppv);
63 *ppv = HTMLLOCATION(This);
64 }else if(dispex_query_interface(&This->dispex, riid, ppv)) {
65 return *ppv ? S_OK : E_NOINTERFACE;
69 IUnknown_AddRef((IUnknown*)*ppv);
73 WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
77 static ULONG WINAPI HTMLLocation_AddRef(IHTMLLocation *iface)
79 HTMLLocation *This = HTMLLOCATION_THIS(iface);
80 LONG ref = InterlockedIncrement(&This->ref);
82 TRACE("(%p) ref=%d\n", This, ref);
87 static ULONG WINAPI HTMLLocation_Release(IHTMLLocation *iface)
89 HTMLLocation *This = HTMLLOCATION_THIS(iface);
90 LONG ref = InterlockedDecrement(&This->ref);
92 TRACE("(%p) ref=%d\n", This, ref);
96 This->window->location = NULL;
97 release_dispex(&This->dispex);
104 static HRESULT WINAPI HTMLLocation_GetTypeInfoCount(IHTMLLocation *iface, UINT *pctinfo)
106 HTMLLocation *This = HTMLLOCATION_THIS(iface);
107 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This->dispex), pctinfo);
110 static HRESULT WINAPI HTMLLocation_GetTypeInfo(IHTMLLocation *iface, UINT iTInfo,
111 LCID lcid, ITypeInfo **ppTInfo)
113 HTMLLocation *This = HTMLLOCATION_THIS(iface);
114 return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->dispex), iTInfo, lcid, ppTInfo);
117 static HRESULT WINAPI HTMLLocation_GetIDsOfNames(IHTMLLocation *iface, REFIID riid,
118 LPOLESTR *rgszNames, UINT cNames,
119 LCID lcid, DISPID *rgDispId)
121 HTMLLocation *This = HTMLLOCATION_THIS(iface);
122 return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->dispex), riid, rgszNames, cNames, lcid, rgDispId);
125 static HRESULT WINAPI HTMLLocation_Invoke(IHTMLLocation *iface, DISPID dispIdMember,
126 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
127 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
129 HTMLLocation *This = HTMLLOCATION_THIS(iface);
130 return IDispatchEx_Invoke(DISPATCHEX(&This->dispex), dispIdMember, riid, lcid,
131 wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
134 static HRESULT WINAPI HTMLLocation_put_href(IHTMLLocation *iface, BSTR v)
136 HTMLLocation *This = HTMLLOCATION_THIS(iface);
138 TRACE("(%p)->(%s)\n", This, debugstr_w(v));
140 if(!This->window || !This->window->doc) {
141 FIXME("No document available\n");
145 return navigate_url(This->window->doc, v);
148 static HRESULT WINAPI HTMLLocation_get_href(IHTMLLocation *iface, BSTR *p)
150 HTMLLocation *This = HTMLLOCATION_THIS(iface);
154 TRACE("(%p)->(%p)\n", This, p);
159 hres = get_url(This, &url);
163 *p = SysAllocString(url);
164 return *p ? S_OK : E_OUTOFMEMORY;
167 static HRESULT WINAPI HTMLLocation_put_protocol(IHTMLLocation *iface, BSTR v)
169 HTMLLocation *This = HTMLLOCATION_THIS(iface);
170 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
174 static HRESULT WINAPI HTMLLocation_get_protocol(IHTMLLocation *iface, BSTR *p)
176 HTMLLocation *This = HTMLLOCATION_THIS(iface);
177 FIXME("(%p)->(%p)\n", This, p);
185 static HRESULT WINAPI HTMLLocation_put_host(IHTMLLocation *iface, BSTR v)
187 HTMLLocation *This = HTMLLOCATION_THIS(iface);
188 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
192 static HRESULT WINAPI HTMLLocation_get_host(IHTMLLocation *iface, BSTR *p)
194 HTMLLocation *This = HTMLLOCATION_THIS(iface);
195 FIXME("(%p)->(%p)\n", This, p);
203 static HRESULT WINAPI HTMLLocation_put_hostname(IHTMLLocation *iface, BSTR v)
205 HTMLLocation *This = HTMLLOCATION_THIS(iface);
206 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
210 static HRESULT WINAPI HTMLLocation_get_hostname(IHTMLLocation *iface, BSTR *p)
212 HTMLLocation *This = HTMLLOCATION_THIS(iface);
213 FIXME("(%p)->(%p)\n", This, p);
221 static HRESULT WINAPI HTMLLocation_put_port(IHTMLLocation *iface, BSTR v)
223 HTMLLocation *This = HTMLLOCATION_THIS(iface);
224 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
228 static HRESULT WINAPI HTMLLocation_get_port(IHTMLLocation *iface, BSTR *p)
230 HTMLLocation *This = HTMLLOCATION_THIS(iface);
231 FIXME("(%p)->(%p)\n", This, p);
239 static HRESULT WINAPI HTMLLocation_put_pathname(IHTMLLocation *iface, BSTR v)
241 HTMLLocation *This = HTMLLOCATION_THIS(iface);
242 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
246 static HRESULT WINAPI HTMLLocation_get_pathname(IHTMLLocation *iface, BSTR *p)
248 HTMLLocation *This = HTMLLOCATION_THIS(iface);
249 WCHAR buf[INTERNET_MAX_PATH_LENGTH];
250 URL_COMPONENTSW url = {sizeof(url)};
251 const WCHAR *doc_url;
255 TRACE("(%p)->(%p)\n", This, p);
260 hres = get_url(This, &doc_url);
264 hres = CoInternetParseUrl(doc_url, PARSE_PATH_FROM_URL, 0, buf, sizeof(buf), &size, 0);
265 if(SUCCEEDED(hres)) {
266 *p = SysAllocString(buf);
268 return E_OUTOFMEMORY;
272 url.dwUrlPathLength = 1;
273 if(!InternetCrackUrlW(doc_url, 0, 0, &url)) {
274 FIXME("InternetCrackUrl failed\n");
278 if(!url.dwUrlPathLength) {
283 *p = SysAllocStringLen(url.lpszUrlPath, url.dwUrlPathLength);
285 return E_OUTOFMEMORY;
289 static HRESULT WINAPI HTMLLocation_put_search(IHTMLLocation *iface, BSTR v)
291 HTMLLocation *This = HTMLLOCATION_THIS(iface);
292 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
296 static HRESULT WINAPI HTMLLocation_get_search(IHTMLLocation *iface, BSTR *p)
298 HTMLLocation *This = HTMLLOCATION_THIS(iface);
299 FIXME("(%p)->(%p)\n", This, p);
307 static HRESULT WINAPI HTMLLocation_put_hash(IHTMLLocation *iface, BSTR v)
309 HTMLLocation *This = HTMLLOCATION_THIS(iface);
310 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
314 static HRESULT WINAPI HTMLLocation_get_hash(IHTMLLocation *iface, BSTR *p)
316 HTMLLocation *This = HTMLLOCATION_THIS(iface);
317 FIXME("(%p)->(%p)\n", This, p);
325 static HRESULT WINAPI HTMLLocation_reload(IHTMLLocation *iface, VARIANT_BOOL flag)
327 HTMLLocation *This = HTMLLOCATION_THIS(iface);
328 FIXME("(%p)->(%x)\n", This, flag);
332 static HRESULT WINAPI HTMLLocation_replace(IHTMLLocation *iface, BSTR bstr)
334 HTMLLocation *This = HTMLLOCATION_THIS(iface);
335 FIXME("(%p)->(%s)\n", This, debugstr_w(bstr));
339 static HRESULT WINAPI HTMLLocation_assign(IHTMLLocation *iface, BSTR bstr)
341 HTMLLocation *This = HTMLLOCATION_THIS(iface);
342 FIXME("(%p)->(%s)\n", This, debugstr_w(bstr));
346 static HRESULT WINAPI HTMLLocation_toString(IHTMLLocation *iface, BSTR *String)
348 HTMLLocation *This = HTMLLOCATION_THIS(iface);
349 FIXME("(%p)->(%p)\n", This, String);
353 #undef HTMLLOCATION_THIS
355 static const IHTMLLocationVtbl HTMLLocationVtbl = {
356 HTMLLocation_QueryInterface,
358 HTMLLocation_Release,
359 HTMLLocation_GetTypeInfoCount,
360 HTMLLocation_GetTypeInfo,
361 HTMLLocation_GetIDsOfNames,
363 HTMLLocation_put_href,
364 HTMLLocation_get_href,
365 HTMLLocation_put_protocol,
366 HTMLLocation_get_protocol,
367 HTMLLocation_put_host,
368 HTMLLocation_get_host,
369 HTMLLocation_put_hostname,
370 HTMLLocation_get_hostname,
371 HTMLLocation_put_port,
372 HTMLLocation_get_port,
373 HTMLLocation_put_pathname,
374 HTMLLocation_get_pathname,
375 HTMLLocation_put_search,
376 HTMLLocation_get_search,
377 HTMLLocation_put_hash,
378 HTMLLocation_get_hash,
380 HTMLLocation_replace,
382 HTMLLocation_toString
385 static const tid_t HTMLLocation_iface_tids[] = {
389 static dispex_static_data_t HTMLLocation_dispex = {
391 DispHTMLLocation_tid,
393 HTMLLocation_iface_tids
397 HRESULT HTMLLocation_Create(HTMLWindow *window, HTMLLocation **ret)
399 HTMLLocation *location;
401 location = heap_alloc(sizeof(*location));
403 return E_OUTOFMEMORY;
405 location->lpHTMLLocationVtbl = &HTMLLocationVtbl;
407 location->window = window;
409 init_dispex(&location->dispex, (IUnknown*)HTMLLOCATION(location), &HTMLLocation_dispex);