replaced by .editorconfig # ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D287878
151 lines
3.8 KiB
Plaintext
151 lines
3.8 KiB
Plaintext
/* 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/. */
|
|
|
|
#include "nsIFile.idl"
|
|
|
|
%{C++
|
|
#include <Carbon/Carbon.h>
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
%}
|
|
|
|
native OSType(OSType);
|
|
native FSSpec(FSSpec);
|
|
native FSRef(FSRef);
|
|
[ptr] native FSRefPtr(FSRef);
|
|
native CFURLRef(CFURLRef);
|
|
|
|
[scriptable, builtinclass, uuid(623eca5b-c25d-4e27-be5a-789a66c4b2f7)]
|
|
interface nsILocalFileMac : nsIFile
|
|
{
|
|
/**
|
|
* initWithCFURL
|
|
*
|
|
* Init this object with a CFURLRef
|
|
*
|
|
* NOTE: If the path of the CFURL is /a/b/c, at least a/b must exist beforehand.
|
|
*
|
|
* @param aCFURL the CoreFoundation URL
|
|
*
|
|
*/
|
|
[noscript] void initWithCFURL(in CFURLRef aCFURL);
|
|
|
|
/**
|
|
* initWithFSRef
|
|
*
|
|
* Init this object with an FSRef
|
|
*
|
|
* @param aFSRef the native FSRef
|
|
*
|
|
*/
|
|
[noscript] void initWithFSRef([const] in FSRefPtr aFSRef);
|
|
|
|
/**
|
|
* getCFURL
|
|
*
|
|
* Returns the CFURLRef of the file object. The caller is
|
|
* responsible for calling CFRelease() on it.
|
|
*
|
|
* NOTE: Observes the state of the followLinks attribute.
|
|
* If the file object is an alias and followLinks is TRUE, returns
|
|
* the target of the alias. If followLinks is FALSE, returns
|
|
* the unresolved alias file.
|
|
*
|
|
* @return
|
|
*
|
|
*/
|
|
[noscript] CFURLRef getCFURL();
|
|
|
|
/**
|
|
* getFSRef
|
|
*
|
|
* Returns the FSRef of the file object.
|
|
*
|
|
* NOTE: Observes the state of the followLinks attribute.
|
|
* If the file object is an alias and followLinks is TRUE, returns
|
|
* the target of the alias. If followLinks is FALSE, returns
|
|
* the unresolved alias file.
|
|
*
|
|
* @return
|
|
*
|
|
*/
|
|
[noscript] FSRef getFSRef();
|
|
|
|
/**
|
|
* fileType, creator
|
|
*
|
|
* File type and creator attributes
|
|
*
|
|
*/
|
|
[noscript] attribute OSType fileType;
|
|
[noscript] attribute OSType fileCreator;
|
|
|
|
/**
|
|
* launchWithDoc
|
|
*
|
|
* Launch the application that this file points to with a document.
|
|
*
|
|
* @param aDocToLoad Must not be NULL. If no document, use nsIFile::launch
|
|
* @param aLaunchInBackground TRUE if the application should not come to the front.
|
|
*
|
|
*/
|
|
void launchWithDoc(in nsIFile aDocToLoad, in boolean aLaunchInBackground);
|
|
|
|
/**
|
|
* isPackage
|
|
*
|
|
* returns true if a directory is determined to be a package
|
|
*
|
|
*/
|
|
boolean isPackage();
|
|
|
|
/**
|
|
* bundleDisplayName
|
|
*
|
|
* returns the display name of the application bundle (usually the human
|
|
* readable name of the application)
|
|
*/
|
|
readonly attribute AString bundleDisplayName;
|
|
|
|
/**
|
|
* Return whether or not the file has an extended attribute.
|
|
*
|
|
* @param aAttrName The attribute name to check for.
|
|
*
|
|
* @return Whether or not the extended attribute is present.
|
|
*/
|
|
boolean hasXAttr(in ACString aAttrName);
|
|
|
|
/**
|
|
* Get the value of the extended attribute.
|
|
*
|
|
* @param aAttrName The attribute name to read.
|
|
*
|
|
* @return The extended attribute value.
|
|
*/
|
|
Array<uint8_t> getXAttr(in ACString aAttrName);
|
|
|
|
/**
|
|
* Set an extended attribute.
|
|
*
|
|
* @param aAttrName The attribute name to set a value for.
|
|
* @param aAttrValue The value to set for the attribute.
|
|
*/
|
|
void setXAttr(in ACString aAttrName, in Array<uint8_t> aAttrValue);
|
|
|
|
/**
|
|
* Delete an extended attribute.
|
|
*
|
|
* @param aAttrName The extended attribute to delete.
|
|
*/
|
|
void delXAttr(in ACString aAttrName);
|
|
};
|
|
|
|
%{C++
|
|
extern "C"
|
|
{
|
|
NS_EXPORT nsresult NS_NewLocalFileWithFSRef(const FSRef* aFSRef, nsILocalFileMac** result);
|
|
NS_EXPORT nsresult NS_NewLocalFileWithCFURL(const CFURLRef aURL, nsILocalFileMac** result);
|
|
}
|
|
%}
|