/* * Copyright (c) 2012, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package jdk.internal.loader; import java.io.File; class ClassLoaderHelper { private ClassLoaderHelper() {} /** * Returns an alternate path name for the given file * such that if the original pathname did not exist, then the * file may be located at the alternate location. * For most platforms, this behavior is not supported and returns null. */ static File mapAlternativeName(File lib) { return null; } /** * Parse a PATH env variable. Windows allows quoted elements in a PATH, * so special care needs to be taken. * * Empty elements will be replaced by dot. */ static String[] parsePath(String ldPath) { int ldLen = ldPath.length(); char ps = File.pathSeparatorChar; int psCount = 0; if (ldPath.indexOf('\"') >= 0) { // First, remove quotes put around quoted parts of paths. // Second, use a quotation mark as a new path separator. // This will preserve any quoted old path separators. char[] buf = new char[ldLen]; int bufLen = 0; for (int i = 0; i < ldLen; ++i) { char ch = ldPath.charAt(i); if (ch == '\"') { while (++i < ldLen && (ch = ldPath.charAt(i)) != '\"') { buf[bufLen++] = ch; } } else { if (ch == ps) { psCount++; ch = '\"'; } buf[bufLen++] = ch; } } ldPath = new String(buf, 0, bufLen); ldLen = bufLen; ps = '\"'; } else { for (int i = ldPath.indexOf(ps); i >= 0; i = ldPath.indexOf(ps, i + 1)) { psCount++; } } String[] paths = new String[psCount + 1]; int pathStart = 0; for (int j = 0; j < psCount; ++j) { int pathEnd = ldPath.indexOf(ps, pathStart); paths[j] = (pathStart < pathEnd) ? ldPath.substring(pathStart, pathEnd) : "."; pathStart = pathEnd + 1; } paths[psCount] = (pathStart < ldLen) ? ldPath.substring(pathStart, ldLen) : "."; return paths; } }