/*
 *  SSHTools - Java SSH2 API
 *
 *  Copyright (C) 2002-2003 Lee David Painter and Contributors.
 *
 *  Contributions made by:
 *
 *  Brett Smith
 *  Richard Pernavas
 *  Erwin Bolwidt
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU General Public License
 *  as published by the Free Software Foundation; either version 2
 *  of the License, or (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
package com.sshtools.j2ssh.sftp;

import com.sshtools.j2ssh.io.ByteArrayReader;
import com.sshtools.j2ssh.io.ByteArrayWriter;
import com.sshtools.j2ssh.io.UnsignedInteger32;
import com.sshtools.j2ssh.subsystem.SubsystemMessage;
import com.sshtools.j2ssh.transport.InvalidMessageException;

import java.io.IOException;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;


/**
 *
 *
 * @author $author$
 * @version $Revision: 1.16 $
 */
public class SshFxpInit extends SubsystemMessage {
    /**  */
    public static final int SSH_FXP_INIT = 1;
    private UnsignedInteger32 version;
    private Map extended;

    /**
     * Creates a new SshFxpInit object.
     */
    public SshFxpInit() {
        super(SSH_FXP_INIT);
    }

    /**
     * Creates a new SshFxpInit object.
     *
     * @param version
     * @param extended
     */
    public SshFxpInit(UnsignedInteger32 version, Map extended) {
        super(SSH_FXP_INIT);
        this.version = version;
        this.extended = extended;
    }

    /**
     *
     *
     * @return
     */
    public UnsignedInteger32 getVersion() {
        return version;
    }

    /**
     *
     *
     * @return
     */
    public Map getExtended() {
        return extended;
    }

    /**
     *
     *
     * @param bar
     *
     * @throws IOException
     * @throws InvalidMessageException
     */
    public void constructMessage(ByteArrayReader bar)
        throws IOException, InvalidMessageException {
        version = bar.readUINT32();
        extended = new HashMap();

        String key;
        String value;

        while (bar.available() > 0) {
            key = bar.readString();
            value = bar.readString();
            extended.put(key, value);
        }
    }

    /**
     *
     *
     * @return
     */
    public String getMessageName() {
        return "SSH_FXP_INIT";
    }

    /**
     *
     *
     * @param baw
     *
     * @throws IOException
     * @throws InvalidMessageException
     */
    public void constructByteArray(ByteArrayWriter baw)
        throws IOException, InvalidMessageException {
        baw.writeUINT32(version);

        if (extended != null) {
            if (extended.size() > 0) {
                Iterator it = extended.entrySet().iterator();
                Map.Entry entry;

                while (it.hasNext()) {
                    entry = (Map.Entry) it.next();
                    baw.writeString((String) entry.getKey());
                    baw.writeString((String) entry.getValue());
                }
            }
        }
    }
}
