Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/solaris/classes/sun/nio/fs/SolarisFileSystemProvider.java
32288 views
/*1* Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package sun.nio.fs;2627import java.nio.file.*;28import java.nio.file.attribute.*;29import java.nio.file.spi.FileTypeDetector;30import java.io.IOException;31import java.security.AccessController;32import sun.security.action.GetPropertyAction;3334/**35* Solaris implementation of FileSystemProvider36*/3738public class SolarisFileSystemProvider extends UnixFileSystemProvider {39public SolarisFileSystemProvider() {40super();41}4243@Override44SolarisFileSystem newFileSystem(String dir) {45return new SolarisFileSystem(this, dir);46}4748@Override49SolarisFileStore getFileStore(UnixPath path) throws IOException {50return new SolarisFileStore(path);51}525354@Override55@SuppressWarnings("unchecked")56public <V extends FileAttributeView> V getFileAttributeView(Path obj,57Class<V> type,58LinkOption... options)59{60if (type == AclFileAttributeView.class) {61return (V) new SolarisAclFileAttributeView(UnixPath.toUnixPath(obj),62Util.followLinks(options));63}64if (type == UserDefinedFileAttributeView.class) {65return(V) new SolarisUserDefinedFileAttributeView(UnixPath.toUnixPath(obj),66Util.followLinks(options));67}68return super.getFileAttributeView(obj, type, options);69}7071@Override72public DynamicFileAttributeView getFileAttributeView(Path obj,73String name,74LinkOption... options)75{76if (name.equals("acl"))77return new SolarisAclFileAttributeView(UnixPath.toUnixPath(obj),78Util.followLinks(options));79if (name.equals("user"))80return new SolarisUserDefinedFileAttributeView(UnixPath.toUnixPath(obj),81Util.followLinks(options));82return super.getFileAttributeView(obj, name, options);83}8485@Override86FileTypeDetector getFileTypeDetector() {87Path userMimeTypes = Paths.get(AccessController.doPrivileged(88new GetPropertyAction("user.home")), ".mime.types");89Path etcMimeTypes = Paths.get("/etc/mime.types");9091return chain(new GnomeFileTypeDetector(),92new MimeTypesFileTypeDetector(userMimeTypes),93new MimeTypesFileTypeDetector(etcMimeTypes));94}95}969798