Bug 627938: Fix nsGlobalChromeWindow cleanup. (r=smaug, a=jst)
[mozilla-central.git] / uriloader / exthandler / nsLocalHandlerApp.cpp
blobad7ca814d69f99f779e073c7a10822b0f2cc4d9f
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim:expandtab:shiftwidth=2:tabstop=2:cin:
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
16 * The Original Code is the Mozilla browser.
18 * The Initial Developer of the Original Code is
19 * the Mozilla Corporation.
20 * Portions created by the Initial Developer are Copyright (C) 2007
21 * the Initial Developer. All Rights Reserved.
23 * Contributor(s):
24 * Dan Mosedale <dmose@mozilla.org>
25 * Myk Melez <myk@mozilla.org>
27 * Alternatively, the contents of this file may be used under the terms of
28 * either of the GNU General Public License Version 2 or later (the "GPL"),
29 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
30 * in which case the provisions of the GPL or the LGPL are applicable instead
31 * of those above. If you wish to allow use of your version of this file only
32 * under the terms of either the GPL or the LGPL, and not to allow others to
33 * use your version of this file under the terms of the MPL, indicate your
34 * decision by deleting the provisions above and replace them with the notice
35 * and other provisions required by the GPL or the LGPL. If you do not delete
36 * the provisions above, a recipient may use your version of this file under
37 * the terms of any one of the MPL, the GPL or the LGPL.
39 * ***** END LICENSE BLOCK ***** */
41 #include "nsLocalHandlerApp.h"
42 #include "nsIURI.h"
43 #include "nsIProcess.h"
45 // XXX why does nsMIMEInfoImpl have a threadsafe nsISupports? do we need one
46 // here too?
47 NS_IMPL_ISUPPORTS2(nsLocalHandlerApp, nsILocalHandlerApp, nsIHandlerApp)
49 ////////////////////////////////////////////////////////////////////////////////
50 //// nsIHandlerApp
52 NS_IMETHODIMP nsLocalHandlerApp::GetName(nsAString& aName)
54 if (mName.IsEmpty() && mExecutable) {
55 // Don't want to cache this, just in case someone resets the app
56 // without changing the description....
57 mExecutable->GetLeafName(aName);
58 } else {
59 aName.Assign(mName);
62 return NS_OK;
65 NS_IMETHODIMP nsLocalHandlerApp::SetName(const nsAString & aName)
67 mName.Assign(aName);
69 return NS_OK;
72 NS_IMETHODIMP
73 nsLocalHandlerApp::SetDetailedDescription(const nsAString & aDescription)
75 mDetailedDescription.Assign(aDescription);
77 return NS_OK;
80 NS_IMETHODIMP
81 nsLocalHandlerApp::GetDetailedDescription(nsAString& aDescription)
83 aDescription.Assign(mDetailedDescription);
85 return NS_OK;
88 NS_IMETHODIMP
89 nsLocalHandlerApp::Equals(nsIHandlerApp *aHandlerApp, PRBool *_retval)
91 NS_ENSURE_ARG_POINTER(aHandlerApp);
93 *_retval = PR_FALSE;
95 // If the handler app isn't a local handler app, then it's not the same app.
96 nsCOMPtr <nsILocalHandlerApp> localHandlerApp = do_QueryInterface(aHandlerApp);
97 if (!localHandlerApp)
98 return NS_OK;
100 // If either handler app doesn't have an executable, then they aren't
101 // the same app.
102 nsCOMPtr<nsIFile> executable;
103 nsresult rv = localHandlerApp->GetExecutable(getter_AddRefs(executable));
104 if (NS_FAILED(rv))
105 return rv;
107 // Equality for two empty nsIHandlerApp
108 if (!executable && !mExecutable) {
109 *_retval = PR_TRUE;
110 return NS_OK;
113 // At least one is set so they are not equal
114 if (!mExecutable || !executable)
115 return NS_OK;
117 // Check the command line parameter list lengths
118 PRUint32 len;
119 localHandlerApp->GetParameterCount(&len);
120 if (mParameters.Length() != len)
121 return NS_OK;
123 // Check the command line params lists
124 for (PRUint32 idx = 0; idx < mParameters.Length(); idx++) {
125 nsAutoString param;
126 if (NS_FAILED(localHandlerApp->GetParameter(idx, param)) ||
127 !param.Equals(mParameters[idx]))
128 return NS_OK;
131 return executable->Equals(mExecutable, _retval);
134 NS_IMETHODIMP
135 nsLocalHandlerApp::LaunchWithURI(nsIURI *aURI,
136 nsIInterfaceRequestor *aWindowContext)
138 // pass the entire URI to the handler.
139 nsCAutoString spec;
140 aURI->GetAsciiSpec(spec);
141 return LaunchWithIProcess(spec);
144 nsresult
145 nsLocalHandlerApp::LaunchWithIProcess(const nsCString& aArg)
147 nsresult rv;
148 nsCOMPtr<nsIProcess> process = do_CreateInstance(NS_PROCESS_CONTRACTID, &rv);
149 if (NS_FAILED(rv))
150 return rv;
152 if (NS_FAILED(rv = process->Init(mExecutable)))
153 return rv;
155 const char *string = aArg.get();
157 return process->Run(PR_FALSE, &string, 1);
160 ////////////////////////////////////////////////////////////////////////////////
161 //// nsILocalHandlerApp
163 /* attribute nsIFile executable; */
164 NS_IMETHODIMP
165 nsLocalHandlerApp::GetExecutable(nsIFile **aExecutable)
167 NS_IF_ADDREF(*aExecutable = mExecutable);
168 return NS_OK;
171 NS_IMETHODIMP
172 nsLocalHandlerApp::SetExecutable(nsIFile *aExecutable)
174 mExecutable = aExecutable;
175 return NS_OK;
178 /* readonly attribute unsigned long parameterCount; */
179 NS_IMETHODIMP
180 nsLocalHandlerApp::GetParameterCount(PRUint32 *aParameterCount)
182 *aParameterCount = mParameters.Length();
183 return NS_OK;
186 /* void clearParameters (); */
187 NS_IMETHODIMP
188 nsLocalHandlerApp::ClearParameters()
190 mParameters.Clear();
191 return NS_OK;
194 /* void appendParameter (in AString param); */
195 NS_IMETHODIMP
196 nsLocalHandlerApp::AppendParameter(const nsAString & aParam)
198 mParameters.AppendElement(aParam);
199 return NS_OK;
202 /* AString getParameter (in unsigned long parameterIndex); */
203 NS_IMETHODIMP
204 nsLocalHandlerApp::GetParameter(PRUint32 parameterIndex, nsAString & _retval)
206 if (mParameters.Length() <= parameterIndex)
207 return NS_ERROR_INVALID_ARG;
209 _retval.Assign(mParameters[parameterIndex]);
210 return NS_OK;
213 /* boolean parameterExists (in AString param); */
214 NS_IMETHODIMP
215 nsLocalHandlerApp::ParameterExists(const nsAString & aParam, PRBool *_retval)
217 *_retval = mParameters.Contains(aParam);
218 return NS_OK;