2006-02-09 12:17:08 +01:00
|
|
|
/*
|
2007-02-09 20:19:13 +01:00
|
|
|
* Copyright 2006-2007 Jacek Caban for CodeWeavers
|
2006-02-09 12:17:08 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2006-02-09 12:17:08 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
2007-02-09 20:19:13 +01:00
|
|
|
#include "winreg.h"
|
2006-02-09 12:17:08 +01:00
|
|
|
#include "ole2.h"
|
2006-02-09 12:19:33 +01:00
|
|
|
#include "shlguid.h"
|
2007-02-09 20:17:16 +01:00
|
|
|
#include "wininet.h"
|
2007-02-09 20:19:13 +01:00
|
|
|
#include "shlwapi.h"
|
2006-02-09 12:17:08 +01:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
|
|
|
|
#include "mshtml_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
|
|
|
|
2006-02-09 12:19:33 +01:00
|
|
|
#define LOAD_INITIAL_DOCUMENT_URI 0x80000
|
|
|
|
|
2006-02-09 12:17:08 +01:00
|
|
|
#define NS_IOSERVICE_CLASSNAME "nsIOService"
|
|
|
|
#define NS_IOSERVICE_CONTRACTID "@mozilla.org/network/io-service;1"
|
|
|
|
|
2006-02-24 20:31:12 +01:00
|
|
|
static const IID NS_IOSERVICE_CID =
|
2006-02-09 12:17:08 +01:00
|
|
|
{0x9ac9e770, 0x18bc, 0x11d3, {0x93, 0x37, 0x00, 0x10, 0x4b, 0xa0, 0xfd, 0x40}};
|
|
|
|
|
|
|
|
static nsIIOService *nsio = NULL;
|
2008-12-18 14:08:13 +01:00
|
|
|
static nsINetUtil *net_util;
|
2006-02-09 12:17:08 +01:00
|
|
|
|
2008-02-20 21:31:07 +01:00
|
|
|
static const WCHAR about_blankW[] = {'a','b','o','u','t',':','b','l','a','n','k',0};
|
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
typedef struct {
|
|
|
|
const nsIWineURIVtbl *lpWineURIVtbl;
|
|
|
|
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
nsIURI *uri;
|
2009-08-27 11:31:14 +02:00
|
|
|
nsIURL *nsurl;
|
2006-02-09 12:18:18 +01:00
|
|
|
NSContainer *container;
|
2009-10-26 23:02:50 +01:00
|
|
|
windowref_t *window_ref;
|
2007-02-09 20:17:16 +01:00
|
|
|
LPWSTR wine_url;
|
2006-12-21 23:32:25 +01:00
|
|
|
PRBool is_doc_uri;
|
2007-02-10 18:59:38 +01:00
|
|
|
BOOL use_wine_url;
|
2006-02-09 12:18:18 +01:00
|
|
|
} nsURI;
|
|
|
|
|
|
|
|
#define NSURI(x) ((nsIURI*) &(x)->lpWineURIVtbl)
|
2007-02-09 20:19:13 +01:00
|
|
|
#define NSWINEURI(x) ((nsIWineURI*) &(x)->lpWineURIVtbl)
|
2006-02-09 12:18:18 +01:00
|
|
|
|
2009-10-26 23:02:50 +01:00
|
|
|
static nsresult create_uri(nsIURI*,HTMLWindow*,NSContainer*,nsIWineURI**);
|
2006-02-24 20:31:12 +01:00
|
|
|
|
2009-08-27 11:31:14 +02:00
|
|
|
static const char *debugstr_nsacstr(const nsACString *nsstr)
|
|
|
|
{
|
|
|
|
const char *data;
|
|
|
|
|
|
|
|
nsACString_GetData(nsstr, &data);
|
|
|
|
return debugstr_a(data);
|
|
|
|
}
|
|
|
|
|
2009-09-14 00:36:09 +02:00
|
|
|
HRESULT nsuri_to_url(LPCWSTR nsuri, BOOL ret_empty, BSTR *ret)
|
2008-10-13 21:50:37 +02:00
|
|
|
{
|
|
|
|
const WCHAR *ptr = nsuri;
|
|
|
|
|
|
|
|
static const WCHAR wine_prefixW[] = {'w','i','n','e',':'};
|
|
|
|
|
|
|
|
if(!strncmpW(nsuri, wine_prefixW, sizeof(wine_prefixW)/sizeof(WCHAR)))
|
|
|
|
ptr += sizeof(wine_prefixW)/sizeof(WCHAR);
|
|
|
|
|
2009-09-14 00:36:09 +02:00
|
|
|
if(*ptr || ret_empty) {
|
|
|
|
*ret = SysAllocString(ptr);
|
|
|
|
if(!*ret)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}else {
|
|
|
|
*ret = NULL;
|
|
|
|
}
|
2008-10-13 21:50:37 +02:00
|
|
|
|
|
|
|
TRACE("%s -> %s\n", debugstr_w(nsuri), debugstr_w(*ret));
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-16 22:09:17 +02:00
|
|
|
static BOOL exec_shldocvw_67(HTMLDocumentObj *doc, LPCWSTR url)
|
2006-02-09 12:19:33 +01:00
|
|
|
{
|
|
|
|
IOleCommandTarget *cmdtrg = NULL;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
hres = IOleClientSite_QueryInterface(doc->client, &IID_IOleCommandTarget, (void**)&cmdtrg);
|
2006-02-09 12:19:33 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
VARIANT varUrl, varRes;
|
|
|
|
|
|
|
|
V_VT(&varUrl) = VT_BSTR;
|
|
|
|
V_BSTR(&varUrl) = SysAllocString(url);
|
|
|
|
V_VT(&varRes) = VT_BOOL;
|
|
|
|
|
|
|
|
hres = IOleCommandTarget_Exec(cmdtrg, &CGID_ShellDocView, 67, 0, &varUrl, &varRes);
|
|
|
|
|
|
|
|
IOleCommandTarget_Release(cmdtrg);
|
|
|
|
SysFreeString(V_BSTR(&varUrl));
|
|
|
|
|
|
|
|
if(SUCCEEDED(hres) && !V_BOOL(&varRes)) {
|
|
|
|
TRACE("got VARIANT_FALSE, do not load\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2007-09-29 03:41:10 +02:00
|
|
|
static BOOL before_async_open(nsChannel *channel, NSContainer *container)
|
2006-02-13 13:26:00 +01:00
|
|
|
{
|
2009-09-16 22:09:17 +02:00
|
|
|
HTMLDocumentObj *doc = container->doc;
|
2006-03-01 22:04:51 +01:00
|
|
|
DWORD hlnf = 0;
|
2007-09-29 03:41:10 +02:00
|
|
|
LPCWSTR uri;
|
2006-02-13 13:26:00 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
2007-09-29 03:41:10 +02:00
|
|
|
nsIWineURI_GetWineURL(channel->uri, &uri);
|
|
|
|
if(!uri) {
|
|
|
|
ERR("GetWineURL returned NULL\n");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-03-01 22:04:51 +01:00
|
|
|
if(!doc) {
|
|
|
|
NSContainer *container_iter = container;
|
|
|
|
|
|
|
|
hlnf = HLNF_OPENINNEWWINDOW;
|
|
|
|
while(!container_iter->doc)
|
|
|
|
container_iter = container_iter->parent;
|
|
|
|
doc = container_iter->doc;
|
|
|
|
}
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
if(!doc->client)
|
2008-01-10 12:53:14 +01:00
|
|
|
return TRUE;
|
|
|
|
|
2006-03-01 22:04:51 +01:00
|
|
|
if(!hlnf && !exec_shldocvw_67(doc, uri))
|
2006-02-13 13:26:00 +01:00
|
|
|
return FALSE;
|
|
|
|
|
2009-10-11 21:11:03 +02:00
|
|
|
hres = hlink_frame_navigate(&doc->basedoc, uri, channel->post_data_stream, hlnf);
|
|
|
|
return hres != S_OK;
|
2006-02-13 13:26:00 +01:00
|
|
|
}
|
|
|
|
|
2009-12-01 22:50:19 +01:00
|
|
|
static inline BOOL is_http_channel(nsChannel *This)
|
|
|
|
{
|
|
|
|
return This->url_scheme == URL_SCHEME_HTTP || This->url_scheme == URL_SCHEME_HTTP;
|
|
|
|
}
|
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
#define NSCHANNEL_THIS(iface) DEFINE_THIS(nsChannel, HttpChannel, iface)
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_QueryInterface(nsIHttpChannel *iface, nsIIDRef riid, nsQIResult result)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_nsISupports, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsISupports %p)\n", This, result);
|
|
|
|
*result = NSCHANNEL(This);
|
|
|
|
}else if(IsEqualGUID(&IID_nsIRequest, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsIRequest %p)\n", This, result);
|
|
|
|
*result = NSCHANNEL(This);
|
|
|
|
}else if(IsEqualGUID(&IID_nsIChannel, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsIChannel %p)\n", This, result);
|
|
|
|
*result = NSCHANNEL(This);
|
2009-08-22 19:37:30 +02:00
|
|
|
}else if(IsEqualGUID(&IID_nsIHttpChannel, riid)) {
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(IID_nsIHttpChannel %p)\n", This, result);
|
2009-12-01 22:50:19 +01:00
|
|
|
*result = is_http_channel(This) ? NSHTTPCHANNEL(This) : NULL;
|
2006-02-10 14:49:41 +01:00
|
|
|
}else if(IsEqualGUID(&IID_nsIUploadChannel, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsIUploadChannel %p)\n", This, result);
|
|
|
|
*result = NSUPCHANNEL(This);
|
2009-08-22 19:37:30 +02:00
|
|
|
}else if(IsEqualGUID(&IID_nsIHttpChannelInternal, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsIHttpChannelInternal %p)\n", This, result);
|
2009-12-01 22:50:19 +01:00
|
|
|
*result = is_http_channel(This) ? NSHTTPINTERNAL(This) : NULL;
|
2009-08-22 19:37:30 +02:00
|
|
|
}else {
|
|
|
|
TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), result);
|
|
|
|
*result = NULL;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(*result) {
|
|
|
|
nsIChannel_AddRef(NSCHANNEL(This));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-02-20 11:13:37 +01:00
|
|
|
return NS_NOINTERFACE;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsChannel_AddRef(nsIHttpChannel *iface)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
nsrefcnt ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
2006-02-09 12:19:13 +01:00
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsChannel_Release(nsIHttpChannel *iface)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
if(!ref) {
|
|
|
|
nsIWineURI_Release(This->uri);
|
2006-02-20 11:13:37 +01:00
|
|
|
if(This->channel)
|
|
|
|
nsIChannel_Release(This->channel);
|
2006-02-09 12:19:13 +01:00
|
|
|
if(This->http_channel)
|
|
|
|
nsIHttpChannel_Release(This->http_channel);
|
2009-08-22 19:37:30 +02:00
|
|
|
if(This->http_channel_internal)
|
|
|
|
nsIHttpChannel_Release(This->http_channel_internal);
|
2008-12-22 01:10:47 +01:00
|
|
|
if(This->owner)
|
|
|
|
nsISupports_Release(This->owner);
|
2006-02-10 14:49:41 +01:00
|
|
|
if(This->post_data_stream)
|
|
|
|
nsIInputStream_Release(This->post_data_stream);
|
2006-02-20 11:13:37 +01:00
|
|
|
if(This->load_group)
|
|
|
|
nsILoadGroup_Release(This->load_group);
|
|
|
|
if(This->notif_callback)
|
|
|
|
nsIInterfaceRequestor_Release(This->notif_callback);
|
|
|
|
if(This->original_uri)
|
|
|
|
nsIURI_Release(This->original_uri);
|
2008-03-26 15:24:03 +01:00
|
|
|
heap_free(This->content_type);
|
2007-12-05 21:52:31 +01:00
|
|
|
heap_free(This->charset);
|
|
|
|
heap_free(This);
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetName(nsIHttpChannel *iface, nsACString *aName)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aName);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_GetName(This->channel, aName);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_IsPending(nsIHttpChannel *iface, PRBool *_retval)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, _retval);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_IsPending(This->channel, _retval);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetStatus(nsIHttpChannel *iface, nsresult *aStatus)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aStatus);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_GetStatus(This->channel, aStatus);
|
|
|
|
|
2006-06-25 14:13:48 +02:00
|
|
|
TRACE("returning NS_OK\n");
|
|
|
|
return *aStatus = NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_Cancel(nsIHttpChannel *iface, nsresult aStatus)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p)->(%08x)\n", This, aStatus);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_Cancel(This->channel, aStatus);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_Suspend(nsIHttpChannel *iface)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)\n", This);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_Suspend(This->channel);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_Resume(nsIHttpChannel *iface)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)\n", This);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_Resume(This->channel);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetLoadGroup(nsIHttpChannel *iface, nsILoadGroup **aLoadGroup)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aLoadGroup);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->load_group)
|
|
|
|
nsILoadGroup_AddRef(This->load_group);
|
|
|
|
|
|
|
|
*aLoadGroup = This->load_group;
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetLoadGroup(nsIHttpChannel *iface, nsILoadGroup *aLoadGroup)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aLoadGroup);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->load_group)
|
|
|
|
nsILoadGroup_Release(This->load_group);
|
|
|
|
if(aLoadGroup)
|
|
|
|
nsILoadGroup_AddRef(aLoadGroup);
|
|
|
|
|
|
|
|
This->load_group = aLoadGroup;
|
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_SetLoadGroup(This->channel, aLoadGroup);
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetLoadFlags(nsIHttpChannel *iface, nsLoadFlags *aLoadFlags)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aLoadFlags);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
*aLoadFlags = This->load_flags;
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetLoadFlags(nsIHttpChannel *iface, nsLoadFlags aLoadFlags)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p)->(%08x)\n", This, aLoadFlags);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
This->load_flags = aLoadFlags;
|
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_SetLoadFlags(This->channel, aLoadFlags);
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetOriginalURI(nsIHttpChannel *iface, nsIURI **aOriginalURI)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aOriginalURI);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->original_uri)
|
|
|
|
nsIURI_AddRef(This->original_uri);
|
|
|
|
|
|
|
|
*aOriginalURI = This->original_uri;
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetOriginalURI(nsIHttpChannel *iface, nsIURI *aOriginalURI)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aOriginalURI);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->original_uri)
|
|
|
|
nsIURI_Release(This->original_uri);
|
|
|
|
|
|
|
|
nsIURI_AddRef(aOriginalURI);
|
|
|
|
This->original_uri = aOriginalURI;
|
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_SetOriginalURI(This->channel, aOriginalURI);
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetURI(nsIHttpChannel *iface, nsIURI **aURI)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aURI);
|
|
|
|
|
|
|
|
nsIWineURI_AddRef(This->uri);
|
|
|
|
*aURI = (nsIURI*)This->uri;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetOwner(nsIHttpChannel *iface, nsISupports **aOwner)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aOwner);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_GetOwner(This->channel, aOwner);
|
|
|
|
|
2008-12-18 14:08:31 +01:00
|
|
|
if(This->owner)
|
|
|
|
nsISupports_AddRef(This->owner);
|
|
|
|
*aOwner = This->owner;
|
|
|
|
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetOwner(nsIHttpChannel *iface, nsISupports *aOwner)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aOwner);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_SetOwner(This->channel, aOwner);
|
|
|
|
|
2008-12-18 14:08:31 +01:00
|
|
|
if(aOwner)
|
|
|
|
nsISupports_AddRef(aOwner);
|
|
|
|
if(This->owner)
|
|
|
|
nsISupports_Release(This->owner);
|
|
|
|
This->owner = aOwner;
|
|
|
|
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetNotificationCallbacks(nsIHttpChannel *iface,
|
|
|
|
nsIInterfaceRequestor **aNotificationCallbacks)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aNotificationCallbacks);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->notif_callback)
|
|
|
|
nsIInterfaceRequestor_AddRef(This->notif_callback);
|
|
|
|
*aNotificationCallbacks = This->notif_callback;
|
|
|
|
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetNotificationCallbacks(nsIHttpChannel *iface,
|
|
|
|
nsIInterfaceRequestor *aNotificationCallbacks)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aNotificationCallbacks);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->notif_callback)
|
|
|
|
nsIInterfaceRequestor_Release(This->notif_callback);
|
|
|
|
if(aNotificationCallbacks)
|
|
|
|
nsIInterfaceRequestor_AddRef(aNotificationCallbacks);
|
|
|
|
|
|
|
|
This->notif_callback = aNotificationCallbacks;
|
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_SetNotificationCallbacks(This->channel, aNotificationCallbacks);
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetSecurityInfo(nsIHttpChannel *iface, nsISupports **aSecurityInfo)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-06-20 18:59:09 +02:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aSecurityInfo);
|
2006-06-20 18:59:09 +02:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_GetSecurityInfo(This->channel, aSecurityInfo);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetContentType(nsIHttpChannel *iface, nsACString *aContentType)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aContentType);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2008-03-26 15:24:03 +01:00
|
|
|
if(This->content_type) {
|
|
|
|
nsACString_SetData(aContentType, This->content_type);
|
2006-06-03 00:48:13 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2006-02-20 11:13:37 +01:00
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_GetContentType(This->channel, aContentType);
|
|
|
|
|
2009-10-13 20:50:55 +02:00
|
|
|
WARN("unknown type\n");
|
|
|
|
return NS_ERROR_FAILURE;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetContentType(nsIHttpChannel *iface,
|
|
|
|
const nsACString *aContentType)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2008-03-26 15:24:38 +01:00
|
|
|
const char *content_type;
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aContentType);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2008-03-26 15:24:38 +01:00
|
|
|
nsACString_GetData(aContentType, &content_type);
|
|
|
|
|
|
|
|
TRACE("content_type %s\n", content_type);
|
|
|
|
|
|
|
|
heap_free(This->content_type);
|
|
|
|
This->content_type = heap_strdupA(content_type);
|
|
|
|
|
2006-02-20 11:13:37 +01:00
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_SetContentType(This->channel, aContentType);
|
|
|
|
|
2008-03-26 15:24:38 +01:00
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetContentCharset(nsIHttpChannel *iface,
|
|
|
|
nsACString *aContentCharset)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aContentCharset);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2007-04-12 21:25:08 +02:00
|
|
|
if(This->charset) {
|
|
|
|
nsACString_SetData(aContentCharset, This->charset);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2007-04-12 21:25:08 +02:00
|
|
|
if(This->channel) {
|
|
|
|
nsresult nsres = nsIChannel_GetContentCharset(This->channel, aContentCharset);
|
|
|
|
const char *ch;
|
2007-12-17 01:38:15 +01:00
|
|
|
nsACString_GetData(aContentCharset, &ch);
|
2007-04-12 21:25:08 +02:00
|
|
|
return nsres;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsACString_SetData(aContentCharset, "");
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetContentCharset(nsIHttpChannel *iface,
|
|
|
|
const nsACString *aContentCharset)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aContentCharset);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_SetContentCharset(This->channel, aContentCharset);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetContentLength(nsIHttpChannel *iface, PRInt32 *aContentLength)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aContentLength);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_GetContentLength(This->channel, aContentLength);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetContentLength(nsIHttpChannel *iface, PRInt32 aContentLength)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p)->(%d)\n", This, aContentLength);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_SetContentLength(This->channel, aContentLength);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_Open(nsIHttpChannel *iface, nsIInputStream **_retval)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, _retval);
|
2006-02-20 11:13:37 +01:00
|
|
|
|
|
|
|
if(This->channel)
|
|
|
|
return nsIChannel_Open(This->channel, _retval);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
2007-06-11 17:25:51 +02:00
|
|
|
static HRESULT create_mon_for_nschannel(nsChannel *channel, IMoniker **mon)
|
|
|
|
{
|
|
|
|
nsIWineURI *wine_uri;
|
|
|
|
LPCWSTR wine_url;
|
|
|
|
nsresult nsres;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
if(!channel->original_uri) {
|
|
|
|
ERR("original_uri == NULL\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIURI_QueryInterface(channel->original_uri, &IID_nsIWineURI, (void**)&wine_uri);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("Could not get nsIWineURI: %08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIWineURI_GetWineURL(wine_uri, &wine_url);
|
|
|
|
nsIWineURI_Release(wine_uri);
|
|
|
|
if(!wine_url) {
|
|
|
|
TRACE("wine_url == NULL\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
hres = CreateURLMoniker(NULL, wine_url, mon);
|
|
|
|
if(FAILED(hres))
|
2009-10-09 22:38:32 +02:00
|
|
|
WARN("CreateURLMoniker failed: %08x\n", hres);
|
2007-06-11 17:25:51 +02:00
|
|
|
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2009-10-26 23:03:29 +01:00
|
|
|
static HTMLWindow *get_window_from_load_group(nsChannel *This)
|
2008-03-08 20:15:30 +01:00
|
|
|
{
|
2009-10-26 23:03:29 +01:00
|
|
|
HTMLWindow *window;
|
2008-03-08 20:15:30 +01:00
|
|
|
nsIChannel *channel;
|
|
|
|
nsIRequest *req;
|
|
|
|
nsIWineURI *wine_uri;
|
|
|
|
nsIURI *uri;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
nsres = nsILoadGroup_GetDefaultLoadRequest(This->load_group, &req);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("GetDefaultLoadRequest failed: %08x\n", nsres);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-04-10 10:38:05 +02:00
|
|
|
if(!req)
|
|
|
|
return NULL;
|
|
|
|
|
2008-03-08 20:15:30 +01:00
|
|
|
nsres = nsIRequest_QueryInterface(req, &IID_nsIChannel, (void**)&channel);
|
|
|
|
nsIRequest_Release(req);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
WARN("Could not get nsIChannel interface: %08x\n", nsres);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIChannel_GetURI(channel, &uri);
|
|
|
|
nsIChannel_Release(channel);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("GetURI failed: %08x\n", nsres);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIURI_QueryInterface(uri, &IID_nsIWineURI, (void**)&wine_uri);
|
|
|
|
nsIURI_Release(uri);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
TRACE("Could not get nsIWineURI: %08x\n", nsres);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-10-26 23:03:29 +01:00
|
|
|
nsIWineURI_GetWindow(wine_uri, &window);
|
2008-03-08 20:15:30 +01:00
|
|
|
nsIWineURI_Release(wine_uri);
|
|
|
|
|
2009-10-26 23:03:29 +01:00
|
|
|
return window;
|
2008-03-08 20:15:30 +01:00
|
|
|
}
|
|
|
|
|
2009-10-26 23:02:50 +01:00
|
|
|
static HTMLWindow *get_channel_window(nsChannel *This)
|
|
|
|
{
|
|
|
|
nsIRequestObserver *req_observer;
|
|
|
|
nsIWebProgress *web_progress;
|
|
|
|
nsIDOMWindow *nswindow;
|
|
|
|
HTMLWindow *window;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
if(!This->load_group) {
|
|
|
|
ERR("NULL load_group\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsILoadGroup_GetGroupObserver(This->load_group, &req_observer);
|
|
|
|
if(NS_FAILED(nsres) || !req_observer) {
|
|
|
|
ERR("GetGroupObserver failed: %08x\n", nsres);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIRequestObserver_QueryInterface(req_observer, &IID_nsIWebProgress, (void**)&web_progress);
|
|
|
|
nsIRequestObserver_Release(req_observer);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("Could not get nsIWebProgress iface: %08x\n", nsres);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIWebProgress_GetDOMWindow(web_progress, &nswindow);
|
|
|
|
nsIWebProgress_Release(web_progress);
|
|
|
|
if(NS_FAILED(nsres) || !nswindow) {
|
|
|
|
ERR("GetDOMWindow failed: %08x\n", nsres);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
window = nswindow_to_window(nswindow);
|
|
|
|
nsIDOMWindow_Release(nswindow);
|
|
|
|
|
|
|
|
if(window)
|
|
|
|
IHTMLWindow2_AddRef(HTMLWINDOW2(window));
|
|
|
|
else
|
|
|
|
FIXME("NULL window for %p\n", nswindow);
|
|
|
|
return window;
|
|
|
|
}
|
|
|
|
|
2009-10-26 23:05:10 +01:00
|
|
|
typedef struct {
|
|
|
|
task_t header;
|
2009-10-26 23:05:37 +01:00
|
|
|
HTMLDocumentNode *doc;
|
2009-10-26 23:05:10 +01:00
|
|
|
nsChannelBSC *bscallback;
|
|
|
|
} start_binding_task_t;
|
|
|
|
|
|
|
|
static void start_binding_proc(task_t *_task)
|
|
|
|
{
|
|
|
|
start_binding_task_t *task = (start_binding_task_t*)_task;
|
|
|
|
|
2009-10-26 23:05:37 +01:00
|
|
|
start_binding(NULL, task->doc, (BSCallback*)task->bscallback, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
task_t header;
|
|
|
|
HTMLWindow *window;
|
|
|
|
nsChannelBSC *bscallback;
|
|
|
|
} start_doc_binding_task_t;
|
|
|
|
|
|
|
|
static void start_doc_binding_proc(task_t *_task)
|
|
|
|
{
|
|
|
|
start_doc_binding_task_t *task = (start_doc_binding_task_t*)_task;
|
|
|
|
|
|
|
|
start_binding(task->window, NULL, (BSCallback*)task->bscallback, NULL);
|
|
|
|
IUnknown_Release((IUnknown*)task->bscallback);
|
2009-10-26 23:05:10 +01:00
|
|
|
}
|
|
|
|
|
2009-10-26 23:03:29 +01:00
|
|
|
static nsresult async_open(nsChannel *This, HTMLWindow *window, BOOL is_doc_channel, nsIStreamListener *listener,
|
2007-11-02 19:53:02 +01:00
|
|
|
nsISupports *context)
|
|
|
|
{
|
2008-03-23 02:16:03 +01:00
|
|
|
nsChannelBSC *bscallback;
|
2007-11-02 19:53:02 +01:00
|
|
|
IMoniker *mon = NULL;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2007-06-11 17:25:51 +02:00
|
|
|
hres = create_mon_for_nschannel(This, &mon);
|
|
|
|
if(FAILED(hres))
|
2006-08-09 16:42:51 +02:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
2006-02-10 14:49:41 +01:00
|
|
|
|
2009-10-26 23:03:29 +01:00
|
|
|
if(is_doc_channel)
|
2009-10-26 23:04:28 +01:00
|
|
|
set_current_mon(window, mon);
|
2009-10-26 23:03:29 +01:00
|
|
|
|
2008-03-23 02:16:03 +01:00
|
|
|
bscallback = create_channelbsc(mon);
|
2006-08-09 16:42:51 +02:00
|
|
|
IMoniker_Release(mon);
|
2006-03-18 22:00:34 +01:00
|
|
|
|
2008-03-23 02:15:20 +01:00
|
|
|
channelbsc_set_channel(bscallback, This, listener, context);
|
2006-02-10 14:49:41 +01:00
|
|
|
|
2009-10-26 23:05:37 +01:00
|
|
|
if(is_doc_channel) {
|
|
|
|
start_doc_binding_task_t *task;
|
2007-02-10 17:36:13 +01:00
|
|
|
|
2009-10-26 23:05:37 +01:00
|
|
|
set_window_bscallback(window, bscallback);
|
2007-02-10 17:36:13 +01:00
|
|
|
|
2009-10-26 23:05:37 +01:00
|
|
|
task = heap_alloc(sizeof(start_doc_binding_task_t));
|
|
|
|
task->window = window;
|
|
|
|
task->bscallback = bscallback;
|
|
|
|
push_task(&task->header, start_doc_binding_proc, window->task_magic);
|
|
|
|
}else {
|
|
|
|
start_binding_task_t *task = heap_alloc(sizeof(start_binding_task_t));
|
|
|
|
|
|
|
|
task->doc = window->doc;
|
|
|
|
task->bscallback = bscallback;
|
|
|
|
push_task(&task->header, start_binding_proc, window->doc->basedoc.task_magic);
|
|
|
|
}
|
2006-08-09 16:42:51 +02:00
|
|
|
|
|
|
|
return NS_OK;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
2007-11-02 19:53:02 +01:00
|
|
|
static nsresult NSAPI nsChannel_AsyncOpen(nsIHttpChannel *iface, nsIStreamListener *aListener,
|
|
|
|
nsISupports *aContext)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
2009-10-26 23:03:29 +01:00
|
|
|
HTMLWindow *window = NULL;
|
2007-11-02 19:53:02 +01:00
|
|
|
PRBool is_doc_uri;
|
|
|
|
BOOL open = TRUE;
|
|
|
|
nsresult nsres = NS_OK;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p %p)\n", This, aListener, aContext);
|
|
|
|
|
2009-10-26 23:02:50 +01:00
|
|
|
if(TRACE_ON(mshtml)) {
|
|
|
|
LPCWSTR url;
|
|
|
|
|
|
|
|
nsIWineURI_GetWineURL(This->uri, &url);
|
|
|
|
TRACE("opening %s\n", debugstr_w(url));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIWineURI_GetIsDocumentURI(This->uri, &is_doc_uri);
|
|
|
|
if(is_doc_uri) {
|
|
|
|
window = get_channel_window(This);
|
|
|
|
if(window) {
|
|
|
|
nsIWineURI_SetWindow(This->uri, window);
|
2009-10-26 23:03:29 +01:00
|
|
|
}else {
|
|
|
|
NSContainer *nscontainer;
|
|
|
|
|
|
|
|
nsIWineURI_GetNSContainer(This->uri, &nscontainer);
|
|
|
|
if(nscontainer) {
|
|
|
|
BOOL b;
|
|
|
|
|
|
|
|
/* nscontainer->doc should be NULL which means navigation to a new window */
|
|
|
|
if(nscontainer->doc)
|
|
|
|
FIXME("nscontainer->doc = %p\n", nscontainer->doc);
|
|
|
|
|
|
|
|
b = before_async_open(This, nscontainer);
|
|
|
|
nsIWebBrowserChrome_Release(NSWBCHROME(nscontainer));
|
|
|
|
if(b)
|
|
|
|
FIXME("Navigation not cancelled\n");
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
2009-10-26 23:02:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-26 23:03:29 +01:00
|
|
|
if(!window) {
|
|
|
|
nsIWineURI_GetWindow(This->uri, &window);
|
2008-03-08 20:15:30 +01:00
|
|
|
|
2009-10-26 23:03:29 +01:00
|
|
|
if(!window && This->load_group) {
|
|
|
|
window = get_window_from_load_group(This);
|
|
|
|
if(window)
|
|
|
|
nsIWineURI_SetWindow(This->uri, window);
|
|
|
|
}
|
2008-03-08 20:15:30 +01:00
|
|
|
}
|
|
|
|
|
2009-10-26 23:03:29 +01:00
|
|
|
if(!window) {
|
2009-12-01 22:50:00 +01:00
|
|
|
ERR("window = NULL\n");
|
2007-11-19 11:47:06 +01:00
|
|
|
return This->channel
|
|
|
|
? nsIChannel_AsyncOpen(This->channel, aListener, aContext)
|
|
|
|
: NS_ERROR_UNEXPECTED;
|
2007-11-02 19:53:02 +01:00
|
|
|
}
|
|
|
|
|
2009-11-30 18:00:12 +01:00
|
|
|
if(is_doc_uri && (This->load_flags & LOAD_INITIAL_DOCUMENT_URI) && window == window->doc_obj->basedoc.window) {
|
2009-10-26 23:03:29 +01:00
|
|
|
if(window->doc_obj->nscontainer->bscallback) {
|
|
|
|
NSContainer *nscontainer = window->doc_obj->nscontainer;
|
|
|
|
|
|
|
|
channelbsc_set_channel(nscontainer->bscallback, This, aListener, aContext);
|
|
|
|
|
|
|
|
if(nscontainer->doc->mime) {
|
|
|
|
heap_free(This->content_type);
|
|
|
|
This->content_type = heap_strdupWtoA(nscontainer->doc->mime);
|
|
|
|
}
|
|
|
|
|
|
|
|
open = FALSE;
|
|
|
|
}else {
|
|
|
|
open = before_async_open(This, window->doc_obj->nscontainer);
|
|
|
|
if(!open) {
|
|
|
|
TRACE("canceled\n");
|
|
|
|
nsres = NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-11-02 19:53:02 +01:00
|
|
|
|
|
|
|
if(open)
|
2009-10-26 23:03:29 +01:00
|
|
|
nsres = async_open(This, window, is_doc_uri, aListener, aContext);
|
2007-11-02 19:53:02 +01:00
|
|
|
|
2009-10-26 23:03:29 +01:00
|
|
|
if(window)
|
|
|
|
IHTMLWindow2_Release(HTMLWINDOW2(window));
|
2007-11-02 19:53:02 +01:00
|
|
|
return nsres;
|
|
|
|
}
|
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
static nsresult NSAPI nsChannel_GetRequestMethod(nsIHttpChannel *iface, nsACString *aRequestMethod)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aRequestMethod);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_GetRequestMethod(This->http_channel, aRequestMethod);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetRequestMethod(nsIHttpChannel *iface,
|
|
|
|
const nsACString *aRequestMethod)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aRequestMethod);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_SetRequestMethod(This->http_channel, aRequestMethod);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetReferrer(nsIHttpChannel *iface, nsIURI **aReferrer)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aReferrer);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_GetReferrer(This->http_channel, aReferrer);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetReferrer(nsIHttpChannel *iface, nsIURI *aReferrer)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aReferrer);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_SetReferrer(This->http_channel, aReferrer);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetRequestHeader(nsIHttpChannel *iface,
|
|
|
|
const nsACString *aHeader, nsACString *_retval)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p %p)\n", This, aHeader, _retval);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_GetRequestHeader(This->http_channel, aHeader, _retval);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetRequestHeader(nsIHttpChannel *iface,
|
|
|
|
const nsACString *aHeader, const nsACString *aValue, PRBool aMerge)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p %p %x)\n", This, aHeader, aValue, aMerge);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_SetRequestHeader(This->http_channel, aHeader, aValue, aMerge);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_VisitRequestHeaders(nsIHttpChannel *iface,
|
|
|
|
nsIHttpHeaderVisitor *aVisitor)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aVisitor);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_VisitRequestHeaders(This->http_channel, aVisitor);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetAllowPipelining(nsIHttpChannel *iface, PRBool *aAllowPipelining)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aAllowPipelining);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_GetAllowPipelining(This->http_channel, aAllowPipelining);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetAllowPipelining(nsIHttpChannel *iface, PRBool aAllowPipelining)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%x)\n", This, aAllowPipelining);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_SetAllowPipelining(This->http_channel, aAllowPipelining);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetRedirectionLimit(nsIHttpChannel *iface, PRUint32 *aRedirectionLimit)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aRedirectionLimit);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_GetRedirectionLimit(This->http_channel, aRedirectionLimit);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetRedirectionLimit(nsIHttpChannel *iface, PRUint32 aRedirectionLimit)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p)->(%u)\n", This, aRedirectionLimit);
|
2006-02-09 12:19:13 +01:00
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_SetRedirectionLimit(This->http_channel, aRedirectionLimit);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetResponseStatus(nsIHttpChannel *iface, PRUint32 *aResponseStatus)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aResponseStatus);
|
|
|
|
|
2009-08-11 19:15:07 +02:00
|
|
|
if(This->response_status) {
|
|
|
|
*aResponseStatus = This->response_status;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-02-09 12:19:13 +01:00
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_GetResponseStatus(This->http_channel, aResponseStatus);
|
|
|
|
|
2009-08-11 19:15:07 +02:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetResponseStatusText(nsIHttpChannel *iface,
|
|
|
|
nsACString *aResponseStatusText)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aResponseStatusText);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_GetResponseStatusText(This->http_channel, aResponseStatusText);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetRequestSucceeded(nsIHttpChannel *iface,
|
|
|
|
PRBool *aRequestSucceeded)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aRequestSucceeded);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_GetRequestSucceeded(This->http_channel, aRequestSucceeded);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_GetResponseHeader(nsIHttpChannel *iface,
|
|
|
|
const nsACString *header, nsACString *_retval)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p %p)\n", This, header, _retval);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_GetResponseHeader(This->http_channel, header, _retval);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_SetResponseHeader(nsIHttpChannel *iface,
|
|
|
|
const nsACString *header, const nsACString *value, PRBool merge)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p %p %x)\n", This, header, value, merge);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_SetResponseHeader(This->http_channel, header, value, merge);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_VisitResponseHeaders(nsIHttpChannel *iface,
|
|
|
|
nsIHttpHeaderVisitor *aVisitor)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aVisitor);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_VisitResponseHeaders(This->http_channel, aVisitor);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_IsNoStoreResponse(nsIHttpChannel *iface, PRBool *_retval)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, _retval);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_IsNoStoreResponse(This->http_channel, _retval);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsChannel_IsNoCacheResponse(nsIHttpChannel *iface, PRBool *_retval)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, _retval);
|
|
|
|
|
|
|
|
if(This->http_channel)
|
|
|
|
return nsIHttpChannel_IsNoCacheResponse(This->http_channel, _retval);
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef NSCHANNEL_THIS
|
|
|
|
|
|
|
|
static const nsIHttpChannelVtbl nsChannelVtbl = {
|
|
|
|
nsChannel_QueryInterface,
|
|
|
|
nsChannel_AddRef,
|
|
|
|
nsChannel_Release,
|
|
|
|
nsChannel_GetName,
|
|
|
|
nsChannel_IsPending,
|
|
|
|
nsChannel_GetStatus,
|
|
|
|
nsChannel_Cancel,
|
|
|
|
nsChannel_Suspend,
|
|
|
|
nsChannel_Resume,
|
|
|
|
nsChannel_GetLoadGroup,
|
|
|
|
nsChannel_SetLoadGroup,
|
|
|
|
nsChannel_GetLoadFlags,
|
|
|
|
nsChannel_SetLoadFlags,
|
|
|
|
nsChannel_GetOriginalURI,
|
|
|
|
nsChannel_SetOriginalURI,
|
|
|
|
nsChannel_GetURI,
|
|
|
|
nsChannel_GetOwner,
|
|
|
|
nsChannel_SetOwner,
|
|
|
|
nsChannel_GetNotificationCallbacks,
|
|
|
|
nsChannel_SetNotificationCallbacks,
|
|
|
|
nsChannel_GetSecurityInfo,
|
|
|
|
nsChannel_GetContentType,
|
|
|
|
nsChannel_SetContentType,
|
|
|
|
nsChannel_GetContentCharset,
|
|
|
|
nsChannel_SetContentCharset,
|
|
|
|
nsChannel_GetContentLength,
|
|
|
|
nsChannel_SetContentLength,
|
|
|
|
nsChannel_Open,
|
|
|
|
nsChannel_AsyncOpen,
|
|
|
|
nsChannel_GetRequestMethod,
|
|
|
|
nsChannel_SetRequestMethod,
|
|
|
|
nsChannel_GetReferrer,
|
|
|
|
nsChannel_SetReferrer,
|
|
|
|
nsChannel_GetRequestHeader,
|
|
|
|
nsChannel_SetRequestHeader,
|
|
|
|
nsChannel_VisitRequestHeaders,
|
|
|
|
nsChannel_GetAllowPipelining,
|
|
|
|
nsChannel_SetAllowPipelining,
|
|
|
|
nsChannel_GetRedirectionLimit,
|
|
|
|
nsChannel_SetRedirectionLimit,
|
|
|
|
nsChannel_GetResponseStatus,
|
|
|
|
nsChannel_GetResponseStatusText,
|
|
|
|
nsChannel_GetRequestSucceeded,
|
|
|
|
nsChannel_GetResponseHeader,
|
|
|
|
nsChannel_SetResponseHeader,
|
|
|
|
nsChannel_VisitResponseHeaders,
|
|
|
|
nsChannel_IsNoStoreResponse,
|
|
|
|
nsChannel_IsNoCacheResponse
|
|
|
|
};
|
|
|
|
|
2006-02-10 14:49:41 +01:00
|
|
|
#define NSUPCHANNEL_THIS(iface) DEFINE_THIS(nsChannel, UploadChannel, iface)
|
|
|
|
|
|
|
|
static nsresult NSAPI nsUploadChannel_QueryInterface(nsIUploadChannel *iface, nsIIDRef riid,
|
|
|
|
nsQIResult result)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSUPCHANNEL_THIS(iface);
|
|
|
|
return nsIChannel_QueryInterface(NSCHANNEL(This), riid, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsUploadChannel_AddRef(nsIUploadChannel *iface)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSUPCHANNEL_THIS(iface);
|
|
|
|
return nsIChannel_AddRef(NSCHANNEL(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsUploadChannel_Release(nsIUploadChannel *iface)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSUPCHANNEL_THIS(iface);
|
|
|
|
return nsIChannel_Release(NSCHANNEL(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsUploadChannel_SetUploadStream(nsIUploadChannel *iface,
|
|
|
|
nsIInputStream *aStream, const nsACString *aContentType, PRInt32 aContentLength)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSUPCHANNEL_THIS(iface);
|
|
|
|
const char *content_type;
|
2008-11-22 20:06:37 +01:00
|
|
|
nsresult nsres;
|
2006-02-10 14:49:41 +01:00
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p)->(%p %p %d)\n", This, aStream, aContentType, aContentLength);
|
2006-02-10 14:49:41 +01:00
|
|
|
|
|
|
|
if(This->post_data_stream)
|
|
|
|
nsIInputStream_Release(This->post_data_stream);
|
|
|
|
|
|
|
|
if(aContentType) {
|
2007-12-17 01:38:15 +01:00
|
|
|
nsACString_GetData(aContentType, &content_type);
|
2006-02-10 14:49:41 +01:00
|
|
|
if(*content_type)
|
|
|
|
FIXME("Unsupported aContentType argument: %s\n", debugstr_a(content_type));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(aContentLength != -1)
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("Unsupported acontentLength = %d\n", aContentLength);
|
2006-02-10 14:49:41 +01:00
|
|
|
|
2008-11-22 20:06:37 +01:00
|
|
|
if(This->post_data_stream)
|
|
|
|
nsIInputStream_Release(This->post_data_stream);
|
|
|
|
This->post_data_stream = aStream;
|
2006-02-10 14:49:41 +01:00
|
|
|
if(aStream)
|
|
|
|
nsIInputStream_AddRef(aStream);
|
2008-11-22 20:06:37 +01:00
|
|
|
|
|
|
|
if(This->post_data_stream) {
|
|
|
|
nsIUploadChannel *upload_channel;
|
|
|
|
|
|
|
|
nsres = nsIChannel_QueryInterface(This->channel, &IID_nsIUploadChannel,
|
|
|
|
(void**)&upload_channel);
|
|
|
|
if(NS_SUCCEEDED(nsres)) {
|
|
|
|
nsres = nsIUploadChannel_SetUploadStream(upload_channel, aStream, aContentType, aContentLength);
|
|
|
|
nsIUploadChannel_Release(upload_channel);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
WARN("SetUploadStream failed: %08x\n", nsres);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2006-02-10 14:49:41 +01:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsUploadChannel_GetUploadStream(nsIUploadChannel *iface,
|
|
|
|
nsIInputStream **aUploadStream)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSUPCHANNEL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aUploadStream);
|
|
|
|
|
|
|
|
if(This->post_data_stream)
|
|
|
|
nsIInputStream_AddRef(This->post_data_stream);
|
|
|
|
|
|
|
|
*aUploadStream = This->post_data_stream;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef NSUPCHANNEL_THIS
|
|
|
|
|
|
|
|
static const nsIUploadChannelVtbl nsUploadChannelVtbl = {
|
|
|
|
nsUploadChannel_QueryInterface,
|
|
|
|
nsUploadChannel_AddRef,
|
|
|
|
nsUploadChannel_Release,
|
|
|
|
nsUploadChannel_SetUploadStream,
|
|
|
|
nsUploadChannel_GetUploadStream
|
|
|
|
};
|
|
|
|
|
2009-08-22 19:37:30 +02:00
|
|
|
#define NSHTTPINTERNAL_THIS(iface) DEFINE_THIS(nsChannel, IHttpChannelInternal, iface)
|
|
|
|
|
|
|
|
static nsresult NSAPI nsHttpChannelInternal_QueryInterface(nsIHttpChannelInternal *iface, nsIIDRef riid,
|
|
|
|
nsQIResult result)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSHTTPINTERNAL_THIS(iface);
|
|
|
|
return nsIChannel_QueryInterface(NSCHANNEL(This), riid, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsHttpChannelInternal_AddRef(nsIHttpChannelInternal *iface)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSHTTPINTERNAL_THIS(iface);
|
|
|
|
return nsIChannel_AddRef(NSCHANNEL(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsHttpChannelInternal_Release(nsIHttpChannelInternal *iface)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSHTTPINTERNAL_THIS(iface);
|
|
|
|
return nsIChannel_Release(NSCHANNEL(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsHttpChannelInternal_GetDocumentURI(nsIHttpChannelInternal *iface, nsIURI **aDocumentURI)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSHTTPINTERNAL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->()\n", This);
|
|
|
|
|
|
|
|
if(This->http_channel_internal)
|
|
|
|
return nsIHttpChannelInternal_GetDocumentURI(This->http_channel_internal, aDocumentURI);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsHttpChannelInternal_SetDocumentURI(nsIHttpChannelInternal *iface, nsIURI *aDocumentURI)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSHTTPINTERNAL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->()\n", This);
|
|
|
|
|
|
|
|
if(This->http_channel_internal)
|
|
|
|
return nsIHttpChannelInternal_SetDocumentURI(This->http_channel_internal, aDocumentURI);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsHttpChannelInternal_GetRequestVersion(nsIHttpChannelInternal *iface, PRUint32 *major, PRUint32 *minor)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSHTTPINTERNAL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->()\n", This);
|
|
|
|
|
|
|
|
if(This->http_channel_internal)
|
|
|
|
return nsIHttpChannelInternal_GetRequestVersion(This->http_channel_internal, major, minor);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsHttpChannelInternal_GetResponseVersion(nsIHttpChannelInternal *iface, PRUint32 *major, PRUint32 *minor)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSHTTPINTERNAL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->()\n", This);
|
|
|
|
|
|
|
|
if(This->http_channel_internal)
|
|
|
|
return nsIHttpChannelInternal_GetResponseVersion(This->http_channel_internal, major, minor);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsHttpChannelInternal_SetCookie(nsIHttpChannelInternal *iface, const char *aCookieHeader)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSHTTPINTERNAL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->()\n", This);
|
|
|
|
|
|
|
|
if(This->http_channel_internal)
|
|
|
|
return nsIHttpChannelInternal_SetCookie(This->http_channel_internal, aCookieHeader);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsHttpChannelInternal_SetupFallbackChannel(nsIHttpChannelInternal *iface, const char *aFallbackKey)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSHTTPINTERNAL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->()\n", This);
|
|
|
|
|
|
|
|
if(This->http_channel_internal)
|
|
|
|
return nsIHttpChannelInternal_SetupFallbackChannel(This->http_channel_internal, aFallbackKey);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsHttpChannelInternal_GetForceAllowThirdPartyCookie(nsIHttpChannelInternal *iface, PRBool *aForceThirdPartyCookie)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSHTTPINTERNAL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->()\n", This);
|
|
|
|
|
|
|
|
if(This->http_channel_internal)
|
|
|
|
return nsIHttpChannelInternal_GetForceAllowThirdPartyCookie(This->http_channel_internal, aForceThirdPartyCookie);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsHttpChannelInternal_SetForceAllowThirdPartyCookie(nsIHttpChannelInternal *iface, PRBool aForceThirdPartyCookie)
|
|
|
|
{
|
|
|
|
nsChannel *This = NSHTTPINTERNAL_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->()\n", This);
|
|
|
|
|
|
|
|
if(This->http_channel_internal)
|
|
|
|
return nsIHttpChannelInternal_SetForceAllowThirdPartyCookie(This->http_channel_internal, aForceThirdPartyCookie);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef NSHTTPINTERNAL_THIS
|
|
|
|
|
|
|
|
static const nsIHttpChannelInternalVtbl nsHttpChannelInternalVtbl = {
|
|
|
|
nsHttpChannelInternal_QueryInterface,
|
|
|
|
nsHttpChannelInternal_AddRef,
|
|
|
|
nsHttpChannelInternal_Release,
|
|
|
|
nsHttpChannelInternal_GetDocumentURI,
|
|
|
|
nsHttpChannelInternal_SetDocumentURI,
|
|
|
|
nsHttpChannelInternal_GetRequestVersion,
|
|
|
|
nsHttpChannelInternal_GetResponseVersion,
|
|
|
|
nsHttpChannelInternal_SetCookie,
|
|
|
|
nsHttpChannelInternal_SetupFallbackChannel,
|
|
|
|
nsHttpChannelInternal_GetForceAllowThirdPartyCookie,
|
|
|
|
nsHttpChannelInternal_SetForceAllowThirdPartyCookie
|
|
|
|
};
|
|
|
|
|
2006-02-13 13:26:00 +01:00
|
|
|
#define NSURI_THIS(iface) DEFINE_THIS(nsURI, WineURI, iface)
|
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
static nsresult NSAPI nsURI_QueryInterface(nsIWineURI *iface, nsIIDRef riid, nsQIResult result)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
*result = NULL;
|
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_nsISupports, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsISupports %p)\n", This, result);
|
|
|
|
*result = NSURI(This);
|
|
|
|
}else if(IsEqualGUID(&IID_nsIURI, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsIURI %p)\n", This, result);
|
|
|
|
*result = NSURI(This);
|
2009-08-27 11:31:14 +02:00
|
|
|
}else if(IsEqualGUID(&IID_nsIURL, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsIURL %p)\n", This, result);
|
|
|
|
*result = NSURI(This);
|
2006-02-09 12:18:18 +01:00
|
|
|
}else if(IsEqualGUID(&IID_nsIWineURI, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsIWineURI %p)\n", This, result);
|
|
|
|
*result = NSURI(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*result) {
|
|
|
|
nsIURI_AddRef(NSURI(This));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), result);
|
2006-08-09 16:41:47 +02:00
|
|
|
return This->uri ? nsIURI_QueryInterface(This->uri, riid, result) : NS_NOINTERFACE;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsURI_AddRef(nsIWineURI *iface)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
2006-02-09 12:18:18 +01:00
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsURI_Release(nsIWineURI *iface)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
2006-02-09 12:18:18 +01:00
|
|
|
|
|
|
|
if(!ref) {
|
2009-10-26 23:02:50 +01:00
|
|
|
if(This->window_ref)
|
|
|
|
windowref_release(This->window_ref);
|
2006-02-15 11:51:44 +01:00
|
|
|
if(This->container)
|
|
|
|
nsIWebBrowserChrome_Release(NSWBCHROME(This->container));
|
2009-08-27 11:31:14 +02:00
|
|
|
if(This->nsurl)
|
|
|
|
nsIURL_Release(This->nsurl);
|
2006-07-07 15:17:27 +02:00
|
|
|
if(This->uri)
|
|
|
|
nsIURI_Release(This->uri);
|
2007-12-05 21:52:31 +01:00
|
|
|
heap_free(This->wine_url);
|
|
|
|
heap_free(This);
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetSpec(nsIWineURI *iface, nsACString *aSpec)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aSpec);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2007-02-10 18:59:38 +01:00
|
|
|
if(This->use_wine_url) {
|
2007-08-14 22:36:10 +02:00
|
|
|
char speca[INTERNET_MAX_URL_LENGTH] = "wine:";
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, This->wine_url, -1, speca+5, sizeof(speca)-5, NULL, NULL);
|
2007-02-09 20:17:16 +01:00
|
|
|
nsACString_SetData(aSpec, speca);
|
|
|
|
|
2006-08-09 16:40:50 +02:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-02-10 19:04:32 +01:00
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetSpec(This->uri, aSpec);
|
|
|
|
|
2007-02-10 18:59:38 +01:00
|
|
|
TRACE("returning error\n");
|
2006-07-07 15:17:27 +02:00
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetSpec(nsIWineURI *iface, const nsACString *aSpec)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aSpec);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_SetSpec(This->uri, aSpec);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetPrePath(nsIWineURI *iface, nsACString *aPrePath)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aPrePath);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetPrePath(This->uri, aPrePath);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetScheme(nsIWineURI *iface, nsACString *aScheme)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aScheme);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2009-11-30 18:01:47 +01:00
|
|
|
if(This->use_wine_url) {
|
2007-02-10 18:59:38 +01:00
|
|
|
/*
|
|
|
|
* For Gecko we set scheme to unknown so it won't be handled
|
|
|
|
* as any special case.
|
|
|
|
*/
|
|
|
|
nsACString_SetData(aScheme, "wine");
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-07-07 15:17:27 +02:00
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetScheme(This->uri, aScheme);
|
|
|
|
|
2007-02-10 18:59:38 +01:00
|
|
|
TRACE("returning error\n");
|
2006-07-07 15:17:27 +02:00
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetScheme(nsIWineURI *iface, const nsACString *aScheme)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aScheme);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_SetScheme(This->uri, aScheme);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetUserPass(nsIWineURI *iface, nsACString *aUserPass)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aUserPass);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetUserPass(This->uri, aUserPass);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetUserPass(nsIWineURI *iface, const nsACString *aUserPass)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aUserPass);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_SetUserPass(This->uri, aUserPass);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetUsername(nsIWineURI *iface, nsACString *aUsername)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aUsername);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetUsername(This->uri, aUsername);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetUsername(nsIWineURI *iface, const nsACString *aUsername)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aUsername);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_SetUsername(This->uri, aUsername);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetPassword(nsIWineURI *iface, nsACString *aPassword)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aPassword);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetPassword(This->uri, aPassword);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetPassword(nsIWineURI *iface, const nsACString *aPassword)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aPassword);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_SetPassword(This->uri, aPassword);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetHostPort(nsIWineURI *iface, nsACString *aHostPort)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aHostPort);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetHostPort(This->uri, aHostPort);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetHostPort(nsIWineURI *iface, const nsACString *aHostPort)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aHostPort);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_SetHostPort(This->uri, aHostPort);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetHost(nsIWineURI *iface, nsACString *aHost)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aHost);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetHost(This->uri, aHost);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetHost(nsIWineURI *iface, const nsACString *aHost)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aHost);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_SetHost(This->uri, aHost);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetPort(nsIWineURI *iface, PRInt32 *aPort)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aPort);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetPort(This->uri, aPort);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetPort(nsIWineURI *iface, PRInt32 aPort)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p)->(%d)\n", This, aPort);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_SetPort(This->uri, aPort);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetPath(nsIWineURI *iface, nsACString *aPath)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aPath);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetPath(This->uri, aPath);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetPath(nsIWineURI *iface, const nsACString *aPath)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2008-02-01 15:31:19 +01:00
|
|
|
const char *path;
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2008-02-01 15:31:19 +01:00
|
|
|
nsACString_GetData(aPath, &path);
|
|
|
|
TRACE("(%p)->(%p(%s))\n", This, aPath, debugstr_a(path));
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
|
2008-02-01 15:31:19 +01:00
|
|
|
if(This->wine_url) {
|
|
|
|
WCHAR new_url[INTERNET_MAX_URL_LENGTH];
|
|
|
|
DWORD size = sizeof(new_url)/sizeof(WCHAR);
|
|
|
|
LPWSTR pathw;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
pathw = heap_strdupAtoW(path);
|
|
|
|
hres = UrlCombineW(This->wine_url, pathw, new_url, &size, 0);
|
|
|
|
heap_free(pathw);
|
|
|
|
if(SUCCEEDED(hres))
|
|
|
|
nsIWineURI_SetWineURL(NSWINEURI(This), new_url);
|
|
|
|
else
|
|
|
|
WARN("UrlCombine failed: %08x\n", hres);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!This->uri)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
return nsIURI_SetPath(This->uri, aPath);
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_Equals(nsIWineURI *iface, nsIURI *other, PRBool *_retval)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2008-02-28 12:41:40 +01:00
|
|
|
nsIWineURI *wine_uri;
|
|
|
|
LPCWSTR other_url = NULL;
|
|
|
|
nsresult nsres;
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p %p)\n", This, other, _retval);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_Equals(This->uri, other, _retval);
|
|
|
|
|
2008-02-28 12:41:40 +01:00
|
|
|
nsres = nsIURI_QueryInterface(other, &IID_nsIWineURI, (void**)&wine_uri);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
TRACE("Could not get nsIWineURI interface\n");
|
|
|
|
*_retval = FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIWineURI_GetWineURL(wine_uri, &other_url);
|
2009-10-27 21:10:22 +01:00
|
|
|
*_retval = other_url && !UrlCompareW(This->wine_url, other_url, TRUE);
|
2008-02-28 12:41:40 +01:00
|
|
|
nsIWineURI_Release(wine_uri);
|
|
|
|
|
|
|
|
return NS_OK;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SchemeIs(nsIWineURI *iface, const char *scheme, PRBool *_retval)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%s %p)\n", This, debugstr_a(scheme), _retval);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2007-02-13 18:08:09 +01:00
|
|
|
if(This->use_wine_url) {
|
|
|
|
WCHAR buf[INTERNET_MAX_SCHEME_LENGTH];
|
|
|
|
int len = MultiByteToWideChar(CP_ACP, 0, scheme, -1, buf, sizeof(buf)/sizeof(WCHAR))-1;
|
|
|
|
|
2008-10-18 17:08:41 +02:00
|
|
|
*_retval = lstrlenW(This->wine_url) > len
|
2007-02-13 18:08:09 +01:00
|
|
|
&& This->wine_url[len] == ':'
|
|
|
|
&& !memcmp(buf, This->wine_url, len*sizeof(WCHAR));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-07-07 15:17:27 +02:00
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_SchemeIs(This->uri, scheme, _retval);
|
|
|
|
|
2007-02-13 18:08:09 +01:00
|
|
|
TRACE("returning error\n");
|
2006-07-07 15:17:27 +02:00
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_Clone(nsIWineURI *iface, nsIURI **_retval)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2008-02-28 12:41:22 +01:00
|
|
|
nsIURI *nsuri = NULL;
|
|
|
|
nsIWineURI *wine_uri;
|
|
|
|
nsresult nsres;
|
2006-02-24 20:31:12 +01:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, _retval);
|
2006-02-24 20:31:12 +01:00
|
|
|
|
2006-07-07 15:17:27 +02:00
|
|
|
if(This->uri) {
|
2008-02-28 12:41:22 +01:00
|
|
|
nsres = nsIURI_Clone(This->uri, &nsuri);
|
2006-07-07 15:17:27 +02:00
|
|
|
if(NS_FAILED(nsres)) {
|
2006-10-05 23:50:39 +02:00
|
|
|
WARN("Clone failed: %08x\n", nsres);
|
2006-07-07 15:17:27 +02:00
|
|
|
return nsres;
|
|
|
|
}
|
2008-02-28 12:41:22 +01:00
|
|
|
}
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2009-10-26 23:02:50 +01:00
|
|
|
nsres = create_uri(nsuri, This->window_ref ? This->window_ref->window : NULL, This->container, &wine_uri);
|
2008-02-28 12:41:22 +01:00
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
WARN("create_uri failed: %08x\n", nsres);
|
2007-02-10 17:36:58 +01:00
|
|
|
return nsres;
|
2006-02-24 20:31:12 +01:00
|
|
|
}
|
|
|
|
|
2008-02-28 12:41:22 +01:00
|
|
|
*_retval = (nsIURI*)wine_uri;
|
|
|
|
return nsIWineURI_SetWineURL(wine_uri, This->wine_url);
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_Resolve(nsIWineURI *iface, const nsACString *arelativePath,
|
|
|
|
nsACString *_retval)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p %p)\n", This, arelativePath, _retval);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_Resolve(This->uri, arelativePath, _retval);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetAsciiSpec(nsIWineURI *iface, nsACString *aAsciiSpec)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aAsciiSpec);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2007-08-14 22:35:19 +02:00
|
|
|
if(This->use_wine_url)
|
2007-02-10 19:02:02 +01:00
|
|
|
return nsIURI_GetSpec(NSURI(This), aAsciiSpec);
|
|
|
|
|
2006-07-07 15:17:27 +02:00
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetAsciiSpec(This->uri, aAsciiSpec);
|
|
|
|
|
2007-02-10 19:02:02 +01:00
|
|
|
TRACE("returning error\n");
|
2006-07-07 15:17:27 +02:00
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetAsciiHost(nsIWineURI *iface, nsACString *aAsciiHost)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aAsciiHost);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetAsciiHost(This->uri, aAsciiHost);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_GetOriginCharset(nsIWineURI *iface, nsACString *aOriginCharset)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, aOriginCharset);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
return nsIURI_GetOriginCharset(This->uri, aOriginCharset);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
|
2009-08-27 11:31:14 +02:00
|
|
|
static nsresult NSAPI nsURL_GetFilePath(nsIWineURI *iface, nsACString *aFilePath)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aFilePath);
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_GetFilePath(This->nsurl, aFilePath);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_SetFilePath(nsIWineURI *iface, const nsACString *aFilePath)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_nsacstr(aFilePath));
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_SetFilePath(This->nsurl, aFilePath);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_GetParam(nsIWineURI *iface, nsACString *aParam)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aParam);
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_GetParam(This->nsurl, aParam);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_SetParam(nsIWineURI *iface, const nsACString *aParam)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_nsacstr(aParam));
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_SetParam(This->nsurl, aParam);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_GetQuery(nsIWineURI *iface, nsACString *aQuery)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aQuery);
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_GetQuery(This->nsurl, aQuery);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_SetQuery(nsIWineURI *iface, const nsACString *aQuery)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2009-08-26 23:14:20 +02:00
|
|
|
const WCHAR *ptr1, *ptr2;
|
|
|
|
const char *query;
|
|
|
|
WCHAR *new_url, *ptr;
|
|
|
|
DWORD len, size;
|
2009-08-27 11:31:14 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_nsacstr(aQuery));
|
|
|
|
|
|
|
|
if(This->nsurl)
|
2009-08-26 23:14:20 +02:00
|
|
|
nsIURL_SetQuery(This->nsurl, aQuery);
|
2009-08-27 11:31:14 +02:00
|
|
|
|
2009-08-26 23:14:20 +02:00
|
|
|
if(!This->wine_url)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsACString_GetData(aQuery, &query);
|
|
|
|
size = len = MultiByteToWideChar(CP_ACP, 0, query, -1, NULL, 0);
|
|
|
|
ptr1 = strchrW(This->wine_url, '?');
|
|
|
|
if(ptr1) {
|
|
|
|
size += ptr1-This->wine_url;
|
|
|
|
ptr2 = strchrW(ptr1, '#');
|
|
|
|
if(ptr2)
|
|
|
|
size += strlenW(ptr2);
|
|
|
|
}else {
|
|
|
|
ptr1 = This->wine_url + strlenW(This->wine_url);
|
|
|
|
ptr2 = NULL;
|
|
|
|
size += strlenW(This->wine_url);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*query)
|
|
|
|
size++;
|
|
|
|
|
|
|
|
new_url = heap_alloc(size*sizeof(WCHAR));
|
|
|
|
memcpy(new_url, This->wine_url, (ptr1-This->wine_url)*sizeof(WCHAR));
|
|
|
|
ptr = new_url + (ptr1-This->wine_url);
|
|
|
|
if(*query) {
|
|
|
|
*ptr++ = '?';
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, query, -1, ptr, len);
|
|
|
|
ptr += len-1;
|
|
|
|
}
|
|
|
|
if(ptr2)
|
|
|
|
strcpyW(ptr, ptr2);
|
|
|
|
else
|
|
|
|
*ptr = 0;
|
|
|
|
|
|
|
|
TRACE("setting %s\n", debugstr_w(new_url));
|
|
|
|
|
|
|
|
heap_free(This->wine_url);
|
|
|
|
This->wine_url = new_url;
|
|
|
|
return NS_OK;
|
2009-08-27 11:31:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_GetRef(nsIWineURI *iface, nsACString *aRef)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aRef);
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_GetRef(This->nsurl, aRef);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_SetRef(nsIWineURI *iface, const nsACString *aRef)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
2009-11-01 19:20:04 +01:00
|
|
|
const char *refa;
|
2009-08-27 11:31:14 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_nsacstr(aRef));
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_SetRef(This->nsurl, aRef);
|
|
|
|
|
2009-11-01 19:20:04 +01:00
|
|
|
nsACString_GetData(aRef, &refa);
|
|
|
|
if(!*refa)
|
|
|
|
return NS_OK;
|
|
|
|
|
2009-08-27 11:31:14 +02:00
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_GetDirectory(nsIWineURI *iface, nsACString *aDirectory)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aDirectory);
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_GetDirectory(This->nsurl, aDirectory);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_SetDirectory(nsIWineURI *iface, const nsACString *aDirectory)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_nsacstr(aDirectory));
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_SetDirectory(This->nsurl, aDirectory);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_GetFileName(nsIWineURI *iface, nsACString *aFileName)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aFileName);
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_GetFileName(This->nsurl, aFileName);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_SetFileName(nsIWineURI *iface, const nsACString *aFileName)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_nsacstr(aFileName));
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_SetFileName(This->nsurl, aFileName);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_GetFileBaseName(nsIWineURI *iface, nsACString *aFileBaseName)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aFileBaseName);
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_GetFileBaseName(This->nsurl, aFileBaseName);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_SetFileBaseName(nsIWineURI *iface, const nsACString *aFileBaseName)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_nsacstr(aFileBaseName));
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_SetFileBaseName(This->nsurl, aFileBaseName);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_GetFileExtension(nsIWineURI *iface, nsACString *aFileExtension)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aFileExtension);
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_GetFileExtension(This->nsurl, aFileExtension);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_SetFileExtension(nsIWineURI *iface, const nsACString *aFileExtension)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_nsacstr(aFileExtension));
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_SetFileExtension(This->nsurl, aFileExtension);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_GetCommonBaseSpec(nsIWineURI *iface, nsIURI *aURIToCompare, nsACString *_retval)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p %p)\n", This, aURIToCompare, _retval);
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_GetCommonBaseSpec(This->nsurl, aURIToCompare, _retval);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURL_GetRelativeSpec(nsIWineURI *iface, nsIURI *aURIToCompare, nsACString *_retval)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p %p)\n", This, aURIToCompare, _retval);
|
|
|
|
|
|
|
|
if(This->nsurl)
|
|
|
|
return nsIURL_GetRelativeSpec(This->nsurl, aURIToCompare, _retval);
|
|
|
|
|
|
|
|
FIXME("default action not implemented\n");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
static nsresult NSAPI nsURI_GetNSContainer(nsIWineURI *iface, NSContainer **aContainer)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aContainer);
|
|
|
|
|
|
|
|
if(This->container)
|
|
|
|
nsIWebBrowserChrome_AddRef(NSWBCHROME(This->container));
|
|
|
|
*aContainer = This->container;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetNSContainer(nsIWineURI *iface, NSContainer *aContainer)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aContainer);
|
|
|
|
|
|
|
|
if(This->container) {
|
2006-12-14 00:21:04 +01:00
|
|
|
if(This->container == aContainer)
|
|
|
|
return NS_OK;
|
2007-05-24 19:15:22 +02:00
|
|
|
TRACE("Changing %p -> %p\n", This->container, aContainer);
|
2006-02-09 12:18:18 +01:00
|
|
|
nsIWebBrowserChrome_Release(NSWBCHROME(This->container));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(aContainer)
|
|
|
|
nsIWebBrowserChrome_AddRef(NSWBCHROME(aContainer));
|
|
|
|
This->container = aContainer;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-10-26 23:02:50 +01:00
|
|
|
static nsresult NSAPI nsURI_GetWindow(nsIWineURI *iface, HTMLWindow **aHTMLWindow)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aHTMLWindow);
|
|
|
|
|
|
|
|
if(This->window_ref && This->window_ref->window) {
|
|
|
|
IHTMLWindow2_AddRef(HTMLWINDOW2(This->window_ref->window));
|
|
|
|
*aHTMLWindow = This->window_ref->window;
|
|
|
|
}else {
|
|
|
|
*aHTMLWindow = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetWindow(nsIWineURI *iface, HTMLWindow *aHTMLWindow)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aHTMLWindow);
|
|
|
|
|
|
|
|
if(This->window_ref) {
|
|
|
|
if(This->window_ref->window == aHTMLWindow)
|
|
|
|
return NS_OK;
|
|
|
|
TRACE("Changing %p -> %p\n", This->window_ref->window, aHTMLWindow);
|
|
|
|
windowref_release(This->window_ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(aHTMLWindow) {
|
|
|
|
windowref_addref(aHTMLWindow->window_ref);
|
|
|
|
This->window_ref = aHTMLWindow->window_ref;
|
|
|
|
|
|
|
|
if(aHTMLWindow->doc_obj)
|
|
|
|
nsIWineURI_SetNSContainer(NSWINEURI(This), aHTMLWindow->doc_obj->nscontainer);
|
|
|
|
}else {
|
|
|
|
This->window_ref = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-12-21 23:32:25 +01:00
|
|
|
static nsresult NSAPI nsURI_GetIsDocumentURI(nsIWineURI *iface, PRBool *aIsDocumentURI)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aIsDocumentURI);
|
|
|
|
|
|
|
|
*aIsDocumentURI = This->is_doc_uri;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetIsDocumentURI(nsIWineURI *iface, PRBool aIsDocumentURI)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%x)\n", This, aIsDocumentURI);
|
|
|
|
|
|
|
|
This->is_doc_uri = aIsDocumentURI;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-02-09 20:18:20 +01:00
|
|
|
static nsresult NSAPI nsURI_GetWineURL(nsIWineURI *iface, LPCWSTR *aURL)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aURL);
|
|
|
|
|
|
|
|
*aURL = This->wine_url;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsURI_SetWineURL(nsIWineURI *iface, LPCWSTR aURL)
|
|
|
|
{
|
|
|
|
nsURI *This = NSURI_THIS(iface);
|
|
|
|
|
2007-02-10 18:59:38 +01:00
|
|
|
static const WCHAR wszFtp[] = {'f','t','p',':'};
|
|
|
|
static const WCHAR wszHttp[] = {'h','t','t','p',':'};
|
|
|
|
static const WCHAR wszHttps[] = {'h','t','t','p','s',':'};
|
|
|
|
|
2007-02-09 20:18:20 +01:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(aURL));
|
|
|
|
|
2007-12-05 21:52:31 +01:00
|
|
|
heap_free(This->wine_url);
|
2007-02-09 20:18:20 +01:00
|
|
|
|
|
|
|
if(aURL) {
|
|
|
|
int len = strlenW(aURL)+1;
|
2007-12-05 21:52:31 +01:00
|
|
|
This->wine_url = heap_alloc(len*sizeof(WCHAR));
|
2007-02-09 20:18:20 +01:00
|
|
|
memcpy(This->wine_url, aURL, len*sizeof(WCHAR));
|
2007-02-10 18:59:38 +01:00
|
|
|
|
2009-11-30 17:59:29 +01:00
|
|
|
if(This->uri) {
|
|
|
|
/* FIXME: Always use wine url */
|
|
|
|
This->use_wine_url =
|
|
|
|
strncmpW(aURL, wszFtp, sizeof(wszFtp)/sizeof(WCHAR))
|
|
|
|
&& strncmpW(aURL, wszHttp, sizeof(wszHttp)/sizeof(WCHAR))
|
|
|
|
&& strncmpW(aURL, wszHttps, sizeof(wszHttps)/sizeof(WCHAR));
|
|
|
|
}else {
|
|
|
|
This->use_wine_url = TRUE;
|
|
|
|
}
|
2007-02-09 20:18:20 +01:00
|
|
|
}else {
|
|
|
|
This->wine_url = NULL;
|
2007-02-10 18:59:38 +01:00
|
|
|
This->use_wine_url = FALSE;
|
2007-02-09 20:18:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
#undef NSURI_THIS
|
|
|
|
|
|
|
|
static const nsIWineURIVtbl nsWineURIVtbl = {
|
|
|
|
nsURI_QueryInterface,
|
|
|
|
nsURI_AddRef,
|
|
|
|
nsURI_Release,
|
|
|
|
nsURI_GetSpec,
|
|
|
|
nsURI_SetSpec,
|
|
|
|
nsURI_GetPrePath,
|
|
|
|
nsURI_GetScheme,
|
|
|
|
nsURI_SetScheme,
|
|
|
|
nsURI_GetUserPass,
|
|
|
|
nsURI_SetUserPass,
|
|
|
|
nsURI_GetUsername,
|
|
|
|
nsURI_SetUsername,
|
|
|
|
nsURI_GetPassword,
|
|
|
|
nsURI_SetPassword,
|
|
|
|
nsURI_GetHostPort,
|
|
|
|
nsURI_SetHostPort,
|
|
|
|
nsURI_GetHost,
|
|
|
|
nsURI_SetHost,
|
|
|
|
nsURI_GetPort,
|
|
|
|
nsURI_SetPort,
|
|
|
|
nsURI_GetPath,
|
|
|
|
nsURI_SetPath,
|
|
|
|
nsURI_Equals,
|
|
|
|
nsURI_SchemeIs,
|
|
|
|
nsURI_Clone,
|
|
|
|
nsURI_Resolve,
|
|
|
|
nsURI_GetAsciiSpec,
|
|
|
|
nsURI_GetAsciiHost,
|
|
|
|
nsURI_GetOriginCharset,
|
2009-08-27 11:31:14 +02:00
|
|
|
nsURL_GetFilePath,
|
|
|
|
nsURL_SetFilePath,
|
|
|
|
nsURL_GetParam,
|
|
|
|
nsURL_SetParam,
|
|
|
|
nsURL_GetQuery,
|
|
|
|
nsURL_SetQuery,
|
|
|
|
nsURL_GetRef,
|
|
|
|
nsURL_SetRef,
|
|
|
|
nsURL_GetDirectory,
|
|
|
|
nsURL_SetDirectory,
|
|
|
|
nsURL_GetFileName,
|
|
|
|
nsURL_SetFileName,
|
|
|
|
nsURL_GetFileBaseName,
|
|
|
|
nsURL_SetFileBaseName,
|
|
|
|
nsURL_GetFileExtension,
|
|
|
|
nsURL_SetFileExtension,
|
|
|
|
nsURL_GetCommonBaseSpec,
|
|
|
|
nsURL_GetRelativeSpec,
|
2006-02-09 12:18:18 +01:00
|
|
|
nsURI_GetNSContainer,
|
|
|
|
nsURI_SetNSContainer,
|
2009-10-26 23:02:50 +01:00
|
|
|
nsURI_GetWindow,
|
|
|
|
nsURI_SetWindow,
|
2006-12-21 23:32:25 +01:00
|
|
|
nsURI_GetIsDocumentURI,
|
2007-02-09 20:18:20 +01:00
|
|
|
nsURI_SetIsDocumentURI,
|
|
|
|
nsURI_GetWineURL,
|
|
|
|
nsURI_SetWineURL
|
2006-02-09 12:18:18 +01:00
|
|
|
};
|
|
|
|
|
2009-10-26 23:02:50 +01:00
|
|
|
static nsresult create_uri(nsIURI *uri, HTMLWindow *window, NSContainer *container, nsIWineURI **_retval)
|
2006-02-24 20:31:12 +01:00
|
|
|
{
|
2009-10-26 23:02:50 +01:00
|
|
|
nsURI *ret = heap_alloc_zero(sizeof(nsURI));
|
2006-02-24 20:31:12 +01:00
|
|
|
|
|
|
|
ret->lpWineURIVtbl = &nsWineURIVtbl;
|
|
|
|
ret->ref = 1;
|
|
|
|
ret->uri = uri;
|
|
|
|
|
2009-10-26 23:02:50 +01:00
|
|
|
nsIWineURI_SetNSContainer(NSWINEURI(ret), container);
|
|
|
|
nsIWineURI_SetWindow(NSWINEURI(ret), window);
|
2006-02-24 20:31:12 +01:00
|
|
|
|
2009-08-27 11:31:14 +02:00
|
|
|
if(uri)
|
|
|
|
nsIURI_QueryInterface(uri, &IID_nsIURL, (void**)&ret->nsurl);
|
|
|
|
else
|
|
|
|
ret->nsurl = NULL;
|
|
|
|
|
2006-02-24 20:31:12 +01:00
|
|
|
TRACE("retval=%p\n", ret);
|
2007-02-09 20:19:13 +01:00
|
|
|
*_retval = NSWINEURI(ret);
|
2006-02-24 20:31:12 +01:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-30 18:01:31 +01:00
|
|
|
HRESULT create_doc_uri(HTMLWindow *window, WCHAR *url, nsIWineURI **ret)
|
|
|
|
{
|
|
|
|
nsIWineURI *uri;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
nsres = create_uri(NULL, window, window->doc_obj->nscontainer, &uri);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
nsIWineURI_SetWineURL(uri, url);
|
|
|
|
nsIWineURI_SetIsDocumentURI(uri, TRUE);
|
|
|
|
|
|
|
|
*ret = uri;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2007-05-12 16:12:04 +02:00
|
|
|
typedef struct {
|
|
|
|
const nsIProtocolHandlerVtbl *lpProtocolHandlerVtbl;
|
|
|
|
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
nsIProtocolHandler *nshandler;
|
|
|
|
} nsProtocolHandler;
|
|
|
|
|
|
|
|
#define NSPROTHANDLER(x) ((nsIProtocolHandler*) &(x)->lpProtocolHandlerVtbl)
|
|
|
|
|
|
|
|
#define NSPROTHANDLER_THIS(iface) DEFINE_THIS(nsProtocolHandler, ProtocolHandler, iface)
|
|
|
|
|
|
|
|
static nsresult NSAPI nsProtocolHandler_QueryInterface(nsIProtocolHandler *iface, nsIIDRef riid,
|
|
|
|
nsQIResult result)
|
|
|
|
{
|
|
|
|
nsProtocolHandler *This = NSPROTHANDLER_THIS(iface);
|
|
|
|
|
|
|
|
*result = NULL;
|
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_nsISupports, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsISupports %p)\n", This, result);
|
|
|
|
*result = NSPROTHANDLER(This);
|
|
|
|
}else if(IsEqualGUID(&IID_nsIProtocolHandler, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsIProtocolHandler %p)\n", This, result);
|
|
|
|
*result = NSPROTHANDLER(This);
|
|
|
|
}else if(IsEqualGUID(&IID_nsIExternalProtocolHandler, riid)) {
|
|
|
|
TRACE("(%p)->(IID_nsIExternalProtocolHandler %p), returning NULL\n", This, result);
|
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*result) {
|
|
|
|
nsISupports_AddRef((nsISupports*)*result);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-05-15 14:00:40 +02:00
|
|
|
WARN("(%s %p)\n", debugstr_guid(riid), result);
|
2007-05-12 16:12:04 +02:00
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsProtocolHandler_AddRef(nsIProtocolHandler *iface)
|
|
|
|
{
|
|
|
|
nsProtocolHandler *This = NSPROTHANDLER_THIS(iface);
|
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsProtocolHandler_Release(nsIProtocolHandler *iface)
|
|
|
|
{
|
|
|
|
nsProtocolHandler *This = NSPROTHANDLER_THIS(iface);
|
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
if(!ref) {
|
|
|
|
if(This->nshandler)
|
|
|
|
nsIProtocolHandler_Release(This->nshandler);
|
2007-12-05 21:52:31 +01:00
|
|
|
heap_free(This);
|
2007-05-12 16:12:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsProtocolHandler_GetScheme(nsIProtocolHandler *iface, nsACString *aScheme)
|
|
|
|
{
|
|
|
|
nsProtocolHandler *This = NSPROTHANDLER_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aScheme);
|
|
|
|
|
|
|
|
if(This->nshandler)
|
|
|
|
return nsIProtocolHandler_GetScheme(This->nshandler, aScheme);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsProtocolHandler_GetDefaultPort(nsIProtocolHandler *iface,
|
|
|
|
PRInt32 *aDefaultPort)
|
|
|
|
{
|
|
|
|
nsProtocolHandler *This = NSPROTHANDLER_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aDefaultPort);
|
|
|
|
|
|
|
|
if(This->nshandler)
|
|
|
|
return nsIProtocolHandler_GetDefaultPort(This->nshandler, aDefaultPort);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsProtocolHandler_GetProtocolFlags(nsIProtocolHandler *iface,
|
|
|
|
PRUint32 *aProtocolFlags)
|
|
|
|
{
|
|
|
|
nsProtocolHandler *This = NSPROTHANDLER_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, aProtocolFlags);
|
|
|
|
|
|
|
|
if(This->nshandler)
|
|
|
|
return nsIProtocolHandler_GetProtocolFlags(This->nshandler, aProtocolFlags);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsProtocolHandler_NewURI(nsIProtocolHandler *iface,
|
|
|
|
const nsACString *aSpec, const char *aOriginCharset, nsIURI *aBaseURI, nsIURI **_retval)
|
|
|
|
{
|
|
|
|
nsProtocolHandler *This = NSPROTHANDLER_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("((%p)->%p %s %p %p)\n", This, aSpec, debugstr_a(aOriginCharset), aBaseURI, _retval);
|
|
|
|
|
|
|
|
if(This->nshandler)
|
|
|
|
return nsIProtocolHandler_NewURI(This->nshandler, aSpec, aOriginCharset, aBaseURI, _retval);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsProtocolHandler_NewChannel(nsIProtocolHandler *iface,
|
|
|
|
nsIURI *aURI, nsIChannel **_retval)
|
|
|
|
{
|
|
|
|
nsProtocolHandler *This = NSPROTHANDLER_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p %p)\n", This, aURI, _retval);
|
|
|
|
|
|
|
|
if(This->nshandler)
|
|
|
|
return nsIProtocolHandler_NewChannel(This->nshandler, aURI, _retval);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsProtocolHandler_AllowPort(nsIProtocolHandler *iface,
|
|
|
|
PRInt32 port, const char *scheme, PRBool *_retval)
|
|
|
|
{
|
|
|
|
nsProtocolHandler *This = NSPROTHANDLER_THIS(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%d %s %p)\n", This, port, debugstr_a(scheme), _retval);
|
|
|
|
|
|
|
|
if(This->nshandler)
|
|
|
|
return nsIProtocolHandler_AllowPort(This->nshandler, port, scheme, _retval);
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef NSPROTHANDLER_THIS
|
|
|
|
|
|
|
|
static const nsIProtocolHandlerVtbl nsProtocolHandlerVtbl = {
|
|
|
|
nsProtocolHandler_QueryInterface,
|
|
|
|
nsProtocolHandler_AddRef,
|
|
|
|
nsProtocolHandler_Release,
|
|
|
|
nsProtocolHandler_GetScheme,
|
|
|
|
nsProtocolHandler_GetDefaultPort,
|
|
|
|
nsProtocolHandler_GetProtocolFlags,
|
|
|
|
nsProtocolHandler_NewURI,
|
|
|
|
nsProtocolHandler_NewChannel,
|
|
|
|
nsProtocolHandler_AllowPort
|
|
|
|
};
|
|
|
|
|
|
|
|
static nsIProtocolHandler *create_protocol_handler(nsIProtocolHandler *nshandler)
|
|
|
|
{
|
2007-12-05 21:52:31 +01:00
|
|
|
nsProtocolHandler *ret = heap_alloc(sizeof(nsProtocolHandler));
|
2007-05-12 16:12:04 +02:00
|
|
|
|
|
|
|
ret->lpProtocolHandlerVtbl = &nsProtocolHandlerVtbl;
|
|
|
|
ret->ref = 1;
|
|
|
|
ret->nshandler = nshandler;
|
|
|
|
|
|
|
|
return NSPROTHANDLER(ret);
|
|
|
|
}
|
|
|
|
|
2008-02-20 21:30:51 +01:00
|
|
|
static nsresult NSAPI nsIOService_QueryInterface(nsIIOService*,nsIIDRef,nsQIResult);
|
2006-02-09 12:17:08 +01:00
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsIOService_AddRef(nsIIOService *iface)
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsIOService_Release(nsIIOService *iface)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOService_GetProtocolHandler(nsIIOService *iface, const char *aScheme,
|
|
|
|
nsIProtocolHandler **_retval)
|
|
|
|
{
|
2007-05-12 16:12:04 +02:00
|
|
|
nsIExternalProtocolHandler *nsexthandler;
|
|
|
|
nsIProtocolHandler *nshandler;
|
|
|
|
nsresult nsres;
|
|
|
|
|
2006-02-09 12:17:08 +01:00
|
|
|
TRACE("(%s %p)\n", debugstr_a(aScheme), _retval);
|
2007-05-12 16:12:04 +02:00
|
|
|
|
|
|
|
nsres = nsIIOService_GetProtocolHandler(nsio, aScheme, &nshandler);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
WARN("GetProtocolHandler failed: %08x\n", nsres);
|
|
|
|
return nsres;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIProtocolHandler_QueryInterface(nshandler, &IID_nsIExternalProtocolHandler,
|
|
|
|
(void**)&nsexthandler);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
*_retval = nshandler;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIExternalProtocolHandler_Release(nsexthandler);
|
|
|
|
*_retval = create_protocol_handler(nshandler);
|
|
|
|
TRACE("return %p\n", *_retval);
|
|
|
|
return NS_OK;
|
2006-02-09 12:17:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOService_GetProtocolFlags(nsIIOService *iface, const char *aScheme,
|
|
|
|
PRUint32 *_retval)
|
|
|
|
{
|
|
|
|
TRACE("(%s %p)\n", debugstr_a(aScheme), _retval);
|
|
|
|
return nsIIOService_GetProtocolFlags(nsio, aScheme, _retval);
|
|
|
|
}
|
|
|
|
|
2007-08-12 17:37:33 +02:00
|
|
|
static BOOL is_gecko_special_uri(const char *spec)
|
|
|
|
{
|
2009-08-22 19:37:59 +02:00
|
|
|
static const char *special_schemes[] = {"chrome:", "jar:", "resource:", "javascript:", "wyciwyg:"};
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i=0; i < sizeof(special_schemes)/sizeof(*special_schemes); i++) {
|
|
|
|
if(!strncasecmp(spec, special_schemes[i], strlen(special_schemes[i])))
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
2007-08-12 17:37:33 +02:00
|
|
|
}
|
|
|
|
|
2006-02-09 12:17:08 +01:00
|
|
|
static nsresult NSAPI nsIOService_NewURI(nsIIOService *iface, const nsACString *aSpec,
|
|
|
|
const char *aOriginCharset, nsIURI *aBaseURI, nsIURI **_retval)
|
|
|
|
{
|
2006-02-09 12:18:18 +01:00
|
|
|
const char *spec = NULL;
|
2009-10-26 23:02:50 +01:00
|
|
|
HTMLWindow *window = NULL;
|
2006-07-07 15:17:27 +02:00
|
|
|
nsIURI *uri = NULL;
|
2007-02-09 20:19:13 +01:00
|
|
|
LPCWSTR base_wine_url = NULL;
|
|
|
|
nsIWineURI *base_wine_uri = NULL, *wine_uri;
|
2007-08-14 22:36:10 +02:00
|
|
|
BOOL is_wine_uri = FALSE;
|
2006-02-09 12:18:18 +01:00
|
|
|
nsresult nsres;
|
|
|
|
|
2007-12-17 01:38:15 +01:00
|
|
|
nsACString_GetData(aSpec, &spec);
|
2006-02-09 12:18:18 +01:00
|
|
|
|
|
|
|
TRACE("(%p(%s) %s %p %p)\n", aSpec, debugstr_a(spec), debugstr_a(aOriginCharset),
|
|
|
|
aBaseURI, _retval);
|
|
|
|
|
2007-08-12 17:37:33 +02:00
|
|
|
if(is_gecko_special_uri(spec))
|
|
|
|
return nsIIOService_NewURI(nsio, aSpec, aOriginCharset, aBaseURI, _retval);
|
|
|
|
|
2007-08-14 22:36:10 +02:00
|
|
|
if(!strncmp(spec, "wine:", 5)) {
|
|
|
|
spec += 5;
|
|
|
|
is_wine_uri = TRUE;
|
|
|
|
}
|
|
|
|
|
2006-02-09 12:18:18 +01:00
|
|
|
if(aBaseURI) {
|
2009-12-01 22:50:00 +01:00
|
|
|
PARSEDURLA parsed_url = {sizeof(PARSEDURLA)};
|
2006-02-09 12:18:18 +01:00
|
|
|
|
2009-12-01 22:50:00 +01:00
|
|
|
nsres = nsIURI_QueryInterface(aBaseURI, &IID_nsIWineURI, (void**)&base_wine_uri);
|
2006-02-09 12:18:18 +01:00
|
|
|
if(NS_SUCCEEDED(nsres)) {
|
2009-12-01 22:50:00 +01:00
|
|
|
nsIWineURI_GetWineURL(base_wine_uri, &base_wine_url);
|
|
|
|
nsIWineURI_GetWindow(base_wine_uri, &window);
|
|
|
|
TRACE("base url: %s window: %p\n", debugstr_w(base_wine_url), window);
|
|
|
|
}else if(FAILED(ParseURLA(spec, &parsed_url))) {
|
|
|
|
TRACE("not wraping\n");
|
|
|
|
return nsIIOService_NewURI(nsio, aSpec, aOriginCharset, aBaseURI, _retval);
|
2006-02-09 12:18:18 +01:00
|
|
|
}else {
|
2009-12-01 22:50:00 +01:00
|
|
|
WARN("Could not get base nsIWineURI: %08x\n", nsres);
|
2006-02-09 12:18:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-26 05:40:21 +02:00
|
|
|
nsres = nsIIOService_NewURI(nsio, aSpec, aOriginCharset, aBaseURI, &uri);
|
2006-07-07 15:17:27 +02:00
|
|
|
if(NS_FAILED(nsres))
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("NewURI failed: %08x\n", nsres);
|
2006-07-07 15:17:27 +02:00
|
|
|
|
2009-10-26 23:02:50 +01:00
|
|
|
nsres = create_uri(uri, window, NULL, &wine_uri);
|
2007-02-09 20:19:13 +01:00
|
|
|
*_retval = (nsIURI*)wine_uri;
|
2006-06-22 16:09:29 +02:00
|
|
|
|
2009-10-26 23:02:50 +01:00
|
|
|
if(window)
|
|
|
|
IHTMLWindow2_Release(HTMLWINDOW2(window));
|
2006-06-22 16:09:29 +02:00
|
|
|
|
2007-02-09 20:19:13 +01:00
|
|
|
if(base_wine_url) {
|
|
|
|
WCHAR url[INTERNET_MAX_URL_LENGTH], rel_url[INTERNET_MAX_URL_LENGTH];
|
2006-08-09 16:42:37 +02:00
|
|
|
DWORD len;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2007-08-14 22:36:10 +02:00
|
|
|
MultiByteToWideChar(CP_ACP, 0, spec, -1, rel_url, sizeof(rel_url)/sizeof(WCHAR));
|
2006-08-09 16:42:37 +02:00
|
|
|
|
2007-02-09 20:19:13 +01:00
|
|
|
hres = CoInternetCombineUrl(base_wine_url, rel_url,
|
|
|
|
URL_ESCAPE_SPACES_ONLY|URL_DONT_ESCAPE_EXTRA_INFO,
|
|
|
|
url, sizeof(url)/sizeof(WCHAR), &len, 0);
|
|
|
|
if(SUCCEEDED(hres))
|
|
|
|
nsIWineURI_SetWineURL(wine_uri, url);
|
|
|
|
else
|
2007-08-14 22:36:10 +02:00
|
|
|
WARN("CoCombineUrl failed: %08x\n", hres);
|
|
|
|
}else if(is_wine_uri) {
|
|
|
|
WCHAR url[INTERNET_MAX_URL_LENGTH];
|
|
|
|
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, spec, -1, url, sizeof(url)/sizeof(WCHAR));
|
|
|
|
nsIWineURI_SetWineURL(wine_uri, url);
|
2006-08-09 16:42:37 +02:00
|
|
|
}
|
|
|
|
|
2007-02-09 20:19:13 +01:00
|
|
|
if(base_wine_uri)
|
|
|
|
nsIWineURI_Release(base_wine_uri);
|
|
|
|
|
2006-06-22 16:09:29 +02:00
|
|
|
return nsres;
|
2006-02-09 12:17:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOService_NewFileURI(nsIIOService *iface, nsIFile *aFile,
|
|
|
|
nsIURI **_retval)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", aFile, _retval);
|
|
|
|
return nsIIOService_NewFileURI(nsio, aFile, _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOService_NewChannelFromURI(nsIIOService *iface, nsIURI *aURI,
|
|
|
|
nsIChannel **_retval)
|
|
|
|
{
|
2009-12-01 22:50:19 +01:00
|
|
|
PARSEDURLW parsed_url = {sizeof(PARSEDURLW)};
|
2006-02-09 12:19:13 +01:00
|
|
|
nsIChannel *channel = NULL;
|
|
|
|
nsChannel *ret;
|
|
|
|
nsIWineURI *wine_uri;
|
2009-12-01 22:50:19 +01:00
|
|
|
const WCHAR *url;
|
2006-02-09 12:19:13 +01:00
|
|
|
nsresult nsres;
|
|
|
|
|
2006-02-09 12:17:08 +01:00
|
|
|
TRACE("(%p %p)\n", aURI, _retval);
|
2006-02-09 12:19:13 +01:00
|
|
|
|
|
|
|
nsres = nsIURI_QueryInterface(aURI, &IID_nsIWineURI, (void**)&wine_uri);
|
|
|
|
if(NS_FAILED(nsres)) {
|
2009-11-30 17:59:53 +01:00
|
|
|
TRACE("Could not get nsIWineURI: %08x\n", nsres);
|
|
|
|
return nsIIOService_NewChannelFromURI(nsio, aURI, _retval);
|
2006-02-09 12:19:13 +01:00
|
|
|
}
|
|
|
|
|
2009-11-30 17:59:53 +01:00
|
|
|
nsIIOService_NewChannelFromURI(nsio, aURI, &channel);
|
|
|
|
|
2008-03-26 15:24:03 +01:00
|
|
|
ret = heap_alloc_zero(sizeof(nsChannel));
|
2006-02-09 12:19:13 +01:00
|
|
|
|
|
|
|
ret->lpHttpChannelVtbl = &nsChannelVtbl;
|
2006-02-10 14:49:41 +01:00
|
|
|
ret->lpUploadChannelVtbl = &nsUploadChannelVtbl;
|
2009-08-22 19:37:30 +02:00
|
|
|
ret->lpIHttpChannelInternalVtbl = &nsHttpChannelInternalVtbl;
|
2006-02-09 12:19:13 +01:00
|
|
|
ret->ref = 1;
|
|
|
|
ret->channel = channel;
|
|
|
|
ret->uri = wine_uri;
|
2006-02-20 16:43:32 +01:00
|
|
|
|
|
|
|
nsIURI_AddRef(aURI);
|
|
|
|
ret->original_uri = aURI;
|
2006-02-09 12:19:13 +01:00
|
|
|
|
2009-12-01 22:50:19 +01:00
|
|
|
nsIWineURI_GetWineURL(wine_uri, &url);
|
|
|
|
ret->url_scheme = url && SUCCEEDED(ParseURLW(url, &parsed_url)) ? parsed_url.nScheme : URL_SCHEME_UNKNOWN;
|
|
|
|
|
2009-08-22 19:37:30 +02:00
|
|
|
if(channel) {
|
2006-02-20 11:13:37 +01:00
|
|
|
nsIChannel_QueryInterface(channel, &IID_nsIHttpChannel, (void**)&ret->http_channel);
|
2009-08-22 19:37:30 +02:00
|
|
|
nsIChannel_QueryInterface(channel, &IID_nsIHttpChannelInternal, (void**)&ret->http_channel_internal);
|
|
|
|
}
|
2006-02-09 12:19:13 +01:00
|
|
|
|
|
|
|
*_retval = NSCHANNEL(ret);
|
|
|
|
return NS_OK;
|
2006-02-09 12:17:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOService_NewChannel(nsIIOService *iface, const nsACString *aSpec,
|
|
|
|
const char *aOriginCharset, nsIURI *aBaseURI, nsIChannel **_retval)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %p %p)\n", aSpec, debugstr_a(aOriginCharset), aBaseURI, _retval);
|
|
|
|
return nsIIOService_NewChannel(nsio, aSpec, aOriginCharset, aBaseURI, _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOService_GetOffline(nsIIOService *iface, PRBool *aOffline)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", aOffline);
|
|
|
|
return nsIIOService_GetOffline(nsio, aOffline);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOService_SetOffline(nsIIOService *iface, PRBool aOffline)
|
|
|
|
{
|
|
|
|
TRACE("(%x)\n", aOffline);
|
|
|
|
return nsIIOService_SetOffline(nsio, aOffline);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOService_AllowPort(nsIIOService *iface, PRInt32 aPort,
|
|
|
|
const char *aScheme, PRBool *_retval)
|
|
|
|
{
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%d %s %p)\n", aPort, debugstr_a(aScheme), _retval);
|
2006-02-09 12:17:08 +01:00
|
|
|
return nsIIOService_AllowPort(nsio, aPort, debugstr_a(aScheme), _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOService_ExtractScheme(nsIIOService *iface, const nsACString *urlString,
|
|
|
|
nsACString * _retval)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", urlString, _retval);
|
|
|
|
return nsIIOService_ExtractScheme(nsio, urlString, _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const nsIIOServiceVtbl nsIOServiceVtbl = {
|
|
|
|
nsIOService_QueryInterface,
|
|
|
|
nsIOService_AddRef,
|
|
|
|
nsIOService_Release,
|
|
|
|
nsIOService_GetProtocolHandler,
|
|
|
|
nsIOService_GetProtocolFlags,
|
|
|
|
nsIOService_NewURI,
|
|
|
|
nsIOService_NewFileURI,
|
|
|
|
nsIOService_NewChannelFromURI,
|
|
|
|
nsIOService_NewChannel,
|
|
|
|
nsIOService_GetOffline,
|
|
|
|
nsIOService_SetOffline,
|
|
|
|
nsIOService_AllowPort,
|
|
|
|
nsIOService_ExtractScheme
|
|
|
|
};
|
|
|
|
|
|
|
|
static nsIIOService nsIOService = { &nsIOServiceVtbl };
|
|
|
|
|
2008-02-20 21:30:51 +01:00
|
|
|
static nsresult NSAPI nsNetUtil_QueryInterface(nsINetUtil *iface, nsIIDRef riid,
|
|
|
|
nsQIResult result)
|
|
|
|
{
|
|
|
|
return nsIIOService_QueryInterface(&nsIOService, riid, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsNetUtil_AddRef(nsINetUtil *iface)
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsNetUtil_Release(nsINetUtil *iface)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsNetUtil_ParseContentType(nsINetUtil *iface, const nsACString *aTypeHeader,
|
|
|
|
nsACString *aCharset, PRBool *aHadCharset, nsACString *aContentType)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p %p %p)\n", aTypeHeader, aCharset, aHadCharset, aContentType);
|
|
|
|
|
2008-12-18 14:08:13 +01:00
|
|
|
return nsINetUtil_ParseContentType(net_util, aTypeHeader, aCharset, aHadCharset, aContentType);
|
2008-02-20 21:30:51 +01:00
|
|
|
}
|
|
|
|
|
2008-12-30 06:48:59 +01:00
|
|
|
static nsresult NSAPI nsNetUtil_ProtocolHasFlags(nsINetUtil *iface, nsIURI *aURI, PRUint32 aFlags, PRBool *_retval)
|
|
|
|
{
|
|
|
|
TRACE("()\n");
|
|
|
|
|
|
|
|
return nsINetUtil_ProtocolHasFlags(net_util, aURI, aFlags, _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsNetUtil_URIChainHasFlags(nsINetUtil *iface, nsIURI *aURI, PRUint32 aFlags, PRBool *_retval)
|
|
|
|
{
|
|
|
|
TRACE("(%p %08x %p)\n", aURI, aFlags, _retval);
|
|
|
|
|
|
|
|
if(aFlags == (1<<11)) {
|
|
|
|
*_retval = FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsINetUtil_URIChainHasFlags(net_util, aURI, aFlags, _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsNetUtil_ToImmutableURI(nsINetUtil *iface, nsIURI *aURI, nsIURI **_retval)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", aURI, _retval);
|
|
|
|
|
|
|
|
return nsINetUtil_ToImmutableURI(net_util, aURI, _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsNetUtil_EscapeString(nsINetUtil *iface, const nsACString *aString,
|
|
|
|
PRUint32 aEscapeType, nsACString *_retval)
|
|
|
|
{
|
|
|
|
TRACE("(%p %x %p)\n", aString, aEscapeType, _retval);
|
|
|
|
|
|
|
|
return nsINetUtil_EscapeString(net_util, aString, aEscapeType, _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsNetUtil_EscapeURL(nsINetUtil *iface, const nsACString *aStr, PRUint32 aFlags,
|
|
|
|
nsACString *_retval)
|
|
|
|
{
|
|
|
|
TRACE("(%p %08x %p)\n", aStr, aFlags, _retval);
|
|
|
|
|
|
|
|
return nsINetUtil_EscapeURL(net_util, aStr, aFlags, _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsNetUtil_UnescapeString(nsINetUtil *iface, const nsACString *aStr,
|
|
|
|
PRUint32 aFlags, nsACString *_retval)
|
|
|
|
{
|
|
|
|
TRACE("(%p %08x %p)\n", aStr, aFlags, _retval);
|
|
|
|
|
|
|
|
return nsINetUtil_UnescapeString(net_util, aStr, aFlags, _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsNetUtil_ExtractCharsetFromContentType(nsINetUtil *iface, const nsACString *aTypeHeader,
|
|
|
|
nsACString *aCharset, PRInt32 *aCharsetStart, PRInt32 *aCharsetEnd, PRBool *_retval)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p %p %p %p)\n", aTypeHeader, aCharset, aCharsetStart, aCharsetEnd, _retval);
|
|
|
|
|
|
|
|
return nsINetUtil_ExtractCharsetFromContentType(net_util, aTypeHeader, aCharset, aCharsetStart, aCharsetEnd, _retval);
|
|
|
|
}
|
|
|
|
|
2008-02-20 21:30:51 +01:00
|
|
|
static const nsINetUtilVtbl nsNetUtilVtbl = {
|
|
|
|
nsNetUtil_QueryInterface,
|
|
|
|
nsNetUtil_AddRef,
|
|
|
|
nsNetUtil_Release,
|
2008-12-30 06:48:59 +01:00
|
|
|
nsNetUtil_ParseContentType,
|
|
|
|
nsNetUtil_ProtocolHasFlags,
|
|
|
|
nsNetUtil_URIChainHasFlags,
|
|
|
|
nsNetUtil_ToImmutableURI,
|
|
|
|
nsNetUtil_EscapeString,
|
|
|
|
nsNetUtil_EscapeURL,
|
|
|
|
nsNetUtil_UnescapeString,
|
|
|
|
nsNetUtil_ExtractCharsetFromContentType
|
2008-02-20 21:30:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static nsINetUtil nsNetUtil = { &nsNetUtilVtbl };
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOService_QueryInterface(nsIIOService *iface, nsIIDRef riid,
|
|
|
|
nsQIResult result)
|
|
|
|
{
|
|
|
|
*result = NULL;
|
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_nsISupports, riid))
|
|
|
|
*result = &nsIOService;
|
|
|
|
else if(IsEqualGUID(&IID_nsIIOService, riid))
|
|
|
|
*result = &nsIOService;
|
|
|
|
else if(IsEqualGUID(&IID_nsINetUtil, riid))
|
|
|
|
*result = &nsNetUtil;
|
|
|
|
|
|
|
|
if(*result) {
|
|
|
|
nsISupports_AddRef((nsISupports*)*result);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXME("(%s %p)\n", debugstr_guid(riid), result);
|
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-02-09 12:17:08 +01:00
|
|
|
static nsresult NSAPI nsIOServiceFactory_QueryInterface(nsIFactory *iface, nsIIDRef riid,
|
|
|
|
nsQIResult result)
|
|
|
|
{
|
|
|
|
*result = NULL;
|
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_nsISupports, riid)) {
|
2008-01-16 12:20:50 +01:00
|
|
|
TRACE("(IID_nsISupports %p)\n", result);
|
2006-02-09 12:17:08 +01:00
|
|
|
*result = iface;
|
|
|
|
}else if(IsEqualGUID(&IID_nsIFactory, riid)) {
|
|
|
|
TRACE("(IID_nsIFactory %p)\n", result);
|
|
|
|
*result = iface;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*result) {
|
|
|
|
nsIFactory_AddRef(iface);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%s %p)\n", debugstr_guid(riid), result);
|
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsIOServiceFactory_AddRef(nsIFactory *iface)
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsrefcnt NSAPI nsIOServiceFactory_Release(nsIFactory *iface)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOServiceFactory_CreateInstance(nsIFactory *iface,
|
|
|
|
nsISupports *aOuter, const nsIID *iid, void **result)
|
|
|
|
{
|
|
|
|
return nsIIOService_QueryInterface(&nsIOService, iid, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult NSAPI nsIOServiceFactory_LockFactory(nsIFactory *iface, PRBool lock)
|
|
|
|
{
|
|
|
|
WARN("(%x)\n", lock);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const nsIFactoryVtbl nsIOServiceFactoryVtbl = {
|
|
|
|
nsIOServiceFactory_QueryInterface,
|
|
|
|
nsIOServiceFactory_AddRef,
|
|
|
|
nsIOServiceFactory_Release,
|
|
|
|
nsIOServiceFactory_CreateInstance,
|
|
|
|
nsIOServiceFactory_LockFactory
|
|
|
|
};
|
|
|
|
|
|
|
|
static nsIFactory nsIOServiceFactory = { &nsIOServiceFactoryVtbl };
|
|
|
|
|
|
|
|
void init_nsio(nsIComponentManager *component_manager, nsIComponentRegistrar *registrar)
|
|
|
|
{
|
|
|
|
nsIFactory *old_factory = NULL;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
nsres = nsIComponentManager_GetClassObject(component_manager, &NS_IOSERVICE_CID,
|
|
|
|
&IID_nsIFactory, (void**)&old_factory);
|
|
|
|
if(NS_FAILED(nsres)) {
|
2006-10-05 23:50:39 +02:00
|
|
|
ERR("Could not get factory: %08x\n", nsres);
|
2006-02-09 12:17:08 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIFactory_CreateInstance(old_factory, NULL, &IID_nsIIOService, (void**)&nsio);
|
|
|
|
if(NS_FAILED(nsres)) {
|
2006-10-05 23:50:39 +02:00
|
|
|
ERR("Couldn not create nsIOService instance %08x\n", nsres);
|
2006-02-09 12:17:08 +01:00
|
|
|
nsIFactory_Release(old_factory);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-18 14:08:13 +01:00
|
|
|
nsres = nsIIOService_QueryInterface(nsio, &IID_nsINetUtil, (void**)&net_util);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
WARN("Could not get nsINetUtil interface: %08x\n", nsres);
|
|
|
|
nsIIOService_Release(nsio);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-02-09 12:17:08 +01:00
|
|
|
nsres = nsIComponentRegistrar_UnregisterFactory(registrar, &NS_IOSERVICE_CID, old_factory);
|
|
|
|
nsIFactory_Release(old_factory);
|
|
|
|
if(NS_FAILED(nsres))
|
2006-10-05 23:50:39 +02:00
|
|
|
ERR("UnregisterFactory failed: %08x\n", nsres);
|
2006-02-09 12:17:08 +01:00
|
|
|
|
|
|
|
nsres = nsIComponentRegistrar_RegisterFactory(registrar, &NS_IOSERVICE_CID,
|
|
|
|
NS_IOSERVICE_CLASSNAME, NS_IOSERVICE_CONTRACTID, &nsIOServiceFactory);
|
|
|
|
if(NS_FAILED(nsres))
|
2006-10-05 23:50:39 +02:00
|
|
|
ERR("RegisterFactory failed: %08x\n", nsres);
|
2006-02-09 12:17:08 +01:00
|
|
|
}
|
2008-12-18 14:08:13 +01:00
|
|
|
|
|
|
|
void release_nsio(void)
|
|
|
|
{
|
|
|
|
if(net_util) {
|
|
|
|
nsINetUtil_Release(net_util);
|
|
|
|
net_util = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(nsio) {
|
|
|
|
nsIIOService_Release(nsio);
|
|
|
|
nsio = NULL;
|
|
|
|
}
|
|
|
|
}
|