Michael Blow has uploaded a new change for review.

  https://asterix-gerrit.ics.uci.edu/1556

Change subject: Fix Windows Startup Regression
......................................................................

Fix Windows Startup Regression

- Fix error in regex when using Windows file separator (i.e. backslash)
  preventing server start
- Added tests to prevent future regressions of the same

Change-Id: Ie83930572d79a587b85c3de2b2a3191c5e8bf77f
---
M 
hyracks-fullstack/hyracks/hyracks-util/src/main/java/org/apache/hyracks/util/file/FileUtil.java
A 
hyracks-fullstack/hyracks/hyracks-util/src/test/java/org/apache/hyracks/util/file/FileUtilTest.java
2 files changed, 50 insertions(+), 3 deletions(-)


  git pull ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb 
refs/changes/56/1556/1

diff --git 
a/hyracks-fullstack/hyracks/hyracks-util/src/main/java/org/apache/hyracks/util/file/FileUtil.java
 
b/hyracks-fullstack/hyracks/hyracks-util/src/main/java/org/apache/hyracks/util/file/FileUtil.java
index d44f1b4..d4aa599 100644
--- 
a/hyracks-fullstack/hyracks/hyracks-util/src/main/java/org/apache/hyracks/util/file/FileUtil.java
+++ 
b/hyracks-fullstack/hyracks/hyracks-util/src/main/java/org/apache/hyracks/util/file/FileUtil.java
@@ -19,14 +19,20 @@
 package org.apache.hyracks.util.file;
 
 import java.io.File;
+import java.util.regex.Pattern;
 
 public class FileUtil {
     private FileUtil() {
     }
 
     public static String joinPath(String... elements) {
-        return String.join(File.separator, elements)
-                .replaceAll("([^:])(" + File.separator + ")+", "$1$2")
-                .replaceAll(File.separator + "$", "");
+        return joinPath(File.separatorChar, elements);
+    }
+
+    static String joinPath(char separatorChar, String... elements) {
+        final String separator = Pattern.quote(String.valueOf(separatorChar));
+        return String.join(separator, elements)
+                .replaceAll("([^:])(" + separator + ")+", "$1$2")
+                .replaceAll(separator + "$", "");
     }
 }
diff --git 
a/hyracks-fullstack/hyracks/hyracks-util/src/test/java/org/apache/hyracks/util/file/FileUtilTest.java
 
b/hyracks-fullstack/hyracks/hyracks-util/src/test/java/org/apache/hyracks/util/file/FileUtilTest.java
new file mode 100644
index 0000000..b595fd0
--- /dev/null
+++ 
b/hyracks-fullstack/hyracks/hyracks-util/src/test/java/org/apache/hyracks/util/file/FileUtilTest.java
@@ -0,0 +1,41 @@
+/*
+ * 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.hyracks.util.file;
+
+import static org.apache.hyracks.util.file.FileUtil.joinPath;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+public class FileUtilTest {
+
+    @Test
+    public void testUnixPaths() {
+        Assert.assertEquals("/tmp/far/baz/lala", joinPath('/', 
"/tmp//far/baz////lala"));
+        Assert.assertEquals("tmp/far/bar", joinPath('/',"tmp//far/bar"));
+        Assert.assertEquals("/tmp/far/bar", joinPath('/',"/tmp//far/bar/"));
+    }
+
+    @Test
+    public void testWindozePaths() {
+        Assert.assertEquals("C:\\temp\\far\\baz\\lala", joinPath('\\', 
"C:\\temp\\\\far\\baz\\\\\\\\lala"));
+        Assert.assertEquals("\\\\myserver\\tmp\\far\\baz\\lala", 
joinPath('\\', "\\\\myserver\\tmp\\\\far\\baz\\\\\\\\lala"));
+        Assert.assertEquals("C:\\temp\\far\\baz\\lala", joinPath('\\', 
"C:\\temp\\\\far\\baz\\\\\\\\lala\\"));
+    }
+}

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/1556
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie83930572d79a587b85c3de2b2a3191c5e8bf77f
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Michael Blow <[email protected]>

Reply via email to