HADOOP-10031. Merging change r1530823 from trunk to branch-2.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1530827 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
82c4a9438d
commit
e9ae7ba096
|
@ -125,6 +125,9 @@ Release 2.2.1 - UNRELEASED
|
||||||
HADOOP-10030. FsShell -put/copyFromLocal should support Windows local path.
|
HADOOP-10030. FsShell -put/copyFromLocal should support Windows local path.
|
||||||
(Chuan Liu via cnauroth)
|
(Chuan Liu via cnauroth)
|
||||||
|
|
||||||
|
HADOOP-10031. FsShell -get/copyToLocal/moveFromLocal should support Windows
|
||||||
|
local path. (Chuan Liu via cnauroth)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -84,13 +84,18 @@ abstract class CommandWithDestination extends FsCommand {
|
||||||
*/
|
*/
|
||||||
protected void getLocalDestination(LinkedList<String> args)
|
protected void getLocalDestination(LinkedList<String> args)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
try {
|
|
||||||
String pathString = (args.size() < 2) ? Path.CUR_DIR : args.removeLast();
|
String pathString = (args.size() < 2) ? Path.CUR_DIR : args.removeLast();
|
||||||
|
try {
|
||||||
dst = new PathData(new URI(pathString), getConf());
|
dst = new PathData(new URI(pathString), getConf());
|
||||||
} catch (URISyntaxException e) {
|
} catch (URISyntaxException e) {
|
||||||
|
if (Path.WINDOWS) {
|
||||||
|
// Unlike URI, PathData knows how to parse Windows drive-letter paths.
|
||||||
|
dst = new PathData(pathString, getConf());
|
||||||
|
} else {
|
||||||
throw new IOException("unexpected URISyntaxException", e);
|
throw new IOException("unexpected URISyntaxException", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The last arg is expected to be a remote path, if only one argument is
|
* The last arg is expected to be a remote path, if only one argument is
|
||||||
|
|
|
@ -457,6 +457,34 @@ public class TestFsShellCopy {
|
||||||
assertTrue(lfs.exists(srcDir));
|
assertTrue(lfs.exists(srcDir));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testMoveFromWindowsLocalPath() throws Exception {
|
||||||
|
assumeTrue(Path.WINDOWS);
|
||||||
|
Path testRoot = new Path(testRootDir, "testPutFile");
|
||||||
|
lfs.delete(testRoot, true);
|
||||||
|
lfs.mkdirs(testRoot);
|
||||||
|
|
||||||
|
Path target = new Path(testRoot, "target");
|
||||||
|
Path srcFile = new Path(testRoot, new Path("srcFile"));
|
||||||
|
lfs.createNewFile(srcFile);
|
||||||
|
|
||||||
|
String winSrcFile = (new File(srcFile.toUri().getPath()
|
||||||
|
.toString())).getAbsolutePath();
|
||||||
|
shellRun(0, "-moveFromLocal", winSrcFile, target.toString());
|
||||||
|
assertFalse(lfs.exists(srcFile));
|
||||||
|
assertTrue(lfs.exists(target));
|
||||||
|
assertTrue(lfs.isFile(target));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetWindowsLocalPath() throws Exception {
|
||||||
|
assumeTrue(Path.WINDOWS);
|
||||||
|
String winDstFile = (new File(dstPath.toUri().getPath()
|
||||||
|
.toString())).getAbsolutePath();
|
||||||
|
shellRun(0, "-get", srcPath.toString(), winDstFile);
|
||||||
|
checkPath(dstPath, false);
|
||||||
|
}
|
||||||
|
|
||||||
private void createFile(Path ... paths) throws IOException {
|
private void createFile(Path ... paths) throws IOException {
|
||||||
for (Path path : paths) {
|
for (Path path : paths) {
|
||||||
FSDataOutputStream out = lfs.create(path);
|
FSDataOutputStream out = lfs.create(path);
|
||||||
|
|
Loading…
Reference in New Issue