~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/netwerk/protocol/file/src/nsFileProtocolHandler.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
 
2
/* ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
 
4
 *
 
5
 * The contents of this file are subject to the Netscape Public License
 
6
 * Version 1.1 (the "License"); you may not use this file except in
 
7
 * compliance with the License. You may obtain a copy of the License at
 
8
 * http://www.mozilla.org/NPL/
 
9
 *
 
10
 * Software distributed under the License is distributed on an "AS IS" basis,
 
11
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
12
 * for the specific language governing rights and limitations under the
 
13
 * License.
 
14
 *
 
15
 * The Original Code is mozilla.org code.
 
16
 *
 
17
 * The Initial Developer of the Original Code is 
 
18
 * Netscape Communications Corporation.
 
19
 * Portions created by the Initial Developer are Copyright (C) 1998
 
20
 * the Initial Developer. All Rights Reserved.
 
21
 *
 
22
 * Contributor(s):
 
23
 *
 
24
 * Alternatively, the contents of this file may be used under the terms of
 
25
 * either the GNU General Public License Version 2 or later (the "GPL"), or 
 
26
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
27
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
28
 * of those above. If you wish to allow use of your version of this file only
 
29
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
30
 * use your version of this file under the terms of the NPL, indicate your
 
31
 * decision by deleting the provisions above and replace them with the notice
 
32
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
33
 * the provisions above, a recipient may use your version of this file under
 
34
 * the terms of any one of the NPL, the GPL or the LGPL.
 
35
 *
 
36
 * ***** END LICENSE BLOCK ***** */
 
37
 
 
38
#include "nsFileProtocolHandler.h"
 
39
#include "nsFileChannel.h"
 
40
#include "nsInputStreamChannel.h"
 
41
#include "nsStandardURL.h"
 
42
#include "nsURLHelper.h"
 
43
#include "nsNetCID.h"
 
44
 
 
45
#include "nsIPrefService.h"
 
46
#include "nsIPrefBranch.h"
 
47
#include "nsIServiceManager.h"
 
48
#include "nsIDirectoryListing.h"
 
49
 
 
50
//-----------------------------------------------------------------------------
 
51
 
 
52
nsFileProtocolHandler::nsFileProtocolHandler()
 
53
    : mGenerateHTMLDirs(PR_FALSE)
 
54
{
 
55
}
 
56
 
 
57
nsresult
 
58
nsFileProtocolHandler::Init()
 
59
{
 
60
    nsCOMPtr<nsIPrefBranch> prefs = do_GetService(NS_PREFSERVICE_CONTRACTID);
 
61
    if (prefs) {
 
62
        PRInt32 sFormat;
 
63
        nsresult rv = prefs->GetIntPref("network.dir.format", &sFormat);
 
64
        if (NS_SUCCEEDED(rv) && sFormat == nsIDirectoryListing::FORMAT_HTML)
 
65
            mGenerateHTMLDirs = PR_TRUE;
 
66
    }
 
67
    return NS_OK;
 
68
}
 
69
 
 
70
NS_IMPL_THREADSAFE_ISUPPORTS3(nsFileProtocolHandler,
 
71
                              nsIFileProtocolHandler,
 
72
                              nsIProtocolHandler,
 
73
                              nsISupportsWeakReference)
 
74
 
 
75
//-----------------------------------------------------------------------------
 
76
// nsIProtocolHandler methods:
 
77
 
 
78
NS_IMETHODIMP
 
79
nsFileProtocolHandler::GetScheme(nsACString &result)
 
80
{
 
81
    result = NS_LITERAL_CSTRING("file");
 
82
    return NS_OK;
 
83
}
 
84
 
 
85
NS_IMETHODIMP
 
86
nsFileProtocolHandler::GetDefaultPort(PRInt32 *result)
 
87
{
 
88
    *result = -1;        // no port for file: URLs
 
89
    return NS_OK;
 
90
}
 
91
 
 
92
NS_IMETHODIMP
 
93
nsFileProtocolHandler::GetProtocolFlags(PRUint32 *result)
 
94
{
 
95
    *result = URI_NOAUTH;
 
96
    return NS_OK;
 
97
}
 
98
 
 
99
NS_IMETHODIMP
 
100
nsFileProtocolHandler::NewURI(const nsACString &spec,
 
101
                              const char *charset,
 
102
                              nsIURI *baseURI,
 
103
                              nsIURI **result)
 
104
{
 
105
    nsCOMPtr<nsIStandardURL> url = new nsStandardURL(PR_TRUE);
 
106
    if (!url)
 
107
        return NS_ERROR_OUT_OF_MEMORY;
 
108
 
 
109
    nsresult rv = url->Init(nsIStandardURL::URLTYPE_NO_AUTHORITY, -1,
 
110
                            spec, charset, baseURI);
 
111
    if (NS_FAILED(rv)) return rv;
 
112
 
 
113
    return CallQueryInterface(url, result);
 
114
}
 
115
 
 
116
NS_IMETHODIMP
 
117
nsFileProtocolHandler::NewChannel(nsIURI *uri, nsIChannel **result)
 
118
{
 
119
    nsFileChannel *chan = new nsFileChannel();
 
120
    if (!chan)
 
121
        return NS_ERROR_OUT_OF_MEMORY;
 
122
    NS_ADDREF(chan);
 
123
 
 
124
    nsresult rv = chan->Init(uri, mGenerateHTMLDirs);
 
125
    if (NS_FAILED(rv)) {
 
126
        NS_RELEASE(chan);
 
127
        return rv;
 
128
    }
 
129
 
 
130
    *result = chan;
 
131
    return NS_OK;
 
132
}
 
133
 
 
134
NS_IMETHODIMP 
 
135
nsFileProtocolHandler::AllowPort(PRInt32 port, const char *scheme, PRBool *result)
 
136
{
 
137
    // don't override anything.  
 
138
    *result = PR_FALSE;
 
139
    return NS_OK;
 
140
}
 
141
 
 
142
//-----------------------------------------------------------------------------
 
143
// nsIFileProtocolHandler methods:
 
144
 
 
145
NS_IMETHODIMP
 
146
nsFileProtocolHandler::NewFileURI(nsIFile *file, nsIURI **result)
 
147
{
 
148
    nsresult rv;
 
149
 
 
150
    nsCOMPtr<nsIFileURL> url = new nsStandardURL(PR_TRUE);
 
151
    if (!url)
 
152
        return NS_ERROR_OUT_OF_MEMORY;
 
153
 
 
154
    // XXX shouldn't we set nsIURI::originCharset ??
 
155
 
 
156
    rv = url->SetFile(file);
 
157
    if (NS_FAILED(rv)) return rv;
 
158
 
 
159
    return CallQueryInterface(url, result);
 
160
}
 
161
 
 
162
NS_IMETHODIMP
 
163
nsFileProtocolHandler::GetURLSpecFromFile(nsIFile *file, nsACString &result)
 
164
{
 
165
    return net_GetURLSpecFromFile(file, result);
 
166
}
 
167
 
 
168
NS_IMETHODIMP
 
169
nsFileProtocolHandler::GetFileFromURLSpec(const nsACString &spec, nsIFile **result)
 
170
{
 
171
    return net_GetFileFromURLSpec(spec, result);
 
172
}