HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, Ramya Bharathi Nimmagadda.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 13f79535-47bb-0310-9956-ffa450edef68
2013-03-06 19:15:18 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "winutils.h"
|
|
|
|
|
2014-10-22 22:57:46 +00:00
|
|
|
#include <winbase.h>
|
|
|
|
|
HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, Ramya Bharathi Nimmagadda.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 13f79535-47bb-0310-9956-ffa450edef68
2013-03-06 19:15:18 +00:00
|
|
|
static void Usage(LPCWSTR program);
|
|
|
|
|
2014-10-22 22:57:46 +00:00
|
|
|
LONG WINAPI WinutilsSehUnhandled(_In_ struct _EXCEPTION_POINTERS *ecxr) {
|
|
|
|
LogDebugMessage(L"unhandled SEH: code:%x flags:%d\n",
|
|
|
|
ecxr->ExceptionRecord->ExceptionCode,
|
|
|
|
ecxr->ExceptionRecord->ExceptionFlags);
|
|
|
|
fwprintf(stderr, L"Unhandled exception code:%x at address:%p",
|
|
|
|
ecxr->ExceptionRecord->ExceptionCode,
|
|
|
|
ecxr->ExceptionRecord->ExceptionAddress);
|
|
|
|
ExitProcess(ERROR_UNHANDLED_EXCEPTION);
|
|
|
|
return EXCEPTION_EXECUTE_HANDLER; // not that it matters...
|
|
|
|
}
|
|
|
|
|
2013-04-20 20:20:44 +00:00
|
|
|
int wmain(__in int argc, __in_ecount(argc) wchar_t* argv[])
|
HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, Ramya Bharathi Nimmagadda.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 13f79535-47bb-0310-9956-ffa450edef68
2013-03-06 19:15:18 +00:00
|
|
|
{
|
|
|
|
LPCWSTR cmd = NULL;
|
|
|
|
|
2014-10-22 22:57:46 +00:00
|
|
|
SetUnhandledExceptionFilter(WinutilsSehUnhandled);
|
|
|
|
|
HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, Ramya Bharathi Nimmagadda.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 13f79535-47bb-0310-9956-ffa450edef68
2013-03-06 19:15:18 +00:00
|
|
|
if (argc < 2)
|
|
|
|
{
|
|
|
|
Usage(argv[0]);
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = argv[1];
|
|
|
|
|
|
|
|
if (wcscmp(L"ls", cmd) == 0)
|
|
|
|
{
|
|
|
|
return Ls(argc - 1, argv + 1);
|
|
|
|
}
|
|
|
|
else if (wcscmp(L"chmod", cmd) == 0)
|
|
|
|
{
|
|
|
|
return Chmod(argc - 1, argv + 1);
|
|
|
|
}
|
|
|
|
else if (wcscmp(L"chown", cmd) == 0)
|
|
|
|
{
|
|
|
|
return Chown(argc - 1, argv + 1);
|
|
|
|
}
|
|
|
|
else if (wcscmp(L"groups", cmd) == 0)
|
|
|
|
{
|
|
|
|
return Groups(argc - 1, argv + 1);
|
|
|
|
}
|
|
|
|
else if (wcscmp(L"hardlink", cmd) == 0)
|
|
|
|
{
|
|
|
|
return Hardlink(argc - 1, argv + 1);
|
|
|
|
}
|
|
|
|
else if (wcscmp(L"symlink", cmd) == 0)
|
|
|
|
{
|
|
|
|
return Symlink(argc - 1, argv + 1);
|
|
|
|
}
|
2013-05-02 22:39:56 +00:00
|
|
|
else if (wcscmp(L"readlink", cmd) == 0)
|
|
|
|
{
|
|
|
|
return Readlink(argc - 1, argv + 1);
|
|
|
|
}
|
HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, Ramya Bharathi Nimmagadda.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 13f79535-47bb-0310-9956-ffa450edef68
2013-03-06 19:15:18 +00:00
|
|
|
else if (wcscmp(L"task", cmd) == 0)
|
|
|
|
{
|
|
|
|
return Task(argc - 1, argv + 1);
|
|
|
|
}
|
|
|
|
else if (wcscmp(L"systeminfo", cmd) == 0)
|
|
|
|
{
|
|
|
|
return SystemInfo();
|
|
|
|
}
|
2014-10-22 22:57:46 +00:00
|
|
|
else if (wcscmp(L"service", cmd) == 0)
|
|
|
|
{
|
|
|
|
return RunService(argc - 1, argv + 1);
|
|
|
|
}
|
HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, Ramya Bharathi Nimmagadda.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 13f79535-47bb-0310-9956-ffa450edef68
2013-03-06 19:15:18 +00:00
|
|
|
else if (wcscmp(L"help", cmd) == 0)
|
|
|
|
{
|
|
|
|
Usage(argv[0]);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Usage(argv[0]);
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Usage(LPCWSTR program)
|
|
|
|
{
|
|
|
|
fwprintf(stdout, L"Usage: %s [command] ...\n\
|
|
|
|
Provide basic command line utilities for Hadoop on Windows.\n\n\
|
|
|
|
The available commands and their usages are:\n\n", program);
|
|
|
|
|
|
|
|
fwprintf(stdout, L"%-15s%s\n\n", L"chmod", L"Change file mode bits.");
|
|
|
|
ChmodUsage(L"chmod");
|
|
|
|
fwprintf(stdout, L"\n\n");
|
|
|
|
|
|
|
|
fwprintf(stdout, L"%-15s%s\n\n", L"chown", L"Change file owner.");
|
|
|
|
ChownUsage(L"chown");
|
|
|
|
fwprintf(stdout, L"\n\n");
|
|
|
|
|
|
|
|
fwprintf(stdout, L"%-15s%s\n\n", L"groups", L"List user groups.");
|
|
|
|
GroupsUsage(L"groups");
|
|
|
|
fwprintf(stdout, L"\n\n");
|
|
|
|
|
|
|
|
fwprintf(stdout, L"%-15s%s\n\n", L"hardlink", L"Hard link operations.");
|
|
|
|
HardlinkUsage();
|
|
|
|
fwprintf(stdout, L"\n\n");
|
|
|
|
|
|
|
|
fwprintf(stdout, L"%-15s%s\n\n", L"ls", L"List file information.");
|
|
|
|
LsUsage(L"ls");
|
|
|
|
fwprintf(stdout, L"\n\n");
|
|
|
|
|
|
|
|
fwprintf(stdout, L"%-10s%s\n\n", L"symlink", L"Create a symbolic link.");
|
|
|
|
SymlinkUsage();
|
|
|
|
fwprintf(stdout, L"\n\n");
|
|
|
|
|
2013-05-02 22:39:56 +00:00
|
|
|
fwprintf(stdout, L"%-10s%s\n\n", L"readlink", L"Print the target of a symbolic link.");
|
|
|
|
ReadlinkUsage();
|
|
|
|
fwprintf(stdout, L"\n\n");
|
|
|
|
|
HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, Ramya Bharathi Nimmagadda.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 13f79535-47bb-0310-9956-ffa450edef68
2013-03-06 19:15:18 +00:00
|
|
|
fwprintf(stdout, L"%-15s%s\n\n", L"systeminfo", L"System information.");
|
|
|
|
SystemInfoUsage();
|
|
|
|
fwprintf(stdout, L"\n\n");
|
|
|
|
|
|
|
|
fwprintf(stdout, L"%-15s%s\n\n", L"task", L"Task operations.");
|
|
|
|
TaskUsage();
|
2014-10-22 22:57:46 +00:00
|
|
|
|
|
|
|
fwprintf(stdout, L"%-15s%s\n\n", L"service", L"Service operations.");
|
|
|
|
ServiceUsage();
|
|
|
|
|
HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, Ramya Bharathi Nimmagadda.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 13f79535-47bb-0310-9956-ffa450edef68
2013-03-06 19:15:18 +00:00
|
|
|
fwprintf(stdout, L"\n\n");
|
|
|
|
}
|