VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/xpcom/io/nsILocalFile.idl@ 101944

Last change on this file since 101944 was 101944, checked in by vboxsync, 13 months ago

libs/xpcom: Convert xcDll.{cpp,h} and nsLocalFileUnix.cpp to use our RTLdr* API directly instead of going through the API defined in prlink.h (which is also just using RTLdr* internally), bugref:10545

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.3 KB
Line 
1/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 *
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
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 Communicator client code, released
16 * March 31, 1998.
17 *
18 * The Initial Developer of the Original Code is
19 * Netscape Communications Corporation.
20 * Portions created by the Initial Developer are Copyright (C) 1998-1999
21 * the Initial Developer. All Rights Reserved.
22 *
23 * Contributor(s):
24 * Doug Turner <dougt@netscape.com>
25 * Darin Fisher <darin@netscape.com>
26 *
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.
38 *
39 * ***** END LICENSE BLOCK ***** */
40
41#include "nsIFile.idl"
42
43%{C++
44#include "prio.h"
45#include <stdio.h>
46
47#include <iprt/ldr.h>
48%}
49
50[ptr] native PRFileDescStar(PRFileDesc);
51[ptr] native RTLDRMOD(RTLDRMODINTERNAL);
52[ptr] native FILE(FILE);
53
54/**
55 * This interface adds methods to nsIFile that are particular to a file
56 * that is accessible via the local file system.
57 *
58 * It follows the same string conventions as nsIFile.
59 *
60 * @status FROZEN
61 */
62[scriptable, uuid(aa610f20-a889-11d3-8c81-000064657374)]
63interface nsILocalFile : nsIFile
64{
65 /**
66 * initWith[Native]Path
67 *
68 * This function will initialize the nsILocalFile object. Any
69 * internal state information will be reset.
70 *
71 * NOTE: This function has a known bug on the macintosh and
72 * other OSes which do not represent file locations as paths.
73 * If you do use this function, be very aware of this problem!
74 *
75 * @param filePath
76 * A string which specifies a full file path to a
77 * location. Relative paths will be treated as an
78 * error (NS_ERROR_FILE_UNRECOGNIZED_PATH). For
79 * initWithNativePath, the filePath must be in the native
80 * filesystem charset.
81 */
82 void initWithPath(in AString filePath);
83 [noscript] void initWithNativePath(in ACString filePath);
84
85 /**
86 * initWithFile
87 *
88 * Initialize this object with another file
89 *
90 * @param aFile
91 * the file this becomes equivalent to
92 */
93 void initWithFile(in nsILocalFile aFile);
94
95 /**
96 * followLinks
97 *
98 * This attribute will determine if the nsLocalFile will auto
99 * resolve symbolic links. By default, this value will be false
100 * on all non unix systems. On unix, this attribute is effectively
101 * a noop.
102 */
103 attribute PRBool followLinks;
104
105 [noscript] PRFileDescStar openNSPRFileDesc(in long flags, in long mode);
106 [noscript] FILE openANSIFileDesc(in string mode);
107
108 [noscript] RTLDRMOD load();
109
110 readonly attribute PRInt64 diskSpaceAvailable;
111
112 /**
113 * appendRelative[Native]Path
114 *
115 * Append a relative path to the current path of the nsILocalFile object.
116 *
117 * @param relativeFilePath
118 * relativeFilePath is a native relative path. For security reasons,
119 * this cannot contain .. or cannot start with a directory separator.
120 * For the |appendRelativeNativePath| method, the relativeFilePath
121 * must be in the native filesystem charset.
122 */
123 void appendRelativePath(in AString relativeFilePath);
124 [noscript] void appendRelativeNativePath(in ACString relativeFilePath);
125
126 /**
127 * Accessor to a null terminated string which will specify
128 * the file in a persistent manner for disk storage.
129 *
130 * The character set of this attribute is undefined. DO NOT TRY TO
131 * INTERPRET IT AS HUMAN READABLE TEXT!
132 */
133 attribute ACString persistentDescriptor;
134
135 /**
136 * reveal
137 *
138 * Ask the operating system to open the folder which contains
139 * this file or folder. This routine only works on platforms which
140 * support the ability to open a folder...
141 */
142 void reveal();
143
144 /**
145 * launch
146 *
147 * Ask the operating system to attempt to open the file.
148 * this really just simulates "double clicking" the file on your platform.
149 * This routine only works on platforms which support this functionality.
150 */
151 void launch();
152
153 /**
154 * getRelativeDescriptor
155 *
156 * Returns a relative file path in an opaque, XP format. It is therefore
157 * not a native path.
158 *
159 * The character set of the string returned from this function is
160 * undefined. DO NOT TRY TO INTERPRET IT AS HUMAN READABLE TEXT!
161 *
162 * @param fromFile
163 * the file from which the descriptor is relative.
164 * There is no defined result if this param is null.
165 */
166 ACString getRelativeDescriptor(in nsILocalFile fromFile);
167
168 /**
169 * setRelativeDescriptor
170 *
171 * Initializes the file to the location relative to fromFile using
172 * a string returned by getRelativeDescriptor.
173 *
174 * @param fromFile
175 * the file to which the descriptor is relative
176 * @param relative
177 * the relative descriptor obtained from getRelativeDescriptor
178 */
179 void setRelativeDescriptor(in nsILocalFile fromFile, in ACString relativeDesc);
180};
181
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette