commandfactoryfactory.java
来自「JAVA FTP 上传下载 的源文件」· Java 代码 · 共 215 行
JAVA
215 行
/* * 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.ftpserver.command;import java.util.HashMap;import java.util.Map;import java.util.Map.Entry;import org.apache.ftpserver.command.impl.ABOR;import org.apache.ftpserver.command.impl.ACCT;import org.apache.ftpserver.command.impl.APPE;import org.apache.ftpserver.command.impl.AUTH;import org.apache.ftpserver.command.impl.CDUP;import org.apache.ftpserver.command.impl.CWD;import org.apache.ftpserver.command.impl.DELE;import org.apache.ftpserver.command.impl.DefaultCommandFactory;import org.apache.ftpserver.command.impl.EPRT;import org.apache.ftpserver.command.impl.EPSV;import org.apache.ftpserver.command.impl.FEAT;import org.apache.ftpserver.command.impl.HELP;import org.apache.ftpserver.command.impl.LANG;import org.apache.ftpserver.command.impl.LIST;import org.apache.ftpserver.command.impl.MD5;import org.apache.ftpserver.command.impl.MDTM;import org.apache.ftpserver.command.impl.MFMT;import org.apache.ftpserver.command.impl.MKD;import org.apache.ftpserver.command.impl.MLSD;import org.apache.ftpserver.command.impl.MLST;import org.apache.ftpserver.command.impl.MODE;import org.apache.ftpserver.command.impl.NLST;import org.apache.ftpserver.command.impl.NOOP;import org.apache.ftpserver.command.impl.OPTS;import org.apache.ftpserver.command.impl.PASS;import org.apache.ftpserver.command.impl.PASV;import org.apache.ftpserver.command.impl.PBSZ;import org.apache.ftpserver.command.impl.PORT;import org.apache.ftpserver.command.impl.PROT;import org.apache.ftpserver.command.impl.PWD;import org.apache.ftpserver.command.impl.QUIT;import org.apache.ftpserver.command.impl.REIN;import org.apache.ftpserver.command.impl.REST;import org.apache.ftpserver.command.impl.RETR;import org.apache.ftpserver.command.impl.RMD;import org.apache.ftpserver.command.impl.RNFR;import org.apache.ftpserver.command.impl.RNTO;import org.apache.ftpserver.command.impl.SITE;import org.apache.ftpserver.command.impl.SIZE;import org.apache.ftpserver.command.impl.STAT;import org.apache.ftpserver.command.impl.STOR;import org.apache.ftpserver.command.impl.STOU;import org.apache.ftpserver.command.impl.STRU;import org.apache.ftpserver.command.impl.SYST;import org.apache.ftpserver.command.impl.TYPE;import org.apache.ftpserver.command.impl.USER;/** * Factory for {@link CommandFactory} instances * * @author The Apache MINA Project (dev@mina.apache.org) * @version $Rev$, $Date$ */public class CommandFactoryFactory { private static final HashMap<String, Command> DEFAULT_COMMAND_MAP = new HashMap<String, Command>(); static { // first populate the default command list DEFAULT_COMMAND_MAP.put("ABOR", new ABOR()); DEFAULT_COMMAND_MAP.put("ACCT", new ACCT()); DEFAULT_COMMAND_MAP.put("APPE", new APPE()); DEFAULT_COMMAND_MAP.put("AUTH", new AUTH()); DEFAULT_COMMAND_MAP.put("CDUP", new CDUP()); DEFAULT_COMMAND_MAP.put("CWD", new CWD()); DEFAULT_COMMAND_MAP.put("DELE", new DELE()); DEFAULT_COMMAND_MAP.put("EPRT", new EPRT()); DEFAULT_COMMAND_MAP.put("EPSV", new EPSV()); DEFAULT_COMMAND_MAP.put("FEAT", new FEAT()); DEFAULT_COMMAND_MAP.put("HELP", new HELP()); DEFAULT_COMMAND_MAP.put("LANG", new LANG()); DEFAULT_COMMAND_MAP.put("LIST", new LIST()); DEFAULT_COMMAND_MAP.put("MD5", new MD5()); DEFAULT_COMMAND_MAP.put("MFMT", new MFMT()); DEFAULT_COMMAND_MAP.put("MMD5", new MD5()); DEFAULT_COMMAND_MAP.put("MDTM", new MDTM()); DEFAULT_COMMAND_MAP.put("MLST", new MLST()); DEFAULT_COMMAND_MAP.put("MKD", new MKD()); DEFAULT_COMMAND_MAP.put("MLSD", new MLSD()); DEFAULT_COMMAND_MAP.put("MODE", new MODE()); DEFAULT_COMMAND_MAP.put("NLST", new NLST()); DEFAULT_COMMAND_MAP.put("NOOP", new NOOP()); DEFAULT_COMMAND_MAP.put("OPTS", new OPTS()); DEFAULT_COMMAND_MAP.put("PASS", new PASS()); DEFAULT_COMMAND_MAP.put("PASV", new PASV()); DEFAULT_COMMAND_MAP.put("PBSZ", new PBSZ()); DEFAULT_COMMAND_MAP.put("PORT", new PORT()); DEFAULT_COMMAND_MAP.put("PROT", new PROT()); DEFAULT_COMMAND_MAP.put("PWD", new PWD()); DEFAULT_COMMAND_MAP.put("QUIT", new QUIT()); DEFAULT_COMMAND_MAP.put("REIN", new REIN()); DEFAULT_COMMAND_MAP.put("REST", new REST()); DEFAULT_COMMAND_MAP.put("RETR", new RETR()); DEFAULT_COMMAND_MAP.put("RMD", new RMD()); DEFAULT_COMMAND_MAP.put("RNFR", new RNFR()); DEFAULT_COMMAND_MAP.put("RNTO", new RNTO()); DEFAULT_COMMAND_MAP.put("SITE", new SITE()); DEFAULT_COMMAND_MAP.put("SIZE", new SIZE()); DEFAULT_COMMAND_MAP.put("STAT", new STAT()); DEFAULT_COMMAND_MAP.put("STOR", new STOR()); DEFAULT_COMMAND_MAP.put("STOU", new STOU()); DEFAULT_COMMAND_MAP.put("STRU", new STRU()); DEFAULT_COMMAND_MAP.put("SYST", new SYST()); DEFAULT_COMMAND_MAP.put("TYPE", new TYPE()); DEFAULT_COMMAND_MAP.put("USER", new USER()); } private Map<String, Command> commandMap = new HashMap<String, Command>(); private boolean useDefaultCommands = true; /** * Create an {@link CommandFactory} based on the configuration on the factory. * @return The {@link CommandFactory} */ public CommandFactory createCommandFactory() { Map<String, Command> mergedCommands = new HashMap<String, Command>(); if(useDefaultCommands) { mergedCommands.putAll(DEFAULT_COMMAND_MAP); } mergedCommands.putAll(commandMap); return new DefaultCommandFactory(mergedCommands); } /** * Are default commands used? * * @return true if default commands are used */ public boolean isUseDefaultCommands() { return useDefaultCommands; } /** * Sets whether the default commands will be used. * * @param useDefaultCommands * true if default commands should be used */ public void setUseDefaultCommands(final boolean useDefaultCommands) { this.useDefaultCommands = useDefaultCommands; } /** * Get the installed commands * * @return The installed commands */ public Map<String, Command> getCommandMap() { return commandMap; } /** * Add or override a command. * @param commandName The command name, e.g. STOR * @param command The command */ public void addCommand(String commandName, Command command) { if(commandName == null) { throw new NullPointerException("commandName can not be null"); } if(command == null) { throw new NullPointerException("command can not be null"); } commandMap.put(commandName.toUpperCase(), command); } /** * Set commands to add or override to the default commands * * @param commandMap * The map of commands, the key will be used to map to requests. */ public void setCommandMap(final Map<String, Command> commandMap) { if (commandMap == null) { throw new NullPointerException("commandMap can not be null"); } this.commandMap.clear(); for (Entry<String, Command> entry : commandMap.entrySet()) { this.commandMap.put(entry.getKey().toUpperCase(), entry.getValue()); } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?