Skip to content

Commit

Permalink
[github-704] Add UserNameAwareTempFileCreationStrategy. Thanks to Tig…
Browse files Browse the repository at this point in the history
…erZCoder. This closes #704

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1921154 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
pjfanning committed Oct 6, 2024
1 parent 70aba42 commit d034f95
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,38 +73,6 @@ public DefaultTempFileCreationStrategy(File dir) {
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
Expand Down Expand Up @@ -137,4 +105,45 @@ public File createTempDirectory(String prefix) throws IOException {
// 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();
}
}
}

}
Original file line number Diff line number Diff line change
@@ -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);
}

}
Original file line number Diff line number Diff line change
@@ -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());
}

}

0 comments on commit d034f95

Please sign in to comment.