本文整理汇总了Java中org.apache.hadoop.cli.util.CLITestData.TestCmd类的典型用法代码示例。如果您正苦于以下问题:Java TestCmd类的具体用法?Java TestCmd怎么用?Java TestCmd使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TestCmd类属于org.apache.hadoop.cli.util.CLITestData包,在下文中一共展示了TestCmd类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: startElement
import org.apache.hadoop.cli.util.CLITestData.TestCmd; //导入依赖的package包/类
@Override
public void startElement(String uri,
String localName,
String qName,
Attributes attributes) throws SAXException {
if (qName.equals("test")) {
td = new CLITestData();
} else if (qName.equals("test-commands")) {
testCommands = new ArrayList<TestCmd>();
} else if (qName.equals("cleanup-commands")) {
cleanupCommands = new ArrayList<TestCmd>();
} else if (qName.equals("comparators")) {
testComparators = new ArrayList<ComparatorData>();
} else if (qName.equals("comparator")) {
comparatorData = new ComparatorData();
}
charString = "";
}
开发者ID:rhli,项目名称:hadoop-EAR,代码行数:19,代码来源:TestCLI.java
示例2: executeCommand
import org.apache.hadoop.cli.util.CLITestData.TestCmd; //导入依赖的package包/类
public static int executeCommand(final TestCmd cmd,
final String namenode, final String jobtracker)
throws Exception {
switch(cmd.getType()) {
case DFSADMIN:
return CommandExecutor.executeDFSAdminCommand(cmd.getCmd(), namenode);
case MRADMIN:
return CommandExecutor.executeMRAdminCommand(cmd.getCmd(), jobtracker);
case FS:
return CommandExecutor.executeFSCommand(cmd.getCmd(), namenode);
default:
throw new Exception("Unknow type of Test command:"+ cmd.getType());
}
}
开发者ID:rhli,项目名称:hadoop-EAR,代码行数:15,代码来源:CommandExecutor.java
示例3: endElement
import org.apache.hadoop.cli.util.CLITestData.TestCmd; //导入依赖的package包/类
@Override
public void endElement(String uri,
String localName,
String qName) throws SAXException {
if (qName.equals("description")) {
td.setTestDesc(charString);
} else if (qName.equals("test-commands")) {
td.setTestCommands(testCommands);
testCommands = null;
} else if (qName.equals("cleanup-commands")) {
td.setCleanupCommands(cleanupCommands);
cleanupCommands = null;
} else if (qName.equals("command")) {
if (testCommands != null) {
testCommands.add(new TestCmd(charString, CommandType.FS));
} else if (cleanupCommands != null) {
cleanupCommands.add(new TestCmd(charString, CommandType.FS));
}
} else if (qName.equals("dfs-admin-command")) {
if (testCommands != null) {
testCommands.add(new TestCmd(charString,CommandType.DFSADMIN));
} else if (cleanupCommands != null) {
cleanupCommands.add(new TestCmd(charString, CommandType.DFSADMIN));
}
} else if (qName.equals("mr-admin-command")) {
if (testCommands != null) {
testCommands.add(new TestCmd(charString,CommandType.MRADMIN));
} else if (cleanupCommands != null) {
cleanupCommands.add(new TestCmd(charString, CommandType.MRADMIN));
}
} else if (qName.equals("comparators")) {
td.setComparatorData(testComparators);
} else if (qName.equals("comparator")) {
testComparators.add(comparatorData);
} else if (qName.equals("type")) {
comparatorData.setComparatorType(charString);
} else if (qName.equals("expected-output")) {
comparatorData.setExpectedOutput(charString);
} else if (qName.equals("test")) {
testsFromConfigFile.add(td);
td = null;
} else if (qName.equals("mode")) {
testMode = charString;
if (!testMode.equals(TESTMODE_NOCOMPARE) &&
!testMode.equals(TESTMODE_TEST)) {
testMode = TESTMODE_TEST;
}
}
}
开发者ID:rhli,项目名称:hadoop-EAR,代码行数:50,代码来源:TestCLI.java
示例4: execute
import org.apache.hadoop.cli.util.CLITestData.TestCmd; //导入依赖的package包/类
@Override
protected Result execute(TestCmd cmd) throws Exception {
return CmdFactoryDFS.getCommandExecutor(cmd, namenode).executeCommand(cmd.getCmd());
}
开发者ID:cumulusyebl,项目名称:cumulus,代码行数:5,代码来源:TestHDFSCLI.java
注:本文中的org.apache.hadoop.cli.util.CLITestData.TestCmd类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论