2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
2000-02-14 10:04:56 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/NPL/
|
2000-02-14 10:04:56 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
2000-02-14 10:04:56 +00:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2000-02-14 10:04:56 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2001-07-25 00:28:28 +00:00
|
|
|
|
2003-04-11 18:24:55 +00:00
|
|
|
#ifndef nsProtocolProxyService_h__
|
|
|
|
#define nsProtocolProxyService_h__
|
2000-02-14 10:04:56 +00:00
|
|
|
|
2001-04-17 02:34:47 +00:00
|
|
|
#include "plevent.h"
|
2000-02-14 10:04:56 +00:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIPref.h"
|
2000-04-22 00:35:05 +00:00
|
|
|
#include "nsVoidArray.h"
|
2000-02-14 10:04:56 +00:00
|
|
|
#include "nsIProtocolProxyService.h"
|
2001-04-17 02:34:47 +00:00
|
|
|
#include "nsIProxyAutoConfig.h"
|
2001-09-13 02:21:05 +00:00
|
|
|
#include "nsIProxyInfo.h"
|
2002-09-23 01:31:17 +00:00
|
|
|
#include "nsIIOService.h"
|
2001-09-13 02:21:05 +00:00
|
|
|
#include "prmem.h"
|
2003-04-11 18:24:55 +00:00
|
|
|
#include "prio.h"
|
2000-02-14 10:04:56 +00:00
|
|
|
|
2002-09-23 01:31:17 +00:00
|
|
|
class nsProtocolProxyService : public nsIProtocolProxyService
|
|
|
|
{
|
2000-02-14 10:04:56 +00:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIPROTOCOLPROXYSERVICE
|
|
|
|
|
2000-04-22 00:35:05 +00:00
|
|
|
nsProtocolProxyService();
|
|
|
|
virtual ~nsProtocolProxyService();
|
2000-02-23 21:17:17 +00:00
|
|
|
|
2003-04-11 18:24:55 +00:00
|
|
|
nsresult Init();
|
2000-02-14 10:04:56 +00:00
|
|
|
|
|
|
|
void PrefsChanged(const char* pref);
|
|
|
|
|
2002-09-23 01:31:17 +00:00
|
|
|
class nsProxyInfo : public nsIProxyInfo
|
|
|
|
{
|
|
|
|
public:
|
2001-09-13 02:21:05 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
NS_IMETHOD_(const char*) Host() {
|
|
|
|
return mHost;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD_(PRInt32) Port() {
|
|
|
|
return mPort;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD_(const char*) Type() {
|
|
|
|
return mType;
|
|
|
|
}
|
|
|
|
|
2003-04-15 23:07:12 +00:00
|
|
|
NS_IMETHOD GetNext(nsIProxyInfo **result) {
|
|
|
|
NS_IF_ADDREF(*result = mNext);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2001-09-13 02:21:05 +00:00
|
|
|
virtual ~nsProxyInfo() {
|
2002-09-23 01:31:17 +00:00
|
|
|
if (mHost) nsMemory::Free(mHost);
|
2001-09-13 02:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsProxyInfo() : mType(nsnull), mHost(nsnull), mPort(-1) {
|
|
|
|
}
|
|
|
|
|
2003-04-15 23:07:12 +00:00
|
|
|
const char *mType;
|
|
|
|
char *mHost; // owning reference
|
|
|
|
PRInt32 mPort;
|
|
|
|
nsCOMPtr<nsIProxyInfo> mNext;
|
2001-09-13 02:21:05 +00:00
|
|
|
};
|
|
|
|
|
2000-02-14 10:04:56 +00:00
|
|
|
protected:
|
2000-04-22 00:35:05 +00:00
|
|
|
|
2003-04-15 23:07:12 +00:00
|
|
|
const char *ExtractProxyInfo(const char *proxy, PRBool permitHttp, nsProxyInfo **);
|
|
|
|
|
2003-04-11 18:24:55 +00:00
|
|
|
nsresult GetProtocolInfo(const char *scheme, PRUint32 &flags, PRInt32 &defaultPort);
|
|
|
|
nsresult NewProxyInfo_Internal(const char *type, char *host, PRInt32 port, nsIProxyInfo **);
|
|
|
|
void GetStringPref(const char *pref, nsCString &result);
|
|
|
|
void GetIntPref(const char *pref, PRInt32 &result);
|
|
|
|
void LoadFilters(const char *filters);
|
|
|
|
PRBool CanUseProxy(nsIURI *aURI, PRInt32 defaultPort);
|
|
|
|
|
|
|
|
static PRBool PR_CALLBACK CleanupFilterArray(void *aElement, void *aData);
|
|
|
|
static void* PR_CALLBACK HandlePACLoadEvent(PLEvent* aEvent);
|
|
|
|
static void PR_CALLBACK DestroyPACLoadEvent(PLEvent* aEvent);
|
2000-04-22 00:35:05 +00:00
|
|
|
|
|
|
|
// simplified array of filters defined by this struct
|
2003-04-11 18:24:55 +00:00
|
|
|
struct HostInfo {
|
|
|
|
PRBool is_ipaddr;
|
|
|
|
PRInt32 port;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
PRUint16 family;
|
|
|
|
PRUint16 mask_len;
|
|
|
|
PRIPv6Addr addr; // possibly IPv4-mapped address
|
|
|
|
} ip;
|
|
|
|
struct {
|
|
|
|
char *host;
|
|
|
|
PRUint32 host_len;
|
|
|
|
} name;
|
|
|
|
};
|
|
|
|
|
|
|
|
HostInfo()
|
|
|
|
: is_ipaddr(PR_FALSE)
|
|
|
|
{ /* other members intentionally uninitialized */ }
|
|
|
|
~HostInfo() {
|
|
|
|
if (!is_ipaddr && name.host)
|
|
|
|
nsMemory::Free(name.host);
|
|
|
|
}
|
2000-04-22 00:35:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nsVoidArray mFiltersArray;
|
|
|
|
|
2002-09-23 01:31:17 +00:00
|
|
|
nsCOMPtr<nsIIOService> mIOService;
|
|
|
|
|
2000-02-14 10:04:56 +00:00
|
|
|
nsCOMPtr<nsIPref> mPrefs;
|
2000-05-05 09:49:42 +00:00
|
|
|
PRUint16 mUseProxy;
|
2000-02-14 10:04:56 +00:00
|
|
|
|
2002-09-23 01:31:17 +00:00
|
|
|
nsCString mHTTPProxyHost;
|
2000-02-14 10:04:56 +00:00
|
|
|
PRInt32 mHTTPProxyPort;
|
|
|
|
|
2002-09-23 01:31:17 +00:00
|
|
|
nsCString mFTPProxyHost;
|
2000-02-14 10:04:56 +00:00
|
|
|
PRInt32 mFTPProxyPort;
|
2000-04-22 00:35:05 +00:00
|
|
|
|
2002-09-23 01:31:17 +00:00
|
|
|
nsCString mGopherProxyHost;
|
2001-03-14 02:41:18 +00:00
|
|
|
PRInt32 mGopherProxyPort;
|
|
|
|
|
2002-09-23 01:31:17 +00:00
|
|
|
nsCString mHTTPSProxyHost;
|
2000-04-22 00:35:05 +00:00
|
|
|
PRInt32 mHTTPSProxyPort;
|
2000-07-01 10:25:25 +00:00
|
|
|
|
2002-09-23 01:31:17 +00:00
|
|
|
nsCString mSOCKSProxyHost;
|
2000-07-01 10:25:25 +00:00
|
|
|
PRInt32 mSOCKSProxyPort;
|
2001-07-25 00:28:28 +00:00
|
|
|
PRInt32 mSOCKSProxyVersion;
|
2001-04-17 02:34:47 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIProxyAutoConfig> mPAC;
|
2002-09-23 01:31:17 +00:00
|
|
|
nsCString mPACURL;
|
2000-02-14 10:04:56 +00:00
|
|
|
};
|
|
|
|
|
2003-04-11 18:24:55 +00:00
|
|
|
#endif // !nsProtocolProxyService_h__
|
2000-02-15 00:52:56 +00:00
|
|
|
|