All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dorkbox.executor.SshProcess.kt Maven / Gradle / Ivy

/*
 * Copyright 2021 dorkbox, llc
 *
 * Licensed 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 dorkbox.executor

import net.schmizz.sshj.SSHClient
import net.schmizz.sshj.common.Message
import net.schmizz.sshj.common.SSHPacket
import net.schmizz.sshj.connection.channel.direct.Session
import java.io.IOException
import java.io.InputStream
import java.io.OutputStream

class SshProcess(private val ssh: SSHClient,
                 /** The raw session information for this SSH connection **/
                 val session: Session,

                 /** The raw command information for this SSH connection **/
                 val command: Session.Command) : Process() {

    private val outputStream = command.outputStream
    private val inputStream  = command.inputStream
    private val errStream = command.errorStream


    override fun getOutputStream(): OutputStream {
        return outputStream
    }

    override fun getInputStream(): InputStream {
        return inputStream
    }

    override fun getErrorStream(): InputStream {
        return errStream
    }

    @Throws(InterruptedException::class)
    override fun waitFor(): Int {
        command.join()
        destroy()
        return exitValue()
    }

    override fun exitValue(): Int {
        return if (command.isOpen) {
            PidHelper.INVALID.toInt()
        } else {
            return command.exitStatus
        }
    }

    override fun destroy() {
        try {
            // https://github.com/hierynomus/sshj/issues/143
            // send EOF when the channel is closed.
            ssh.transport.write(SSHPacket(Message.CHANNEL_EOF).putUInt32(session.recipient.toLong()));
        } catch (ignored: IOException) {
        }

        try {
            session.close()
        } catch (ignored: IOException) {
        }

        ssh.disconnect()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy