2000-06-18 23:54:37 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 3; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2000-06-18 23:54:37 +04:00
|
|
|
|
|
|
|
#ifndef nsOSHelperAppService_h__
|
|
|
|
#define nsOSHelperAppService_h__
|
|
|
|
|
|
|
|
// The OS helper app service is a subclass of nsExternalHelperAppService and is implemented on each
|
|
|
|
// platform. It contains platform specific code for finding helper applications for a given mime type
|
|
|
|
// in addition to launching those applications. This is the Mac version.
|
|
|
|
|
|
|
|
#include "nsExternalHelperAppService.h"
|
2000-06-19 02:48:43 +04:00
|
|
|
#include "nsCExternalHandlerService.h"
|
2010-09-30 19:37:36 +04:00
|
|
|
#include "nsMIMEInfoImpl.h"
|
2000-06-18 23:54:37 +04:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
|
|
|
class nsOSHelperAppService : public nsExternalHelperAppService
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsOSHelperAppService();
|
|
|
|
virtual ~nsOSHelperAppService();
|
|
|
|
|
2000-06-19 02:48:43 +04:00
|
|
|
// override nsIExternalProtocolService methods
|
2005-07-20 23:03:41 +04:00
|
|
|
NS_IMETHOD GetApplicationDescription(const nsACString& aScheme, nsAString& _retval);
|
2000-09-15 10:06:58 +04:00
|
|
|
|
2003-01-12 04:14:35 +03:00
|
|
|
// method overrides --> used to hook the mime service into internet config....
|
2004-04-16 00:56:37 +04:00
|
|
|
NS_IMETHOD GetFromTypeAndExtension(const nsACString& aType, const nsACString& aFileExt, nsIMIMEInfo ** aMIMEInfo);
|
2011-09-29 10:19:26 +04:00
|
|
|
already_AddRefed<nsIMIMEInfo> GetMIMEInfoFromOS(const nsACString& aMIMEType, const nsACString& aFileExt, bool * aFound);
|
2008-02-20 07:46:35 +03:00
|
|
|
NS_IMETHOD GetProtocolHandlerInfoFromOS(const nsACString &aScheme,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool *found,
|
2008-02-20 07:46:35 +03:00
|
|
|
nsIHandlerInfo **_retval);
|
2000-06-19 02:48:43 +04:00
|
|
|
|
2000-06-22 08:41:36 +04:00
|
|
|
// GetFileTokenForPath must be implemented by each platform.
|
|
|
|
// platformAppPath --> a platform specific path to an application that we got out of the
|
|
|
|
// rdf data source. This can be a mac file spec, a unix path or a windows path depending on the platform
|
|
|
|
// aFile --> an nsIFile representation of that platform application path.
|
|
|
|
virtual nsresult GetFileTokenForPath(const PRUnichar * platformAppPath, nsIFile ** aFile);
|
2007-05-25 19:17:44 +04:00
|
|
|
|
|
|
|
nsresult OSProtocolHandlerExists(const char * aScheme,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool * aHandlerExists);
|
2011-01-19 05:20:35 +03:00
|
|
|
|
|
|
|
protected:
|
2012-06-06 06:08:30 +04:00
|
|
|
virtual void FixFilePermissions(nsIFile* aFile);
|
2011-01-19 05:20:35 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
PRUint32 mPermissions;
|
2000-06-18 23:54:37 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsOSHelperAppService_h__
|