Skip to content
Snippets Groups Projects
Commit 2de8646b authored by Greg DiCristofaro's avatar Greg DiCristofaro
Browse files

updates for ignoring placeholder paths

parent 9e4c0b98
No related branches found
No related tags found
No related merge requests found
...@@ -194,6 +194,8 @@ public class Case { ...@@ -194,6 +194,8 @@ public class Case {
private final SleuthkitEventListener sleuthkitEventListener; private final SleuthkitEventListener sleuthkitEventListener;
private CollaborationMonitor collaborationMonitor; private CollaborationMonitor collaborationMonitor;
private Services caseServices; private Services caseServices;
// matches something like '\\.\PHYSICALDRIVE0'
private static final String PLACEHOLDER_DS_PATH_REGEX = "^\\s*\\\\\\\\\\.\\\\(PHYSICALDRIVE)\\d*\\s*$";
private volatile boolean hasDataSource = false; private volatile boolean hasDataSource = false;
private volatile boolean hasData = false; private volatile boolean hasData = false;
...@@ -1305,6 +1307,13 @@ private static void updateGUIForCaseOpened(Case newCurrentCase) { ...@@ -1305,6 +1307,13 @@ private static void updateGUIForCaseOpened(Case newCurrentCase) {
String path = entry.getValue(); String path = entry.getValue();
boolean fileExists = (new File(path).isFile() || DriveUtils.driveExists(path)); boolean fileExists = (new File(path).isFile() || DriveUtils.driveExists(path));
if (!fileExists) { if (!fileExists) {
// CT-7336: ignore relocating datasources if file provider is present and placeholder path is used.
if (newCurrentCase.getMetadata() != null
&& !StringUtils.isBlank(newCurrentCase.getMetadata().getContentProviderName())
&& (path == null || path.matches(PLACEHOLDER_DS_PATH_REGEX))) {
continue;
}
try { try {
// Using invokeAndWait means that the dialog will // Using invokeAndWait means that the dialog will
// open on the EDT but this thread will wait for an // open on the EDT but this thread will wait for an
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment