aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/org/pacien/tincapp/commands/Command.kt
blob: cb95619370f2e1741a46ce45ea98c2456f211531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package org.pacien.tincapp.commands

import java.util.*

/**
 * @author pacien
 */
internal class Command(private val cmd: String) {

  private data class Option(val key: String, val value: String?) {
    fun toCommandLineOption(): String = if (value != null) "--$key=$value" else "--$key"
  }

  private val opts: MutableList<Option> = LinkedList()
  private val args: MutableList<String> = LinkedList()

  fun withOption(key: String, value: String? = null): Command {
    this.opts.add(Option(key, value))
    return this
  }

  fun withArguments(vararg args: String): Command {
    this.args.addAll(Arrays.asList(*args))
    return this
  }

  fun asList(): List<String> = listOf(cmd) + opts.map { it.toCommandLineOption() } + args

  fun asArray(): Array<String> = this.asList().toTypedArray()

}