1999-10-30 01:46:18 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
1999-11-06 06:43:54 +03: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/
|
1999-10-30 01:46:18 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03: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.
|
1999-10-30 01:46:18 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-10-30 01:46:18 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:43:54 +03:00
|
|
|
* Copyright (C) 1999 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-10-30 01:46:18 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* The uri dispatcher is responsible for taking uri's, determining
|
|
|
|
the content and routing the opened url to the correct content
|
|
|
|
handler.
|
|
|
|
|
|
|
|
When you encounter a url you want to open, you typically call
|
|
|
|
openURI, passing it the content listener for the window the uri is
|
|
|
|
originating from. The uri dispatcher opens the url to discover the
|
|
|
|
content type. It then gives the content listener first crack at
|
|
|
|
handling the content. If it doesn't want it, the dispatcher tries
|
|
|
|
to hand it off one of the registered content listeners. This allows
|
|
|
|
running applications the chance to jump in and handle the content.
|
|
|
|
|
|
|
|
If that also fails, then the uri dispatcher goes to the registry
|
|
|
|
looking for the preferred content handler for the content type
|
|
|
|
of the uri. The content handler may create an app instance
|
|
|
|
or it may hand the contents off to a platform specific plugin
|
|
|
|
or helper app. Or it may hand the url off to an OS registered
|
|
|
|
application.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
1999-11-05 09:00:36 +03:00
|
|
|
|
1999-10-30 01:46:18 +04:00
|
|
|
interface nsIURIContentListener;
|
|
|
|
interface nsIURI;
|
1999-11-10 09:22:29 +03:00
|
|
|
interface nsIProgressEventSink;
|
1999-11-05 09:00:36 +03:00
|
|
|
interface nsIChannel;
|
1999-11-16 00:35:40 +03:00
|
|
|
interface nsIStreamListener;
|
1999-11-30 00:00:14 +03:00
|
|
|
interface nsIInputStream;
|
1999-10-30 01:46:18 +04:00
|
|
|
|
1999-12-02 09:59:39 +03:00
|
|
|
typedef long nsURILoadCommand;
|
|
|
|
|
1999-10-30 01:46:18 +04:00
|
|
|
[scriptable, uuid(40AECB53-8B65-11d3-989D-001083010E9B)]
|
1999-11-02 22:36:43 +03:00
|
|
|
interface nsIURILoader : nsISupports
|
1999-10-30 01:46:18 +04:00
|
|
|
{
|
|
|
|
/* as applications such as messenger and the browser are instantiated,
|
|
|
|
they register content listener's with the uri dispatcher corresponding
|
|
|
|
to content windows within that application.
|
|
|
|
|
|
|
|
Note to self: we may want to optimize things a bit more by requiring
|
|
|
|
the content types the registered content listener cares about.
|
|
|
|
*/
|
|
|
|
void registerContentListener (in nsIURIContentListener aContentListener);
|
|
|
|
void unRegisterContentListener (in nsIURIContentListener aContentListener);
|
|
|
|
|
|
|
|
/* OpenURI requires the following parameters.....
|
|
|
|
aURI --> the uri you wish to open
|
1999-12-02 09:59:39 +03:00
|
|
|
aCommand --> describes the context of the url. most often, you want to pass viewNormal here.
|
|
|
|
but if it the action was from a user click or you want to view source, or you want
|
|
|
|
a new window, these are all passed in via aCommand.
|
1999-11-05 09:00:36 +03:00
|
|
|
aWindowTarget -> the name of the desired target window (can be null)
|
1999-11-30 00:00:14 +03:00
|
|
|
aWindowContext --> if you are running the url from a doc shell or a web shell,
|
|
|
|
this is your window context. If you have a content listener
|
|
|
|
you want to give first crack to, the uri loader needs to be able
|
|
|
|
to get it from the window context (we'll use nsIInterfaceRequestor).
|
|
|
|
we will also be using nsIInterfaceRequestor to get at the progress event
|
|
|
|
sink interface.
|
1999-10-30 01:46:18 +04:00
|
|
|
aReferringURI --> if a uri referral was involved....
|
1999-11-10 09:22:29 +03:00
|
|
|
aOpenContext (in) --> if you've already opened a url before, and you still have
|
|
|
|
the associated open context, you should pass it in here (can be null)
|
|
|
|
This is used to help keep track of urls opened by the same caller!!
|
|
|
|
aCurrentOpenContext --> a cookie returned to the caller which can be used by the caller
|
|
|
|
to make future open calls on the uriloader.
|
|
|
|
|
1999-10-30 01:46:18 +04:00
|
|
|
*/
|
1999-11-10 09:22:29 +03:00
|
|
|
|
2000-01-17 22:55:27 +03:00
|
|
|
void openURI(in nsIChannel aChannel,
|
1999-12-02 09:59:39 +03:00
|
|
|
in nsURILoadCommand aCommand,
|
1999-11-10 09:22:29 +03:00
|
|
|
in string aWindowTarget,
|
1999-11-30 00:00:14 +03:00
|
|
|
in nsISupports aWindowContext,
|
1999-11-10 09:22:29 +03:00
|
|
|
in nsISupports aOpenContext,
|
|
|
|
out nsISupports aCurrentOpenContext);
|
|
|
|
|
1999-11-06 02:03:58 +03:00
|
|
|
|
|
|
|
/* same call as OpenURI except this one takes an IP address to use as well...
|
|
|
|
adapterBinding -> the local IP address to bind to*/
|
|
|
|
|
2000-01-17 22:55:27 +03:00
|
|
|
void openURIVia(in nsIChannel aChannel,
|
1999-12-02 09:59:39 +03:00
|
|
|
in nsURILoadCommand aCommand,
|
1999-11-10 09:22:29 +03:00
|
|
|
in string aWindowTarget,
|
1999-11-30 00:00:14 +03:00
|
|
|
in nsISupports aWindowContext,
|
1999-11-10 09:22:29 +03:00
|
|
|
in nsISupports aOpenContext,
|
|
|
|
out nsISupports aCurrentOpenContext,
|
1999-11-06 02:03:58 +03:00
|
|
|
in unsigned long adapterBinding);
|
1999-11-05 09:00:36 +03:00
|
|
|
|
1999-12-02 09:59:39 +03:00
|
|
|
|
|
|
|
/* these are nsURILoadCommand */
|
|
|
|
const long viewNormal = 0;
|
|
|
|
const long viewSource = 1;
|
|
|
|
const long viewUserClick = 2;
|
|
|
|
const long viewNewWindow = 3;
|
1999-12-07 10:14:40 +03:00
|
|
|
const long viewNormalBackground = 4;
|
1999-12-02 09:59:39 +03:00
|
|
|
|
1999-11-10 09:22:29 +03:00
|
|
|
/* mscott -> I'm going to move this out into a separate private interface
|
|
|
|
*/
|
1999-11-05 09:00:36 +03:00
|
|
|
void dispatchContent(in string aContentType,
|
1999-12-02 09:59:39 +03:00
|
|
|
in nsURILoadCommand aCommand,
|
1999-11-05 09:00:36 +03:00
|
|
|
in string aWindowTarget,
|
|
|
|
in nsIChannel aChannel,
|
|
|
|
in nsISupports aCtxt,
|
1999-11-16 00:35:40 +03:00
|
|
|
in nsIURIContentListener aContentListener,
|
1999-11-18 04:02:31 +03:00
|
|
|
out string aDesiredContentType,
|
|
|
|
out nsIURIContentListener aTargetListener);
|
1999-12-07 01:32:06 +03:00
|
|
|
/* this command should become obsolete once we get rid of the old layout "verb" command
|
|
|
|
string and replace it with the enumerated type nsURILoaderCommand
|
|
|
|
*/
|
|
|
|
void getStringForCommand (in nsURILoadCommand aCommand, out string aStringVersion);
|
1999-11-05 09:00:36 +03:00
|
|
|
};
|
1999-11-30 00:00:14 +03:00
|
|
|
|