1dfb59d50631968ab1a13002ea5421ece93169851chrismair/*
2dfb59d50631968ab1a13002ea5421ece93169851chrismair * Copyright 2008 the original author or authors.
3dfb59d50631968ab1a13002ea5421ece93169851chrismair *
4dfb59d50631968ab1a13002ea5421ece93169851chrismair * Licensed under the Apache License, Version 2.0 (the "License");
5dfb59d50631968ab1a13002ea5421ece93169851chrismair * you may not use this file except in compliance with the License.
6dfb59d50631968ab1a13002ea5421ece93169851chrismair * You may obtain a copy of the License at
7dfb59d50631968ab1a13002ea5421ece93169851chrismair *
8dfb59d50631968ab1a13002ea5421ece93169851chrismair *      http://www.apache.org/licenses/LICENSE-2.0
9dfb59d50631968ab1a13002ea5421ece93169851chrismair *
10dfb59d50631968ab1a13002ea5421ece93169851chrismair * Unless required by applicable law or agreed to in writing, software
11dfb59d50631968ab1a13002ea5421ece93169851chrismair * distributed under the License is distributed on an "AS IS" BASIS,
12dfb59d50631968ab1a13002ea5421ece93169851chrismair * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13dfb59d50631968ab1a13002ea5421ece93169851chrismair * See the License for the specific language governing permissions and
14dfb59d50631968ab1a13002ea5421ece93169851chrismair * limitations under the License.
15dfb59d50631968ab1a13002ea5421ece93169851chrismair */
16dfb59d50631968ab1a13002ea5421ece93169851chrismairpackage org.mockftpserver.fake.command;
17dfb59d50631968ab1a13002ea5421ece93169851chrismair
18dfb59d50631968ab1a13002ea5421ece93169851chrismairimport org.mockftpserver.core.command.Command;
19dfb59d50631968ab1a13002ea5421ece93169851chrismairimport org.mockftpserver.core.command.ReplyCodes;
20dfb59d50631968ab1a13002ea5421ece93169851chrismairimport org.mockftpserver.core.session.Session;
21dfb59d50631968ab1a13002ea5421ece93169851chrismairimport org.mockftpserver.core.util.HostAndPort;
22dfb59d50631968ab1a13002ea5421ece93169851chrismairimport org.mockftpserver.core.util.PortParser;
23dfb59d50631968ab1a13002ea5421ece93169851chrismair
24dfb59d50631968ab1a13002ea5421ece93169851chrismair/**
25dfb59d50631968ab1a13002ea5421ece93169851chrismair * CommandHandler for the PORT command. Handler logic:
26dfb59d50631968ab1a13002ea5421ece93169851chrismair * <ol>
27dfb59d50631968ab1a13002ea5421ece93169851chrismair * <li>Parse the client data host (InetAddress) submitted from parameters 1-4
28dfb59d50631968ab1a13002ea5421ece93169851chrismair * <li>Parse the port number submitted on the invocation from parameter 5-6
29dfb59d50631968ab1a13002ea5421ece93169851chrismair * <li>Send backa a reply of 200</li>
30dfb59d50631968ab1a13002ea5421ece93169851chrismair * </ol>
31dfb59d50631968ab1a13002ea5421ece93169851chrismair *
32dfb59d50631968ab1a13002ea5421ece93169851chrismair * @author Chris Mair
33dfb59d50631968ab1a13002ea5421ece93169851chrismair * @version $Revision$ - $Date$
34dfb59d50631968ab1a13002ea5421ece93169851chrismair * @see org.mockftpserver.core.util.PortParser
35dfb59d50631968ab1a13002ea5421ece93169851chrismair */
36dfb59d50631968ab1a13002ea5421ece93169851chrismairpublic class PortCommandHandler extends AbstractFakeCommandHandler {
37dfb59d50631968ab1a13002ea5421ece93169851chrismair
38dfb59d50631968ab1a13002ea5421ece93169851chrismair    protected void handle(Command command, Session session) {
39dfb59d50631968ab1a13002ea5421ece93169851chrismair        HostAndPort client = PortParser.parseHostAndPort(command.getParameters());
40dfb59d50631968ab1a13002ea5421ece93169851chrismair        LOG.debug("host=" + client.host + " port=" + client.port);
41dfb59d50631968ab1a13002ea5421ece93169851chrismair        session.setClientDataHost(client.host);
42dfb59d50631968ab1a13002ea5421ece93169851chrismair        session.setClientDataPort(client.port);
43dfb59d50631968ab1a13002ea5421ece93169851chrismair        sendReply(session, ReplyCodes.PORT_OK, "port");
44dfb59d50631968ab1a13002ea5421ece93169851chrismair    }
45dfb59d50631968ab1a13002ea5421ece93169851chrismair
46dfb59d50631968ab1a13002ea5421ece93169851chrismair}