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);
137 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
141 static HRESULT WINAPI HTMLLocation_get_href(IHTMLLocation *iface, BSTR *p)
143 HTMLLocation *This = HTMLLOCATION_THIS(iface);
147 TRACE("(%p)->(%p)\n", This, p);
152 hres = get_url(This, &url);
156 *p = SysAllocString(url);
157 return *p ? S_OK : E_OUTOFMEMORY;
160 static HRESULT WINAPI HTMLLocation_put_protocol(IHTMLLocation *iface, BSTR v)
162 HTMLLocation *This = HTMLLOCATION_THIS(iface);
163 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
167 static HRESULT WINAPI HTMLLocation_get_protocol(IHTMLLocation *iface, BSTR *p)
169 HTMLLocation *This = HTMLLOCATION_THIS(iface);
170 FIXME("(%p)->(%p)\n", This, p);
174 static HRESULT WINAPI HTMLLocation_put_host(IHTMLLocation *iface, BSTR v)
176 HTMLLocation *This = HTMLLOCATION_THIS(iface);
177 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
181 static HRESULT WINAPI HTMLLocation_get_host(IHTMLLocation *iface, BSTR *p)
183 HTMLLocation *This = HTMLLOCATION_THIS(iface);
184 FIXME("(%p)->(%p)\n", This, p);
188 static HRESULT WINAPI HTMLLocation_put_hostname(IHTMLLocation *iface, BSTR v)
190 HTMLLocation *This = HTMLLOCATION_THIS(iface);
191 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
195 static HRESULT WINAPI HTMLLocation_get_hostname(IHTMLLocation *iface, BSTR *p)
197 HTMLLocation *This = HTMLLOCATION_THIS(iface);
198 FIXME("(%p)->(%p)\n", This, p);
202 static HRESULT WINAPI HTMLLocation_put_port(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_port(IHTMLLocation *iface, BSTR *p)
211 HTMLLocation *This = HTMLLOCATION_THIS(iface);
212 FIXME("(%p)->(%p)\n", This, p);
216 static HRESULT WINAPI HTMLLocation_put_pathname(IHTMLLocation *iface, BSTR v)
218 HTMLLocation *This = HTMLLOCATION_THIS(iface);
219 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
223 static HRESULT WINAPI HTMLLocation_get_pathname(IHTMLLocation *iface, BSTR *p)
225 HTMLLocation *This = HTMLLOCATION_THIS(iface);
226 WCHAR buf[INTERNET_MAX_PATH_LENGTH];
227 URL_COMPONENTSW url = {sizeof(url)};
228 const WCHAR *doc_url;
232 TRACE("(%p)->(%p)\n", This, p);
234 hres = get_url(This, &doc_url);
238 hres = CoInternetParseUrl(doc_url, PARSE_PATH_FROM_URL, 0, buf, sizeof(buf), &size, 0);
239 if(SUCCEEDED(hres)) {
240 *p = SysAllocString(buf);
242 return E_OUTOFMEMORY;
246 url.dwUrlPathLength = 1;
247 if(!InternetCrackUrlW(doc_url, 0, 0, &url)) {
248 FIXME("InternetCrackUrl failed\n");
252 if(!url.dwUrlPathLength) {
257 *p = SysAllocStringLen(url.lpszUrlPath, url.dwUrlPathLength);
259 return E_OUTOFMEMORY;
263 static HRESULT WINAPI HTMLLocation_put_search(IHTMLLocation *iface, BSTR v)
265 HTMLLocation *This = HTMLLOCATION_THIS(iface);
266 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
270 static HRESULT WINAPI HTMLLocation_get_search(IHTMLLocation *iface, BSTR *p)
272 HTMLLocation *This = HTMLLOCATION_THIS(iface);
273 FIXME("(%p)->(%p)\n", This, p);
277 static HRESULT WINAPI HTMLLocation_put_hash(IHTMLLocation *iface, BSTR v)
279 HTMLLocation *This = HTMLLOCATION_THIS(iface);
280 FIXME("(%p)->(%s)\n", This, debugstr_w(v));
284 static HRESULT WINAPI HTMLLocation_get_hash(IHTMLLocation *iface, BSTR *p)
286 HTMLLocation *This = HTMLLOCATION_THIS(iface);
287 FIXME("(%p)->(%p)\n", This, p);
291 static HRESULT WINAPI HTMLLocation_reload(IHTMLLocation *iface, VARIANT_BOOL flag)
293 HTMLLocation *This = HTMLLOCATION_THIS(iface);
294 FIXME("(%p)->(%x)\n", This, flag);
298 static HRESULT WINAPI HTMLLocation_replace(IHTMLLocation *iface, BSTR bstr)
300 HTMLLocation *This = HTMLLOCATION_THIS(iface);
301 FIXME("(%p)->(%s)\n", This, debugstr_w(bstr));
305 static HRESULT WINAPI HTMLLocation_assign(IHTMLLocation *iface, BSTR bstr)
307 HTMLLocation *This = HTMLLOCATION_THIS(iface);
308 FIXME("(%p)->(%s)\n", This, debugstr_w(bstr));
312 static HRESULT WINAPI HTMLLocation_toString(IHTMLLocation *iface, BSTR *String)
314 HTMLLocation *This = HTMLLOCATION_THIS(iface);
315 FIXME("(%p)->(%p)\n", This, String);
319 static HRESULT HTMLLocation_value(IUnknown *iface, LCID lcid, WORD flags, DISPPARAMS *params,
320 VARIANT *res, EXCEPINFO *ei, IServiceProvider *caller)
322 HTMLLocation *This = HTMLLOCATION_THIS(iface);
325 TRACE("(%p)\n", This);
328 case DISPATCH_PROPERTYGET: {
331 hres = IHTMLLocation_get_href(HTMLLOCATION(This), &str);
340 FIXME("unimplemented flags %x\n", flags);
347 #undef HTMLLOCATION_THIS
349 static const IHTMLLocationVtbl HTMLLocationVtbl = {
350 HTMLLocation_QueryInterface,
352 HTMLLocation_Release,
353 HTMLLocation_GetTypeInfoCount,
354 HTMLLocation_GetTypeInfo,
355 HTMLLocation_GetIDsOfNames,
357 HTMLLocation_put_href,
358 HTMLLocation_get_href,
359 HTMLLocation_put_protocol,
360 HTMLLocation_get_protocol,
361 HTMLLocation_put_host,
362 HTMLLocation_get_host,
363 HTMLLocation_put_hostname,
364 HTMLLocation_get_hostname,
365 HTMLLocation_put_port,
366 HTMLLocation_get_port,
367 HTMLLocation_put_pathname,
368 HTMLLocation_get_pathname,
369 HTMLLocation_put_search,
370 HTMLLocation_get_search,
371 HTMLLocation_put_hash,
372 HTMLLocation_get_hash,
374 HTMLLocation_replace,
376 HTMLLocation_toString
379 static const dispex_static_data_vtbl_t HTMLLocation_dispex_vtbl = {
385 static const tid_t HTMLLocation_iface_tids[] = {
389 static dispex_static_data_t HTMLLocation_dispex = {
390 &HTMLLocation_dispex_vtbl,
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);