Class: Dockerun::Cli::Command

Inherits:
Object
  • Object
show all
Includes:
TR::CondUtils
Defined in:
lib/dockerun/cli/command.rb

Defined Under Namespace

Classes: CommandError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(cmd, required_interaction = false) ⇒ Command

Returns a new instance of Command.



18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/dockerun/cli/command.rb', line 18

def initialize(cmd, required_interaction = false)
  
  #cmdOut = ENV["DOCKERUN_COMMAND_OUT"]
  #if not_empty?(cmdOut)
  #  @runner = TTY::Command.new(printer: cmdOut.to_sym)
  #else
  #  @runner = TTY::Command.new(printer: :null)
  #end

  #@runner = TTY::Command.new
  @command_buffer = cmd
  @required_interaction = required_interaction
  @required_interaction = false if not_bool?(@required_interaction)
end

Instance Attribute Details

#command_bufferObject

Returns the value of attribute command_buffer.



17
18
19
# File 'lib/dockerun/cli/command.rb', line 17

def command_buffer
  @command_buffer
end

Instance Method Details

#interactive_session?Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/dockerun/cli/command.rb', line 33

def interactive_session?
  @required_interaction
end

#run(log_console = false, &block) ⇒ Object



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/dockerun/cli/command.rb', line 37

def run(log_console = false, &block)

  if interactive_session?
    
    pmt = TTY::Prompt.new
    terminal = pmt.select " Command is an interactive command. New terminal session is required. Please select one of the session below to proceed:" do |m|
      detect_terminal.each do |t|
        m.choice t, t
      end

      m.choice "Quit", :quit
    end

    if terminal != :quit
      case terminal
      when "terminator"
        `#{terminal} -e "#{@command_buffer.join(" ")}; bash"`
      when "gnome-terminal"
        `#{terminal} -- bash -c "#{@command_buffer.join(" ")}; exec bash"`
      when "konsole"
        `#{terminal} --hold -e "#{@command_buffer.join(" ")}" &`
      when "iTerm2"
        `osascript -e \
         'tell application "iTerm"
         activate

         create window with default profile
         delay 0.5

         set currentWindow to current window

         tell current session of currentWindow
         write text "#{@command_buffer.join(" ")}"
         end tell

         end tell'
        `
      when "Terminal" 
        `osascript -e \
         'tell application "Terminal"
         activate
         do script "#{@command_buffer.join(" ")}"
         end tell'
        `
      else
        raise Error, "Unfinished supporting terminal : #{terminal}"
      end

      pmt.puts "\n Prompt running inside the Docker shall be opened in a new window\n\n"
    end

  else
    @outStream = []
    @errStream = []

    if(log_console)
      runner = TTY::Command.new(printer: :pretty)
    else
      runner = TTY::Command.new(printer: :null)
    end

    result = runner.run!(@command_buffer.join(" "))  do |out, err|
      if block
        block.call(:outstream, out)
        block.call(:errstream, err)
      else
        @outStream << out if not_empty?(out)
        @errStream << err if not_empty?(err)
      end
    end

    CommandResult.new(result, @outStream, @errStream)
    #{ outStream: @outStream, errStream: @errStream, result: @result }
  end
end

#to_sObject



116
117
118
# File 'lib/dockerun/cli/command.rb', line 116

def to_s
  to_string.join(" ")
end

#to_stringObject



113
114
115
# File 'lib/dockerun/cli/command.rb', line 113

def to_string
  @command_buffer
end