diff options
Diffstat (limited to 'poi')
3 files changed, 135 insertions, 32 deletions
diff --git a/poi/src/main/java/org/apache/poi/util/DefaultTempFileCreationStrategy.java b/poi/src/main/java/org/apache/poi/util/DefaultTempFileCreationStrategy.java index 588c027b61..be7078885d 100644 --- a/poi/src/main/java/org/apache/poi/util/DefaultTempFileCreationStrategy.java +++ b/poi/src/main/java/org/apache/poi/util/DefaultTempFileCreationStrategy.java @@ -73,38 +73,6 @@ public class DefaultTempFileCreationStrategy implements TempFileCreationStrategy this.dir = dir; } - // Create our temp dir only once by double-checked locking - // The directory is not deleted, even if it was created by this TempFileCreationStrategy - private void createPOIFilesDirectoryIfNecessary() throws IOException { - // First make sure we recreate the directory if it was not somehow removed by a third party - if (dir != null && !dir.exists()) { - dir = null; - } - if (dir == null) { - final String tmpDir = System.getProperty(JAVA_IO_TMPDIR); - if (tmpDir == null) { - throw new IOException("System's temporary directory not defined - set the -D" + JAVA_IO_TMPDIR + " jvm property!"); - } - dirLock.lock(); - try { - if (dir == null) { - Path dirPath = Paths.get(tmpDir, POIFILES); - File fileDir = dirPath.toFile(); - if (fileDir.exists()) { - if (!fileDir.isDirectory()) { - throw new IOException("Could not create temporary directory. '" + fileDir + "' exists but is not a directory."); - } - dir = fileDir; - } else { - dir = Files.createDirectories(dirPath).toFile(); - } - } - } finally { - dirLock.unlock(); - } - } - } - @Override public File createTempFile(String prefix, String suffix) throws IOException { // Identify and create our temp dir, if needed @@ -137,4 +105,45 @@ public class DefaultTempFileCreationStrategy implements TempFileCreationStrategy // All done return newDirectory; } + + protected String getJavaIoTmpDir() throws IOException { + final String tmpDir = System.getProperty(JAVA_IO_TMPDIR); + if (tmpDir == null) { + throw new IOException("System's temporary directory not defined - set the -D" + JAVA_IO_TMPDIR + " jvm property!"); + } + return tmpDir; + } + + protected Path getPOIFilesDirectoryPath() throws IOException { + return Paths.get(getJavaIoTmpDir(), POIFILES); + } + + // Create our temp dir only once by double-checked locking + // The directory is not deleted, even if it was created by this TempFileCreationStrategy + private void createPOIFilesDirectoryIfNecessary() throws IOException { + // First make sure we recreate the directory if it was not somehow removed by a third party + if (dir != null && !dir.exists()) { + dir = null; + } + if (dir == null) { + dirLock.lock(); + try { + if (dir == null) { + final Path dirPath = getPOIFilesDirectoryPath(); + File fileDir = dirPath.toFile(); + if (fileDir.exists()) { + if (!fileDir.isDirectory()) { + throw new IOException("Could not create temporary directory. '" + fileDir + "' exists but is not a directory."); + } + dir = fileDir; + } else { + dir = Files.createDirectories(dirPath).toFile(); + } + } + } finally { + dirLock.unlock(); + } + } + } + } diff --git a/poi/src/main/java/org/apache/poi/util/UserNameAwareTempFileCreationStrategy.java b/poi/src/main/java/org/apache/poi/util/UserNameAwareTempFileCreationStrategy.java new file mode 100644 index 0000000000..e8b1a03c1d --- /dev/null +++ b/poi/src/main/java/org/apache/poi/util/UserNameAwareTempFileCreationStrategy.java @@ -0,0 +1,51 @@ +/* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+==================================================================== */
+
+package org.apache.poi.util;
+
+import java.io.IOException;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+
+/**
+ * Username-aware subclass of {@link DefaultTempFileCreationStrategy}
+ * that avoids permission issues when deploying applications with multiple users on the same server.
+ * Other than adding the username to the temporary directory, all other behavior is the same as the superclass.
+ *
+ * @since POI 5.3.1
+ */
+public class UserNameAwareTempFileCreationStrategy extends DefaultTempFileCreationStrategy {
+
+ /**
+ * JVM property for the current username.
+ */
+ private static final String JAVA_PROP_USER_NAME = "user.name";
+
+ @Override
+ protected Path getPOIFilesDirectoryPath() throws IOException {
+ final String tmpDir = getJavaIoTmpDir();
+ String poifilesDir = POIFILES;
+ // Make the default temporary directory contain the username to avoid permission issues
+ // when deploying applications on the same server with multiple users
+ String username = System.getProperty(JAVA_PROP_USER_NAME);
+ if (null != username && !username.isEmpty()) {
+ poifilesDir += "_" + username;
+ }
+ return Paths.get(tmpDir, poifilesDir);
+ }
+
+}
diff --git a/poi/src/test/java/org/apache/poi/util/UserNameAwareTempFileCreationStrategyTest.java b/poi/src/test/java/org/apache/poi/util/UserNameAwareTempFileCreationStrategyTest.java new file mode 100644 index 0000000000..c8fbfcd9dc --- /dev/null +++ b/poi/src/test/java/org/apache/poi/util/UserNameAwareTempFileCreationStrategyTest.java @@ -0,0 +1,43 @@ +/* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+==================================================================== */
+
+package org.apache.poi.util;
+
+import org.junit.jupiter.api.Test;
+
+import java.io.IOException;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+
+import static org.apache.poi.util.DefaultTempFileCreationStrategy.POIFILES;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+class UserNameAwareTempFileCreationStrategyTest {
+
+ @Test
+ void getPOIFilesDirectoryPath() throws IOException {
+ UserNameAwareTempFileCreationStrategy strategy = new UserNameAwareTempFileCreationStrategy();
+ String tmpDir = System.getProperty(TempFile.JAVA_IO_TMPDIR);
+ String username = System.getProperty("user.name");
+ String expectedPath = Paths.get(tmpDir, POIFILES + "_" + username).toString();
+
+ Path actualPath = strategy.getPOIFilesDirectoryPath();
+
+ assertEquals(expectedPath, actualPath.toString());
+ }
+
+}
|