1998-05-22 23:38:40 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
#include "nsIURL.h"
|
|
|
|
#include "nsIInputStream.h"
|
|
|
|
#include "nsINetService.h"
|
|
|
|
#include "nsIHttpUrl.h" /* NS_NewHttpUrl(...) */
|
|
|
|
#include "nsString.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <stdio.h>/* XXX */
|
|
|
|
#include "plstr.h"
|
|
|
|
#include "prprf.h" /* PR_snprintf(...) */
|
|
|
|
#include "prmem.h" /* PR_Malloc(...) / PR_Free(...) */
|
|
|
|
|
|
|
|
#ifdef XP_PC
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
char *mangleResourceIntoFileURL(const char* aResourceFileName);
|
|
|
|
|
|
|
|
class URLImpl : public nsIURL {
|
|
|
|
public:
|
|
|
|
URLImpl(const nsString& aSpec);
|
|
|
|
URLImpl(const nsIURL* aURL, const nsString& aSpec);
|
1998-07-24 20:53:38 +00:00
|
|
|
virtual ~URLImpl();
|
1998-05-22 23:38:40 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
virtual nsIInputStream* Open(PRInt32* aErrorCode);
|
|
|
|
virtual nsresult Open(nsIStreamListener *aListener);
|
|
|
|
|
|
|
|
virtual PRBool operator==(const nsIURL& aURL) const;
|
|
|
|
virtual nsresult Set(const char *aNewSpec);
|
|
|
|
|
|
|
|
virtual const char* GetProtocol() const;
|
|
|
|
virtual const char* GetHost() const;
|
|
|
|
virtual const char* GetFile() const;
|
|
|
|
virtual const char* GetRef() const;
|
1998-08-13 04:35:37 +00:00
|
|
|
virtual const char* GetSearch() const;
|
1998-05-22 23:38:40 +00:00
|
|
|
virtual const char* GetSpec() const;
|
|
|
|
virtual PRInt32 GetPort() const;
|
|
|
|
|
|
|
|
virtual void ToString(nsString& aString) const;
|
|
|
|
|
|
|
|
char* mSpec;
|
|
|
|
char* mProtocol;
|
|
|
|
char* mHost;
|
|
|
|
char* mFile;
|
|
|
|
char* mRef;
|
1998-08-13 04:35:37 +00:00
|
|
|
char* mSearch;
|
1998-05-22 23:38:40 +00:00
|
|
|
PRInt32 mPort;
|
|
|
|
PRBool mOK;
|
|
|
|
|
|
|
|
nsISupports* mProtocolUrl;
|
|
|
|
|
|
|
|
nsresult ParseURL(const nsIURL* aURL, const nsString& aSpec);
|
|
|
|
void CreateProtocolURL();
|
|
|
|
};
|
|
|
|
|
|
|
|
URLImpl::URLImpl(const nsString& aSpec)
|
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
|
|
|
mProtocolUrl = nsnull;
|
|
|
|
|
1998-06-24 17:38:21 +00:00
|
|
|
mProtocol = nsnull;
|
|
|
|
mHost = nsnull;
|
|
|
|
mFile = nsnull;
|
|
|
|
mRef = nsnull;
|
1998-08-13 04:35:37 +00:00
|
|
|
mSearch = nsnull;
|
1998-06-24 17:38:21 +00:00
|
|
|
mPort = -1;
|
|
|
|
mSpec = nsnull;
|
|
|
|
|
1998-05-22 23:38:40 +00:00
|
|
|
ParseURL(nsnull, aSpec);
|
|
|
|
}
|
|
|
|
|
|
|
|
URLImpl::URLImpl(const nsIURL* aURL, const nsString& aSpec)
|
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
|
|
|
mProtocolUrl = nsnull;
|
|
|
|
|
1998-06-24 17:38:21 +00:00
|
|
|
mProtocol = nsnull;
|
|
|
|
mHost = nsnull;
|
|
|
|
mFile = nsnull;
|
|
|
|
mRef = nsnull;
|
1998-08-13 04:35:37 +00:00
|
|
|
mSearch = nsnull;
|
1998-06-24 17:38:21 +00:00
|
|
|
mPort = -1;
|
|
|
|
mSpec = nsnull;
|
|
|
|
|
1998-05-22 23:38:40 +00:00
|
|
|
ParseURL(aURL, aSpec);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF(URLImpl)
|
|
|
|
NS_IMPL_RELEASE(URLImpl)
|
|
|
|
|
|
|
|
NS_DEFINE_IID(kURLIID, NS_IURL_IID);
|
|
|
|
|
|
|
|
nsresult URLImpl::QueryInterface(const nsIID &aIID, void** aInstancePtr)
|
|
|
|
{
|
|
|
|
if (NULL == aInstancePtr) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
|
|
|
if (aIID.Equals(kURLIID)) {
|
|
|
|
*aInstancePtr = (void*) ((nsIURL*)this);
|
|
|
|
AddRef();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
if (aIID.Equals(kISupportsIID)) {
|
|
|
|
*aInstancePtr = (void*) ((nsISupports *)this);
|
|
|
|
AddRef();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
if (nsnull == mProtocolUrl) {
|
|
|
|
CreateProtocolURL();
|
|
|
|
}
|
|
|
|
if (nsnull != mProtocolUrl) {
|
|
|
|
return mProtocolUrl->QueryInterface(aIID, aInstancePtr);
|
|
|
|
}
|
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
URLImpl::~URLImpl()
|
|
|
|
{
|
|
|
|
NS_IF_RELEASE(mProtocolUrl);
|
|
|
|
|
1998-06-24 17:38:21 +00:00
|
|
|
PR_FREEIF(mSpec);
|
|
|
|
PR_FREEIF(mProtocol);
|
|
|
|
PR_FREEIF(mHost);
|
|
|
|
PR_FREEIF(mFile);
|
|
|
|
PR_FREEIF(mRef);
|
1998-08-13 04:35:37 +00:00
|
|
|
PR_FREEIF(mSearch);
|
1998-05-22 23:38:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult URLImpl::Set(const char *aNewSpec)
|
|
|
|
{
|
|
|
|
return ParseURL(nsnull, aNewSpec);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PRBool URLImpl::operator==(const nsIURL& aURL) const
|
|
|
|
{
|
|
|
|
URLImpl& other = (URLImpl&)aURL; // XXX ?
|
|
|
|
return PRBool((0 == PL_strcmp(mProtocol, other.mProtocol)) &&
|
|
|
|
(0 == PL_strcasecmp(mHost, other.mHost)) &&
|
|
|
|
(0 == PL_strcmp(mFile, other.mFile)));
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* URLImpl::GetProtocol() const
|
|
|
|
{
|
|
|
|
return mProtocol;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* URLImpl::GetHost() const
|
|
|
|
{
|
|
|
|
return mHost;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* URLImpl::GetFile() const
|
|
|
|
{
|
|
|
|
return mFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* URLImpl::GetSpec() const
|
|
|
|
{
|
|
|
|
return mSpec;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* URLImpl::GetRef() const
|
|
|
|
{
|
|
|
|
return mRef;
|
|
|
|
}
|
|
|
|
|
1998-08-13 04:35:37 +00:00
|
|
|
const char* URLImpl::GetSearch() const
|
|
|
|
{
|
|
|
|
return mSearch;
|
|
|
|
}
|
|
|
|
|
1998-05-22 23:38:40 +00:00
|
|
|
PRInt32 URLImpl::GetPort() const
|
|
|
|
{
|
|
|
|
return mPort;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void URLImpl::ToString(nsString& aString) const
|
|
|
|
{
|
|
|
|
aString.SetLength(0);
|
|
|
|
aString.Append(mProtocol);
|
|
|
|
aString.Append("://");
|
|
|
|
if (nsnull != mHost) {
|
|
|
|
aString.Append(mHost);
|
|
|
|
if (0 < mPort) {
|
|
|
|
aString.Append(':');
|
|
|
|
aString.Append(mPort, 10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
aString.Append(mFile);
|
|
|
|
if (nsnull != mRef) {
|
|
|
|
aString.Append('#');
|
|
|
|
aString.Append(mRef);
|
|
|
|
}
|
1998-08-13 04:35:37 +00:00
|
|
|
if (nsnull != mSearch) {
|
|
|
|
aString.Append('?');
|
|
|
|
aString.Append(mSearch);
|
|
|
|
}
|
1998-05-22 23:38:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// XXX recode to use nsString api's
|
|
|
|
|
|
|
|
// XXX don't bother with port numbers
|
|
|
|
// XXX don't bother with ref's
|
|
|
|
// XXX null pointer checks are incomplete
|
|
|
|
nsresult URLImpl::ParseURL(const nsIURL* aURL, const nsString& aSpec)
|
|
|
|
{
|
|
|
|
// XXX hack!
|
|
|
|
char* cSpec = aSpec.ToNewCString();
|
|
|
|
|
|
|
|
const char* uProtocol = nsnull;
|
|
|
|
const char* uHost = nsnull;
|
|
|
|
const char* uFile = nsnull;
|
|
|
|
PRInt32 uPort = -1;
|
|
|
|
if (nsnull != aURL) {
|
|
|
|
uProtocol = aURL->GetProtocol();
|
|
|
|
uHost = aURL->GetHost();
|
|
|
|
uFile = aURL->GetFile();
|
|
|
|
uPort = aURL->GetPort();
|
|
|
|
}
|
|
|
|
|
1998-06-24 17:38:21 +00:00
|
|
|
PR_FREEIF(mProtocol);
|
|
|
|
PR_FREEIF(mHost);
|
|
|
|
PR_FREEIF(mFile);
|
|
|
|
PR_FREEIF(mRef);
|
1998-08-13 04:35:37 +00:00
|
|
|
PR_FREEIF(mSearch);
|
1998-05-22 23:38:40 +00:00
|
|
|
mPort = -1;
|
1998-06-24 17:38:21 +00:00
|
|
|
PR_FREEIF(mSpec);
|
1998-05-22 23:38:40 +00:00
|
|
|
|
|
|
|
if (nsnull == cSpec) {
|
|
|
|
if (nsnull == aURL) {
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
mProtocol = (nsnull != uProtocol) ? PL_strdup(uProtocol) : nsnull;
|
|
|
|
mHost = (nsnull != uHost) ? PL_strdup(uHost) : nsnull;
|
|
|
|
mPort = uPort;
|
|
|
|
mFile = (nsnull != uFile) ? PL_strdup(uFile) : nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-08-13 04:35:37 +00:00
|
|
|
// Strip out reference and search info
|
|
|
|
char* ref = strpbrk(cSpec, "#?");
|
1998-07-22 23:38:20 +00:00
|
|
|
if (nsnull != ref) {
|
1998-08-13 04:35:37 +00:00
|
|
|
char* search = nsnull;
|
|
|
|
if ('#' == *ref) {
|
|
|
|
search = PL_strchr(ref + 1, '?');
|
|
|
|
if (nsnull != search) {
|
|
|
|
*search++ = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
PRIntn hashLen = PL_strlen(ref + 1);
|
|
|
|
if (0 != hashLen) {
|
|
|
|
mRef = (char*) PR_Malloc(hashLen + 1);
|
|
|
|
PL_strcpy(mRef, ref + 1);
|
|
|
|
}
|
1998-07-22 23:38:20 +00:00
|
|
|
}
|
1998-08-13 04:35:37 +00:00
|
|
|
else {
|
|
|
|
search = ref + 1;
|
1998-07-22 23:38:20 +00:00
|
|
|
}
|
1998-08-13 04:35:37 +00:00
|
|
|
|
1998-07-22 23:38:20 +00:00
|
|
|
if (nsnull != search) {
|
1998-08-13 04:35:37 +00:00
|
|
|
// The rest is the search
|
|
|
|
PRIntn searchLen = PL_strlen(search);
|
|
|
|
if (0 != searchLen) {
|
|
|
|
mSearch = (char*) PR_Malloc(searchLen + 1);
|
|
|
|
PL_strcpy(mSearch, search);
|
|
|
|
}
|
1998-07-22 23:38:20 +00:00
|
|
|
}
|
1998-08-13 04:35:37 +00:00
|
|
|
|
|
|
|
// XXX Terminate string at start of reference or search
|
|
|
|
*ref = '\0';
|
1998-07-22 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
1998-07-24 18:16:05 +00:00
|
|
|
// The URL is considered absolute if and only if it begins with a
|
|
|
|
// protocol spec. A protocol spec is an alphanumeric string of 1 or
|
|
|
|
// more characters that is terminated with a colon.
|
|
|
|
PRBool isAbsolute = PR_FALSE;
|
|
|
|
char* cp;
|
|
|
|
char* ap = cSpec;
|
|
|
|
char ch;
|
|
|
|
while (0 != (ch = *ap)) {
|
|
|
|
if (((ch >= 'a') && (ch <= 'z')) ||
|
|
|
|
((ch >= 'A') && (ch <= 'Z')) ||
|
|
|
|
((ch >= '0') && (ch <= '9'))) {
|
|
|
|
ap++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ((ch == ':') && (ap - cSpec >= 2)) {
|
|
|
|
isAbsolute = PR_TRUE;
|
|
|
|
cp = ap;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isAbsolute) {
|
1998-05-22 23:38:40 +00:00
|
|
|
// relative spec
|
|
|
|
if (nsnull == aURL) {
|
|
|
|
delete cSpec;
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// keep protocol and host
|
|
|
|
mProtocol = (nsnull != uProtocol) ? PL_strdup(uProtocol) : nsnull;
|
|
|
|
mHost = (nsnull != uHost) ? PL_strdup(uHost) : nsnull;
|
|
|
|
mPort = uPort;
|
|
|
|
|
|
|
|
// figure out file name
|
|
|
|
PRInt32 len = PL_strlen(cSpec) + 1;
|
|
|
|
if ((len > 1) && (cSpec[0] == '/')) {
|
|
|
|
// Relative spec is absolute to the server
|
|
|
|
mFile = PL_strdup(cSpec);
|
|
|
|
} else {
|
1998-07-22 23:38:20 +00:00
|
|
|
if (cSpec[0] != '\0') {
|
|
|
|
// Strip out old tail component and put in the new one
|
|
|
|
char* dp = PL_strrchr(uFile, '/');
|
|
|
|
PRInt32 dirlen = (dp + 1) - uFile;
|
|
|
|
mFile = (char*) PR_Malloc(dirlen + len);
|
|
|
|
PL_strncpy(mFile, uFile, dirlen);
|
|
|
|
PL_strcpy(mFile + dirlen, cSpec);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mFile = PL_strdup(uFile);
|
|
|
|
}
|
1998-05-22 23:38:40 +00:00
|
|
|
}
|
1998-06-26 22:09:18 +00:00
|
|
|
|
|
|
|
/* Stolen from netlib's mkparse.c.
|
|
|
|
*
|
|
|
|
* modifies a url of the form /foo/../foo1 -> /foo1
|
|
|
|
* and /foo/./foo1 -> /foo/foo1
|
|
|
|
*/
|
|
|
|
char *fwdPtr = mFile;
|
|
|
|
char *urlPtr = mFile;
|
|
|
|
|
|
|
|
for(; *fwdPtr != '\0'; fwdPtr++)
|
|
|
|
{
|
|
|
|
|
|
|
|
if(*fwdPtr == '/' && *(fwdPtr+1) == '.' && *(fwdPtr+2) == '/')
|
|
|
|
{
|
|
|
|
/* remove ./
|
|
|
|
*/
|
|
|
|
fwdPtr += 1;
|
|
|
|
}
|
|
|
|
else if(*fwdPtr == '/' && *(fwdPtr+1) == '.' && *(fwdPtr+2) == '.' &&
|
|
|
|
(*(fwdPtr+3) == '/' || *(fwdPtr+3) == '\0'))
|
|
|
|
{
|
|
|
|
/* remove foo/..
|
|
|
|
*/
|
|
|
|
/* reverse the urlPtr to the previous slash
|
|
|
|
*/
|
|
|
|
if(urlPtr != mFile)
|
|
|
|
urlPtr--; /* we must be going back at least one */
|
|
|
|
for(;*urlPtr != '/' && urlPtr != mFile; urlPtr--)
|
|
|
|
; /* null body */
|
|
|
|
|
|
|
|
/* forward the fwd_prt past the ../
|
|
|
|
*/
|
|
|
|
fwdPtr += 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* copy the url incrementaly
|
|
|
|
*/
|
|
|
|
*urlPtr++ = *fwdPtr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*urlPtr = '\0'; /* terminate the url */
|
|
|
|
|
|
|
|
// Now that we've resolved the relative URL, we need to reconstruct
|
|
|
|
// a URL spec from the components.
|
|
|
|
char portBuffer[10];
|
|
|
|
if (-1 != mPort) {
|
1998-07-01 11:22:25 +00:00
|
|
|
PR_snprintf(portBuffer, 10, ":%d", mPort);
|
1998-06-26 22:09:18 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
portBuffer[0] = '\0';
|
|
|
|
}
|
|
|
|
|
1998-07-22 23:38:20 +00:00
|
|
|
PRInt32 plen = PL_strlen(mProtocol) + PL_strlen(mHost) +
|
|
|
|
PL_strlen(portBuffer) + PL_strlen(mFile) + 4;
|
|
|
|
if (mRef) {
|
|
|
|
plen += 1 + PL_strlen(mRef);
|
|
|
|
}
|
1998-08-13 04:35:37 +00:00
|
|
|
if (mSearch) {
|
|
|
|
plen += 1 + PL_strlen(mSearch);
|
|
|
|
}
|
|
|
|
|
1998-06-26 22:09:18 +00:00
|
|
|
mSpec = (char *) PR_Malloc(plen + 1);
|
1998-07-01 11:22:25 +00:00
|
|
|
PR_snprintf(mSpec, plen, "%s://%s%s%s",
|
1998-07-22 23:38:20 +00:00
|
|
|
mProtocol, ((nsnull != mHost) ? mHost : ""), portBuffer,
|
|
|
|
mFile);
|
|
|
|
if (mRef) {
|
|
|
|
PL_strcat(mSpec, "#");
|
|
|
|
PL_strcat(mSpec, mRef);
|
|
|
|
}
|
1998-08-13 04:35:37 +00:00
|
|
|
if (mSearch) {
|
|
|
|
PL_strcat(mSpec, "?");
|
|
|
|
PL_strcat(mSpec, mSearch);
|
|
|
|
}
|
1998-05-22 23:38:40 +00:00
|
|
|
} else {
|
|
|
|
// absolute spec
|
1998-08-13 19:05:36 +00:00
|
|
|
PRInt32 slen = aSpec.Length();
|
|
|
|
mSpec = (char *) PR_Malloc(slen + 1);
|
|
|
|
aSpec.ToCString(mSpec, slen+1);
|
1998-05-22 23:38:40 +00:00
|
|
|
|
|
|
|
// get protocol first
|
|
|
|
PRInt32 plen = cp - cSpec;
|
1998-06-24 17:38:21 +00:00
|
|
|
mProtocol = (char*) PR_Malloc(plen + 1);
|
1998-05-22 23:38:40 +00:00
|
|
|
PL_strncpy(mProtocol, cSpec, plen);
|
|
|
|
mProtocol[plen] = 0;
|
|
|
|
cp++; // eat : in protocol
|
|
|
|
|
|
|
|
// skip over one, two or three slashes
|
|
|
|
if (*cp == '/') {
|
|
|
|
cp++;
|
|
|
|
if (*cp == '/') {
|
|
|
|
cp++;
|
|
|
|
if (*cp == '/') {
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
delete cSpec;
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* cp0 = cp;
|
|
|
|
if ((PL_strcmp(mProtocol, "resource") == 0) ||
|
|
|
|
(PL_strcmp(mProtocol, "file") == 0)) {
|
|
|
|
// resource/file url's do not have host names.
|
|
|
|
// The remainder of the string is the file name
|
|
|
|
PRInt32 flen = PL_strlen(cp);
|
1998-06-24 17:38:21 +00:00
|
|
|
mFile = (char*) PR_Malloc(flen + 1);
|
1998-05-22 23:38:40 +00:00
|
|
|
PL_strcpy(mFile, cp);
|
|
|
|
|
|
|
|
#ifdef NS_WIN32
|
|
|
|
if (PL_strcmp(mProtocol, "file") == 0) {
|
|
|
|
// If the filename starts with a "x|" where is an single
|
|
|
|
// character then we assume it's a drive name and change the
|
|
|
|
// vertical bar back to a ":"
|
|
|
|
if ((flen >= 2) && (mFile[1] == '|')) {
|
|
|
|
mFile[1] = ':';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
// Host name follows protocol for http style urls
|
1998-08-13 04:35:37 +00:00
|
|
|
cp = PL_strpbrk(cp, "/:");
|
|
|
|
|
1998-05-22 23:38:40 +00:00
|
|
|
if (nsnull == cp) {
|
1998-08-13 04:35:37 +00:00
|
|
|
// There is only a host name
|
1998-05-22 23:38:40 +00:00
|
|
|
PRInt32 hlen = PL_strlen(cp0);
|
1998-06-24 17:38:21 +00:00
|
|
|
mHost = (char*) PR_Malloc(hlen + 1);
|
1998-05-22 23:38:40 +00:00
|
|
|
PL_strcpy(mHost, cp0);
|
1998-08-13 04:35:37 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
PRInt32 hlen = cp - cp0;
|
|
|
|
mHost = (char*) PR_Malloc(hlen + 1);
|
|
|
|
PL_strncpy(mHost, cp0, hlen);
|
|
|
|
mHost[hlen] = 0;
|
|
|
|
|
|
|
|
if (':' == *cp) {
|
|
|
|
// We have a port number
|
|
|
|
cp0 = cp+1;
|
|
|
|
cp = PL_strchr(cp, '/');
|
|
|
|
mPort = strtol(cp0, (char **)nsnull, 10);
|
|
|
|
}
|
|
|
|
}
|
1998-05-22 23:38:40 +00:00
|
|
|
|
1998-08-13 04:35:37 +00:00
|
|
|
if (nsnull == cp) {
|
|
|
|
// There is no file name
|
1998-05-22 23:38:40 +00:00
|
|
|
// Set filename to "/"
|
1998-06-24 17:38:21 +00:00
|
|
|
mFile = (char*) PR_Malloc(2);
|
1998-05-22 23:38:40 +00:00
|
|
|
mFile[0] = '/';
|
|
|
|
mFile[1] = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// The rest is the file name
|
|
|
|
PRInt32 flen = PL_strlen(cp);
|
1998-06-24 17:38:21 +00:00
|
|
|
mFile = (char*) PR_Malloc(flen + 1);
|
1998-05-22 23:38:40 +00:00
|
|
|
PL_strcpy(mFile, cp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//printf("protocol='%s' host='%s' file='%s'\n", mProtocol, mHost, mFile);
|
|
|
|
delete cSpec;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIInputStream* URLImpl::Open(PRInt32* aErrorCode)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsIInputStream* in = nsnull;
|
|
|
|
nsINetService *inet;
|
|
|
|
|
|
|
|
// XXX: Rewrite the resource: URL into a file: URL
|
|
|
|
if (PL_strcmp(mProtocol, "resource") == 0) {
|
|
|
|
char* fileName;
|
|
|
|
|
|
|
|
fileName = mangleResourceIntoFileURL(mFile);
|
|
|
|
Set(fileName);
|
|
|
|
PR_Free(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = NS_NewINetService(&inet, nsnull);
|
|
|
|
if (NS_OK == rv) {
|
|
|
|
rv = inet->OpenBlockingStream(this, NULL, &in);
|
|
|
|
}
|
|
|
|
// XXX: The INetService should be released...
|
|
|
|
|
|
|
|
*aErrorCode = rv;
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult URLImpl::Open(nsIStreamListener *aListener)
|
|
|
|
{
|
|
|
|
nsINetService *inet;
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
// XXX: Rewrite the resource: URL into a file: URL
|
|
|
|
if (PL_strcmp(mProtocol, "resource") == 0) {
|
|
|
|
char *fileName;
|
|
|
|
|
|
|
|
fileName = mangleResourceIntoFileURL(mFile);
|
|
|
|
Set(fileName);
|
|
|
|
PR_Free(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = NS_NewINetService(&inet, nsnull);
|
|
|
|
if (NS_OK == rv) {
|
|
|
|
rv = inet->OpenStream(this, aListener);
|
|
|
|
}
|
|
|
|
// XXX: The INetService should be released...
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void URLImpl::CreateProtocolURL()
|
|
|
|
{
|
|
|
|
nsresult result;
|
|
|
|
|
|
|
|
result = NS_NewHttpUrl(&mProtocolUrl, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_NET nsresult NS_NewURL(nsIURL** aInstancePtrResult,
|
|
|
|
const nsString& aSpec)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aInstancePtrResult, "null ptr");
|
|
|
|
if (nsnull == aInstancePtrResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
URLImpl* it = new URLImpl(aSpec);
|
|
|
|
if (nsnull == it) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
return it->QueryInterface(kURLIID, (void **) aInstancePtrResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_NET nsresult NS_NewURL(nsIURL** aInstancePtrResult,
|
|
|
|
const nsIURL* aURL,
|
|
|
|
const nsString& aSpec)
|
|
|
|
{
|
|
|
|
URLImpl* it = new URLImpl(aURL, aSpec);
|
|
|
|
if (nsnull == it) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
return it->QueryInterface(kURLIID, (void **) aInstancePtrResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_NET nsresult NS_MakeAbsoluteURL(nsIURL* aURL,
|
|
|
|
const nsString& aBaseURL,
|
|
|
|
const nsString& aSpec,
|
|
|
|
nsString& aResult)
|
|
|
|
{
|
|
|
|
if (0 < aBaseURL.Length()) {
|
|
|
|
URLImpl base(aBaseURL);
|
|
|
|
URLImpl url(&base, aSpec);
|
|
|
|
url.ToString(aResult);
|
|
|
|
} else {
|
|
|
|
URLImpl url(aURL, aSpec);
|
|
|
|
url.ToString(aResult);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *mangleResourceIntoFileURL(const char* aResourceFileName)
|
|
|
|
{
|
|
|
|
// XXX For now, resources are not in jar files
|
|
|
|
// Find base path name to the resource file
|
|
|
|
char* resourceBase;
|
|
|
|
char* cp;
|
|
|
|
|
|
|
|
#ifdef XP_PC
|
|
|
|
// XXX For now, all resources are relative to the .exe file
|
1998-06-24 17:38:21 +00:00
|
|
|
resourceBase = (char *)PR_Malloc(_MAX_PATH);;
|
|
|
|
DWORD mfnLen = GetModuleFileName(NULL, resourceBase, _MAX_PATH);
|
1998-05-22 23:38:40 +00:00
|
|
|
// Truncate the executable name from the rest of the path...
|
|
|
|
cp = strrchr(resourceBase, '\\');
|
|
|
|
if (nsnull != cp) {
|
|
|
|
*cp = '\0';
|
|
|
|
}
|
|
|
|
// Change the first ':' into a '|'
|
1998-06-24 17:38:21 +00:00
|
|
|
cp = PL_strchr(resourceBase, ':');
|
1998-05-22 23:38:40 +00:00
|
|
|
if (nsnull != cp) {
|
|
|
|
*cp = '|';
|
|
|
|
}
|
|
|
|
#endif
|
1998-06-15 23:42:16 +00:00
|
|
|
|
1998-05-22 23:38:40 +00:00
|
|
|
#ifdef XP_UNIX
|
1998-06-15 23:42:16 +00:00
|
|
|
// XXX For now, all resources are relative to the current working directory
|
|
|
|
|
|
|
|
FILE *pp;
|
|
|
|
|
|
|
|
#define MAXPATHLEN 2000
|
|
|
|
|
|
|
|
resourceBase = (char *)PR_Malloc(MAXPATHLEN);;
|
|
|
|
|
|
|
|
if (!(pp = popen("pwd", "r"))) {
|
|
|
|
printf("RESOURCE protocol error in nsURL::mangeResourceIntoFileURL 1\n");
|
|
|
|
return(nsnull);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (fgets(resourceBase, MAXPATHLEN, pp)) {
|
1998-06-16 00:04:43 +00:00
|
|
|
printf("[%s] %d\n", resourceBase, PL_strlen(resourceBase));
|
|
|
|
resourceBase[PL_strlen(resourceBase)-1] = 0;
|
1998-06-15 23:42:16 +00:00
|
|
|
}
|
1998-06-16 00:04:43 +00:00
|
|
|
else {
|
1998-06-15 23:42:16 +00:00
|
|
|
printf("RESOURCE protocol error in nsURL::mangeResourceIntoFileURL 2\n");
|
1998-06-16 00:04:43 +00:00
|
|
|
return(nsnull);
|
|
|
|
}
|
1998-06-15 23:42:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
printf("RESOURCE name %s\n", resourceBase);
|
1998-05-22 23:38:40 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Join base path to resource name
|
|
|
|
if (aResourceFileName[0] == '/') {
|
|
|
|
aResourceFileName++;
|
|
|
|
}
|
1998-06-24 17:38:21 +00:00
|
|
|
PRInt32 baseLen = PL_strlen(resourceBase);
|
|
|
|
PRInt32 resLen = PL_strlen(aResourceFileName);
|
1998-05-22 23:38:40 +00:00
|
|
|
PRInt32 totalLen = 8 + baseLen + 1 + resLen + 1;
|
|
|
|
char* fileName = (char *)PR_Malloc(totalLen);
|
|
|
|
PR_snprintf(fileName, totalLen, "file:///%s/%s", resourceBase, aResourceFileName);
|
|
|
|
|
|
|
|
#ifdef XP_PC
|
|
|
|
// Change any backslashes into foreward slashes...
|
1998-06-24 17:38:21 +00:00
|
|
|
while ((cp = PL_strchr(fileName, '\\')) != 0) {
|
1998-05-22 23:38:40 +00:00
|
|
|
*cp = '/';
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
PR_Free(resourceBase);
|
|
|
|
|
|
|
|
return fileName;
|
|
|
|
}
|