Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.desktop/macosx/classes/com/apple/eio/FileManager.java
41153 views
1
/*
2
* Copyright (c) 2011, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package com.apple.eio;
27
28
import java.io.*;
29
30
/**
31
* Provides functionality to query and modify Mac-specific file attributes. The methods in this class are based on Finder
32
* attributes. These attributes in turn are dependent on HFS and HFS+ file systems. As such, it is important to recognize
33
* their limitation when writing code that must function well across multiple platforms.<p>
34
*
35
* In addition to file name suffixes, Mac OS X can use Finder attributes like file {@code type} and {@code creator} codes to
36
* identify and handle files. These codes are unique 4-byte identifiers. The file {@code type} is a string that describes the
37
* contents of a file. For example, the file type {@code APPL} identifies the file as an application and therefore
38
* executable. A file type of {@code TEXT} means that the file contains raw text. Any application that can read raw
39
* text can open a file of type {@code TEXT}. Applications that use proprietary file types might assign their files a proprietary
40
* file {@code type} code.
41
* <p>
42
* To identify the application that can handle a document, the Finder can look at the {@code creator}. For example, if a user
43
* double-clicks on a document with the {@code ttxt creator}, it opens up in Text Edit, the application registered
44
* with the {@code ttxt creator} code. Note that the {@code creator}
45
* code can be set to any application, not necessarily the application that created it. For example, if you
46
* use an editor to create an HTML document, you might want to assign a browser's {@code creator} code for the file rather than
47
* the HTML editor's {@code creator} code. Double-clicking on the document then opens the appropriate browser rather than the
48
*HTML editor.
49
*<p>
50
* If you plan to publicly distribute your application, you must register its creator and any proprietary file types with the Apple
51
* Developer Connection to avoid collisions with codes used by other developers. You can register a codes online at the
52
* <a target=_blank href=http://developer.apple.com/dev/cftype/>Creator Code Registration</a> site.
53
*
54
* @since 1.4
55
*/
56
@SuppressWarnings("removal")
57
public class FileManager {
58
static {
59
java.security.AccessController.doPrivileged(
60
new java.security.PrivilegedAction<Void>() {
61
public Void run() {
62
System.loadLibrary("osx");
63
return null;
64
}
65
});
66
}
67
68
/**
69
* The default
70
* @since Java for Mac OS X 10.5 - 1.5
71
* @since Java for Mac OS X 10.5 Update 1 - 1.6
72
*/
73
public static final short kOnAppropriateDisk = -32767;
74
/**
75
* Read-only system hierarchy.
76
* @since Java for Mac OS X 10.5 - 1.5
77
* @since Java for Mac OS X 10.5 Update 1 - 1.6
78
*/
79
public static final short kSystemDomain = -32766;
80
/**
81
* All users of a single machine have access to these resources.
82
* @since Java for Mac OS X 10.5 - 1.5
83
* @since Java for Mac OS X 10.5 Update 1 - 1.6
84
*/
85
public static final short kLocalDomain = -32765;
86
/**
87
* All users configured to use a common network server has access to these resources.
88
* @since Java for Mac OS X 10.5 - 1.5
89
* @since Java for Mac OS X 10.5 Update 1 - 1.6
90
*/
91
public static final short kNetworkDomain = -32764;
92
/**
93
* Read/write. Resources that are private to the user.
94
* @since Java for Mac OS X 10.5 - 1.5
95
* @since Java for Mac OS X 10.5 Update 1 - 1.6
96
*/
97
public static final short kUserDomain = -32763;
98
99
100
/**
101
* Converts an OSType (e.g. "macs"
102
* from {@literal <CarbonCore/Folders.h>}) into an int.
103
*
104
* @param type the 4 character type to convert.
105
* @return an int representing the 4 character value
106
*
107
* @since Java for Mac OS X 10.5 - 1.5
108
* @since Java for Mac OS X 10.5 Update 1 - 1.6
109
*/
110
@SuppressWarnings("deprecation")
111
public static int OSTypeToInt(String type) {
112
int result = 0;
113
114
byte[] b = { (byte) 0, (byte) 0, (byte) 0, (byte) 0 };
115
int len = type.length();
116
if (len > 0) {
117
if (len > 4) len = 4;
118
type.getBytes(0, len, b, 4 - len);
119
}
120
121
for (int i = 0; i < len; i++) {
122
if (i > 0) result <<= 8;
123
result |= (b[i] & 0xff);
124
}
125
126
return result;
127
}
128
129
/**
130
* Sets the file {@code type} and {@code creator} codes for a file or folder.
131
*
132
* @since 1.4
133
*/
134
public static void setFileTypeAndCreator(String filename, int type, int creator) throws IOException {
135
SecurityManager security = System.getSecurityManager();
136
if (security != null) {
137
security.checkWrite(filename);
138
}
139
_setFileTypeAndCreator(filename, type, creator);
140
}
141
private static native void _setFileTypeAndCreator(String filename, int type, int creator) throws IOException;
142
143
/**
144
* Sets the file {@code type} code for a file or folder.
145
*
146
* @since 1.4
147
*/
148
public static void setFileType(String filename, int type) throws IOException {
149
SecurityManager security = System.getSecurityManager();
150
if (security != null) {
151
security.checkWrite(filename);
152
}
153
_setFileType(filename, type);
154
}
155
private static native void _setFileType(String filename, int type) throws IOException;
156
157
/**
158
* Sets the file {@code creator} code for a file or folder.
159
*
160
* @since 1.4
161
*/
162
public static void setFileCreator(String filename, int creator) throws IOException {
163
SecurityManager security = System.getSecurityManager();
164
if (security != null) {
165
security.checkWrite(filename);
166
}
167
_setFileCreator(filename, creator);
168
}
169
private static native void _setFileCreator(String filename, int creator) throws IOException;
170
171
/**
172
* Obtains the file {@code type} code for a file or folder.
173
*
174
* @since 1.4
175
*/
176
public static int getFileType(String filename) throws IOException {
177
SecurityManager security = System.getSecurityManager();
178
if (security != null) {
179
security.checkRead(filename);
180
}
181
return _getFileType(filename);
182
}
183
private static native int _getFileType(String filename) throws IOException;
184
185
/**
186
* Obtains the file {@code creator} code for a file or folder.
187
*
188
* @since 1.4
189
*/
190
public static int getFileCreator(String filename) throws IOException {
191
SecurityManager security = System.getSecurityManager();
192
if (security != null) {
193
security.checkRead(filename);
194
}
195
return _getFileCreator(filename);
196
}
197
private static native int _getFileCreator(String filename) throws IOException;
198
199
200
/**
201
* Locates a folder of a particular type. Mac OS X recognizes certain specific folders that have distinct purposes.
202
* For example, the user's desktop or temporary folder. These folders have corresponding codes. Given one of these codes,
203
* this method returns the path to that particular folder. Certain folders of a given type may appear in more than
204
* one domain. For example, although there is only one {@code root} folder, there are multiple {@code pref}
205
* folders. If this method is called to find the {@code pref} folder, it will return the first one it finds,
206
* the user's preferences folder in {@code ~/Library/Preferences}. To explicitly locate a folder in a certain
207
* domain use {@code findFolder(short domain, int folderType)} or
208
* {@code findFolder(short domain, int folderType, boolean createIfNeeded)}.
209
*
210
* @return the path to the folder searched for
211
*
212
* @since 1.4
213
*/
214
public static String findFolder(int folderType) throws FileNotFoundException {
215
return findFolder(kOnAppropriateDisk, folderType);
216
}
217
218
/**
219
* Locates a folder of a particular type, within a given domain. Similar to {@code findFolder(int folderType)}
220
* except that the domain to look in can be specified. Valid values for {@code domain} include:
221
* <dl>
222
* <dt>user</dt>
223
* <dd>The User domain contains resources specific to the user who is currently logged in</dd>
224
* <dt>local</dt>
225
* <dd>The Local domain contains resources shared by all users of the system but are not needed for the system
226
* itself to run.</dd>
227
* <dt>network</dt>
228
* <dd>The Network domain contains resources shared by users of a local area network.</dd>
229
* <dt>system</dt>
230
* <dd>The System domain contains the operating system resources installed by Apple.</dd>
231
* </dl>
232
*
233
* @return the path to the folder searched for
234
*
235
* @since 1.4
236
*/
237
public static String findFolder(short domain, int folderType) throws FileNotFoundException {
238
return findFolder(domain, folderType, false);
239
}
240
241
/**
242
* Locates a folder of a particular type within a given domain and optionally creating the folder if it does
243
* not exist. The behavior is similar to {@code findFolder(int folderType)} and
244
* {@code findFolder(short domain, int folderType)} except that it can create the folder if it does not already exist.
245
*
246
* @param createIfNeeded
247
* set to {@code true}, by setting to {@code false} the behavior will be the
248
* same as {@code findFolder(short domain, int folderType, boolean createIfNeeded)}
249
* @return the path to the folder searched for
250
*
251
* @since 1.4
252
*/
253
public static String findFolder(short domain, int folderType, boolean createIfNeeded) throws FileNotFoundException {
254
final SecurityManager security = System.getSecurityManager();
255
if (security != null) {
256
security.checkPermission(new RuntimePermission("canExamineFileSystem"));
257
}
258
259
final String foundFolder = _findFolder(domain, folderType, createIfNeeded);
260
if (foundFolder == null) throw new FileNotFoundException("Can't find folder: " + Integer.toHexString(folderType));
261
return foundFolder;
262
}
263
private static native String _findFolder(short domain, int folderType, boolean createIfNeeded);
264
265
266
/**
267
* Opens the path specified by a URL in the appropriate application for that URL. HTTP URL's ({@code http://})
268
* open in the default browser as set in the Internet pane of System Preferences. File ({@code file://}) and
269
* FTP URL's ({@code ftp://}) open in the Finder. Note that opening an FTP URL will prompt the user for where
270
* they want to save the downloaded file(s).
271
*
272
* @param url
273
* the URL for the file you want to open, it can either be an HTTP, FTP, or file url
274
*
275
* @deprecated this functionality has been superseded by java.awt.Desktop.browse() and java.awt.Desktop.open()
276
*
277
* @since 1.4
278
*/
279
@Deprecated
280
public static void openURL(String url) throws IOException {
281
SecurityManager security = System.getSecurityManager();
282
if (security != null) {
283
security.checkPermission(new RuntimePermission("canOpenURLs"));
284
}
285
_openURL(url);
286
}
287
private static native void _openURL(String url) throws IOException;
288
289
/**
290
* @return full pathname for the resource identified by a given name.
291
*
292
* @since 1.4
293
*/
294
public static String getResource(String resourceName) throws FileNotFoundException {
295
return getResourceFromBundle(resourceName, null, null);
296
}
297
298
/**
299
* @return full pathname for the resource identified by a given name and located in the specified bundle subdirectory.
300
*
301
* @since 1.4
302
*/
303
public static String getResource(String resourceName, String subDirName) throws FileNotFoundException {
304
return getResourceFromBundle(resourceName, subDirName, null);
305
}
306
307
/**
308
* Returns the full pathname for the resource identified by the given name and file extension
309
* and located in the specified bundle subdirectory.
310
*
311
* If extension is an empty string or null, the returned pathname is the first one encountered where the
312
* file name exactly matches name.
313
*
314
* If subpath is null, this method searches the top-level nonlocalized resource directory (typically Resources)
315
* and the top-level of any language-specific directories. For example, suppose you have a modern bundle and
316
* specify "Documentation" for the subpath parameter. This method would first look in the
317
* Contents/Resources/Documentation directory of the bundle, followed by the Documentation subdirectories of
318
* each language-specific .lproj directory. (The search order for the language-specific directories
319
* corresponds to the user's preferences.) This method does not recurse through any other subdirectories at
320
* any of these locations. For more details see the AppKit NSBundle documentation.
321
*
322
* @return full pathname for the resource identified by the given name and file extension and located in the specified bundle subdirectory.
323
*
324
* @since 1.4
325
*/
326
public static String getResource(String resourceName, String subDirName, String type) throws FileNotFoundException {
327
return getResourceFromBundle(resourceName, subDirName, type);
328
}
329
330
private static native String getNativeResourceFromBundle(String resourceName, String subDirName, String type) throws FileNotFoundException;
331
private static String getResourceFromBundle(String resourceName, String subDirName, String type) throws FileNotFoundException {
332
final SecurityManager security = System.getSecurityManager();
333
if (security != null) security.checkPermission(new RuntimePermission("canReadBundle"));
334
335
final String resourceFromBundle = getNativeResourceFromBundle(resourceName, subDirName, type);
336
if (resourceFromBundle == null) throw new FileNotFoundException(resourceName);
337
return resourceFromBundle;
338
}
339
340
/**
341
* Obtains the path to the current application's NSBundle, may not
342
* return a valid path if Java was launched from the command line.
343
*
344
* @return full pathname of the NSBundle of the current application executable.
345
*
346
* @since Java for Mac OS X 10.5 Update 1 - 1.6
347
* @since Java for Mac OS X 10.5 Update 2 - 1.5
348
*/
349
public static String getPathToApplicationBundle() {
350
SecurityManager security = System.getSecurityManager();
351
if (security != null) security.checkPermission(new RuntimePermission("canReadBundle"));
352
return getNativePathToApplicationBundle();
353
}
354
355
private static native String getNativePathToApplicationBundle();
356
357
/**
358
* Moves the specified file to the Trash
359
*
360
* @param file the file
361
* @return returns true if the NSFileManager successfully moved the file to the Trash.
362
* @throws FileNotFoundException
363
*
364
* @since Java for Mac OS X 10.6 Update 1 - 1.6
365
* @since Java for Mac OS X 10.5 Update 6 - 1.6, 1.5
366
*/
367
public static boolean moveToTrash(final File file) throws FileNotFoundException {
368
if (file == null) throw new FileNotFoundException();
369
final String fileName = file.getAbsolutePath();
370
371
final SecurityManager security = System.getSecurityManager();
372
if (security != null) security.checkDelete(fileName);
373
374
return _moveToTrash(fileName);
375
}
376
377
private static native boolean _moveToTrash(String fileName);
378
379
/**
380
* Reveals the specified file in the Finder
381
*
382
* @param file
383
* the file to reveal
384
* @return returns true if the NSFileManager successfully revealed the file in the Finder.
385
* @throws FileNotFoundException
386
*
387
* @since Java for Mac OS X 10.6 Update 1 - 1.6
388
* @since Java for Mac OS X 10.5 Update 6 - 1.6, 1.5
389
*/
390
public static boolean revealInFinder(final File file) throws FileNotFoundException {
391
if (file == null || !file.exists()) throw new FileNotFoundException();
392
final String fileName = file.getAbsolutePath();
393
394
final SecurityManager security = System.getSecurityManager();
395
if (security != null) security.checkRead(fileName);
396
397
return _revealInFinder(fileName);
398
}
399
400
private static native boolean _revealInFinder(String fileName);
401
}
402
403