2004-05-21 16:45:27 -04:00
|
|
|
#
|
|
|
|
# remote-tk.rb - supports to control remote Tk interpreters
|
|
|
|
# by Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
|
|
|
|
|
|
|
if defined? MultiTkIp
|
|
|
|
fail RuntimeError, "'remote-tk' library must be required before requiring 'multi-tk'"
|
|
|
|
end
|
|
|
|
|
|
|
|
class MultiTkIp; end
|
|
|
|
class RemoteTkIp < MultiTkIp; end
|
|
|
|
|
|
|
|
class MultiTkIp
|
|
|
|
@@IP_TABLE = {}.taint unless defined?(@@IP_TABLE)
|
2004-06-14 05:25:06 -04:00
|
|
|
@@TK_TABLE_LIST = [].taint unless defined?(@@TK_TABLE_LIST)
|
2004-05-21 16:45:27 -04:00
|
|
|
def self._IP_TABLE; @@IP_TABLE; end
|
|
|
|
def self._TK_TABLE_LIST; @@TK_TABLE_LIST; end
|
2004-09-09 01:03:21 -04:00
|
|
|
|
|
|
|
@flag = true
|
|
|
|
def self._DEFAULT_MASTER
|
|
|
|
# work only once
|
|
|
|
if @flag
|
|
|
|
@flag = nil
|
|
|
|
@@DEFAULT_MASTER
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
2004-05-21 16:45:27 -04:00
|
|
|
end
|
2004-06-14 05:25:06 -04:00
|
|
|
class RemoteTkIp
|
2004-05-21 16:45:27 -04:00
|
|
|
@@IP_TABLE = MultiTkIp._IP_TABLE unless defined?(@@IP_TABLE)
|
|
|
|
@@TK_TABLE_LIST = MultiTkIp._TK_TABLE_LIST unless defined?(@@TK_TABLE_LIST)
|
|
|
|
end
|
|
|
|
class << MultiTkIp
|
|
|
|
undef _IP_TABLE
|
|
|
|
undef _TK_TABLE_LIST
|
|
|
|
end
|
|
|
|
|
|
|
|
require 'multi-tk'
|
|
|
|
|
2004-09-09 01:03:21 -04:00
|
|
|
class RemoteTkIp
|
|
|
|
if defined?(@@DEFAULT_MASTER)
|
|
|
|
MultiTkIp._DEFAULT_MASTER
|
|
|
|
else
|
|
|
|
@@DEFAULT_MASTER = MultiTkIp._DEFAULT_MASTER
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2004-05-21 16:45:27 -04:00
|
|
|
###############################
|
|
|
|
|
2004-06-14 05:25:06 -04:00
|
|
|
class << RemoteTkIp
|
|
|
|
undef new_master, new_slave, new_safe_slave
|
|
|
|
undef new_trusted_slave, new_safeTk
|
|
|
|
|
|
|
|
def new(*args, &b)
|
|
|
|
ip = __new(*args)
|
|
|
|
ip.eval_proc(&b) if b
|
|
|
|
ip
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class RemoteTkIp
|
2004-05-21 16:45:27 -04:00
|
|
|
include TkUtil
|
|
|
|
|
2004-06-14 05:25:06 -04:00
|
|
|
def initialize(remote_ip, displayof=nil, timeout=5)
|
2004-05-21 16:45:27 -04:00
|
|
|
if $SAFE >= 4
|
|
|
|
fail SecurityError, "cannot access another interpreter at level #{$SAFE}"
|
|
|
|
end
|
|
|
|
|
|
|
|
@interp = MultiTkIp.__getip
|
2004-09-11 13:45:53 -04:00
|
|
|
@interp.allow_ruby_exit = false
|
2004-05-21 16:45:27 -04:00
|
|
|
@appname = @interp._invoke('tk', 'appname')
|
|
|
|
@remote = remote_ip.dup.freeze
|
|
|
|
if displayof.kind_of?(TkWindow)
|
|
|
|
@displayof = displayof.path.dup.freeze
|
|
|
|
else
|
|
|
|
@displayof = nil
|
|
|
|
end
|
|
|
|
if self.deleted?
|
|
|
|
fail RuntimeError, "no Tk application named \"#{@remote}\""
|
|
|
|
end
|
|
|
|
|
|
|
|
@tk_windows = {}
|
|
|
|
@tk_table_list = []
|
|
|
|
@slave_ip_tbl = {}
|
|
|
|
@slave_ip_top = {}
|
|
|
|
|
|
|
|
@tk_windows.taint unless @tk_windows.tainted?
|
|
|
|
@tk_table_list.taint unless @tk_table_list.tainted?
|
|
|
|
@slave_ip_tbl.taint unless @slave_ip_tbl.tainted?
|
|
|
|
@slave_ip_top.taint unless @slave_ip_top.tainted?
|
|
|
|
|
|
|
|
@system = Object.new
|
|
|
|
|
|
|
|
@threadgroup = ThreadGroup.new
|
|
|
|
|
2004-09-09 01:03:21 -04:00
|
|
|
@safe_level = [$SAFE]
|
|
|
|
|
2004-09-17 02:05:33 -04:00
|
|
|
@wait_on_mainloop = [true, false]
|
|
|
|
|
2004-05-21 16:45:27 -04:00
|
|
|
@cmd_queue = Queue.new
|
|
|
|
|
2004-09-09 01:03:21 -04:00
|
|
|
=begin
|
2004-05-21 16:45:27 -04:00
|
|
|
@cmd_receiver, @receiver_watchdog = _create_receiver_and_watchdog()
|
|
|
|
|
|
|
|
@threadgroup.add @cmd_receiver
|
|
|
|
@threadgroup.add @receiver_watchdog
|
|
|
|
|
|
|
|
@threadgroup.enclose
|
2004-09-09 01:03:21 -04:00
|
|
|
=end
|
|
|
|
@@DEFAULT_MASTER.assign_receiver_and_watchdog(self)
|
2004-05-21 16:45:27 -04:00
|
|
|
|
|
|
|
@@IP_TABLE[@threadgroup] = self
|
|
|
|
@@TK_TABLE_LIST.size.times{
|
|
|
|
(tbl = {}).tainted? || tbl.taint
|
|
|
|
@tk_table_list << tbl
|
|
|
|
}
|
|
|
|
|
2004-06-14 05:25:06 -04:00
|
|
|
@ret_val = TkVariable.new
|
|
|
|
if timeout > 0 && ! _available_check(timeout)
|
|
|
|
fail RuntimeError, "cannot create connection"
|
|
|
|
end
|
2004-05-21 16:45:27 -04:00
|
|
|
@ip_id = _create_connection
|
|
|
|
|
2004-09-09 01:03:21 -04:00
|
|
|
class << self
|
|
|
|
undef :instance_eval
|
|
|
|
end
|
|
|
|
|
2004-05-21 16:45:27 -04:00
|
|
|
self.freeze # defend against modification
|
|
|
|
end
|
|
|
|
|
|
|
|
def _ip_id_
|
|
|
|
@ip_id
|
|
|
|
end
|
|
|
|
|
2004-06-14 05:25:06 -04:00
|
|
|
def _available_check(timeout = 5)
|
|
|
|
return nil if timeout < 1
|
|
|
|
@ret_val.value = ''
|
|
|
|
@interp._invoke('send', '-async', @remote,
|
|
|
|
'send', '-async', Tk.appname,
|
|
|
|
"set #{@ret_val.id} ready")
|
|
|
|
Tk.update
|
|
|
|
if @ret_val != 'ready'
|
|
|
|
(1..(timeout*5)).each{
|
|
|
|
sleep 0.2
|
|
|
|
Tk.update
|
|
|
|
break if @ret_val == 'ready'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
@ret_val.value == 'ready'
|
|
|
|
end
|
|
|
|
private :_available_check
|
|
|
|
|
2004-05-21 16:45:27 -04:00
|
|
|
def _create_connection
|
|
|
|
ip_id = '_' + @interp._invoke('send', @remote, <<-'EOS') + '_'
|
|
|
|
if {[catch {set _rubytk_control_ip_id_} ret] != 0} {
|
|
|
|
set _rubytk_control_ip_id_ 0
|
|
|
|
} else {
|
|
|
|
set _rubytk_control_ip_id_ [expr $ret + 1]
|
|
|
|
}
|
|
|
|
return $_rubytk_control_ip_id_
|
|
|
|
EOS
|
|
|
|
|
|
|
|
@interp._invoke('send', @remote, <<-EOS)
|
|
|
|
proc rb_out#{ip_id} args {
|
|
|
|
send #{@appname} rb_out \$args
|
|
|
|
}
|
|
|
|
EOS
|
|
|
|
|
|
|
|
ip_id
|
|
|
|
end
|
|
|
|
private :_create_connection
|
|
|
|
|
|
|
|
def _appsend(enc_mode, async, *cmds)
|
|
|
|
p ['_appsend', [@remote, @displayof], enc_mode, async, cmds] if $DEBUG
|
|
|
|
if $SAFE >= 4
|
|
|
|
fail SecurityError, "cannot send commands at level 4"
|
|
|
|
elsif $SAFE >= 1 && cmds.find{|obj| obj.tainted?}
|
|
|
|
fail SecurityError, "cannot send tainted commands at level #{$SAFE}"
|
|
|
|
end
|
|
|
|
|
|
|
|
cmds = @interp._merge_tklist(*_conv_args([], enc_mode, *cmds))
|
|
|
|
if @displayof
|
|
|
|
if async
|
|
|
|
@interp.__invoke('send', '-async', '-displayof', @displayof,
|
|
|
|
'--', @remote, *cmds)
|
|
|
|
else
|
|
|
|
@interp.__invoke('send', '-displayof', @displayof,
|
|
|
|
'--', @remote, *cmds)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if async
|
|
|
|
@interp.__invoke('send', '-async', '--', @remote, *cmds)
|
|
|
|
else
|
|
|
|
@interp.__invoke('send', '--', @remote, *cmds)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
private :_appsend
|
|
|
|
|
2004-06-14 05:25:06 -04:00
|
|
|
def ready?(timeout=5)
|
|
|
|
if timeout < 0
|
|
|
|
fail ArgumentError, "timeout must be positive number"
|
2004-05-21 16:45:27 -04:00
|
|
|
end
|
2004-06-14 05:25:06 -04:00
|
|
|
_available_check(timeout)
|
|
|
|
end
|
|
|
|
|
|
|
|
def is_rubytk?
|
|
|
|
return false if _appsend(false, false, 'info', 'command', 'ruby') == ""
|
|
|
|
[ _appsend(false, false, 'ruby', 'RUBY_VERSION'),
|
|
|
|
_appsend(false, false, 'set', 'tk_patchLevel') ]
|
2004-05-21 16:45:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def appsend(async, *args)
|
|
|
|
if async != true && async != false && async != nil
|
|
|
|
args.unshift(async)
|
|
|
|
async = false
|
|
|
|
end
|
|
|
|
if @displayof
|
|
|
|
Tk.appsend_displayof(@remote, @displayof, async, *args)
|
|
|
|
else
|
|
|
|
Tk.appsend(@remote, async, *args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def rb_appsend(async, *args)
|
|
|
|
if async != true && async != false && async != nil
|
|
|
|
args.unshift(async)
|
|
|
|
async = false
|
|
|
|
end
|
|
|
|
if @displayof
|
|
|
|
Tk.rb_appsend_displayof(@remote, @displayof, async, *args)
|
|
|
|
else
|
|
|
|
Tk.rb_appsend(@remote, async, *args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_slave(name, safe=false)
|
|
|
|
if safe
|
|
|
|
safe_opt = ''
|
|
|
|
else
|
|
|
|
safe_opt = '-safe'
|
|
|
|
end
|
|
|
|
_appsend(false, false, "interp create #{safe_opt} -- #{name}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def make_safe
|
|
|
|
fail RuntimeError, 'cannot change safe mode of the remote interpreter'
|
|
|
|
end
|
|
|
|
|
|
|
|
def safe?
|
|
|
|
_appsend(false, false, 'interp issafe')
|
|
|
|
end
|
|
|
|
|
2004-09-11 13:45:53 -04:00
|
|
|
def safe_base?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def allow_ruby_exit?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def allow_ruby_exit= (mode)
|
|
|
|
fail RuntimeError, 'cannot change mode of the remote interpreter'
|
|
|
|
end
|
|
|
|
|
2004-05-21 16:45:27 -04:00
|
|
|
def delete
|
|
|
|
_appsend(false, true, 'exit')
|
|
|
|
end
|
|
|
|
|
|
|
|
def deleted?
|
|
|
|
if @displayof
|
|
|
|
lst = @interp._invoke_without_enc('winfo', 'interps',
|
|
|
|
'-displayof', @displayof)
|
|
|
|
else
|
|
|
|
lst = @interp._invoke_without_enc('winfo', 'interps')
|
|
|
|
end
|
|
|
|
unless @interp._split_tklist(lst).index(@remote)
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def restart
|
|
|
|
fail RuntimeError, 'cannot restart the remote interpreter'
|
|
|
|
end
|
|
|
|
|
|
|
|
def __eval(str)
|
|
|
|
_appsend(false, false, str)
|
|
|
|
end
|
|
|
|
def _eval(str)
|
|
|
|
_appsend(nil, false, str)
|
|
|
|
end
|
|
|
|
def _eval_without_enc(str)
|
|
|
|
_appsend(false, false, str)
|
|
|
|
end
|
|
|
|
def _eval_with_enc(str)
|
|
|
|
_appsend(true, false, str)
|
|
|
|
end
|
|
|
|
|
|
|
|
def _invoke(*args)
|
|
|
|
_appsend(nil, false, *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def __invoke(*args)
|
|
|
|
_appsend(false, false, *args)
|
|
|
|
end
|
|
|
|
def _invoke(*args)
|
|
|
|
_appsend(nil, false, *args)
|
|
|
|
end
|
|
|
|
def _invoke_without_enc(*args)
|
|
|
|
_appsend(false, false, *args)
|
|
|
|
end
|
|
|
|
def _invoke_with_enc(*args)
|
|
|
|
_appsend(true, false, *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def _toUTF8(str, encoding)
|
|
|
|
@interp._toUTF8(str, encoding)
|
|
|
|
end
|
|
|
|
|
|
|
|
def _fromUTF8(str, encoding)
|
|
|
|
@interp._fromUTF8(str, encoding)
|
|
|
|
end
|
|
|
|
|
|
|
|
def _thread_vwait(var_name)
|
|
|
|
_appsend(false, 'thread_vwait', varname)
|
|
|
|
end
|
|
|
|
|
|
|
|
def _thread_tkwait(mode, target)
|
|
|
|
_appsend(false, 'thread_tkwait', mode, target)
|
|
|
|
end
|
|
|
|
|
|
|
|
def _return_value
|
|
|
|
@interp._return_value
|
|
|
|
end
|
|
|
|
|
|
|
|
def _get_variable(var_name, flag)
|
|
|
|
# ignore flag
|
|
|
|
_appsend(false, 'set', _get_eval_string(var_name))
|
|
|
|
end
|
|
|
|
def _get_variable2(var_name, index_name, flag)
|
|
|
|
# ignore flag
|
|
|
|
_appsend(false, 'set', "#{_get_eval_string(var_name)}(#{_get_eval_string(index_name)})")
|
|
|
|
end
|
|
|
|
|
|
|
|
def _set_variable(var_name, value, flag)
|
|
|
|
# ignore flag
|
|
|
|
_appsend(false, 'set', _get_eval_string(var_name), _get_eval_string(value))
|
|
|
|
end
|
|
|
|
def _set_variable2(var_name, index_name, value, flag)
|
|
|
|
# ignore flag
|
|
|
|
_appsend(false, 'set', "#{_get_eval_string(var_name)}(#{_get_eval_string(index_name)})", _get_eval_string(value))
|
|
|
|
end
|
|
|
|
|
|
|
|
def _unset_variable(var_name, flag)
|
|
|
|
# ignore flag
|
|
|
|
_appsend(false, 'unset', _get_eval_string(var_name))
|
|
|
|
end
|
|
|
|
def _unset_variable2(var_name, index_name, flag)
|
|
|
|
# ignore flag
|
|
|
|
_appsend(false, 'unset', "#{var_name}(#{index_name})")
|
|
|
|
end
|
|
|
|
|
|
|
|
def _get_global_var(var_name)
|
|
|
|
_appsend(false, 'set', _get_eval_string(var_name))
|
|
|
|
end
|
|
|
|
def _get_global_var2(var_name, index_name)
|
|
|
|
_appsend(false, 'set', "#{_get_eval_string(var_name)}(#{_get_eval_string(index_name)})")
|
|
|
|
end
|
|
|
|
|
|
|
|
def _set_global_var(var_name, value)
|
|
|
|
_appsend(false, 'set', _get_eval_string(var_name), _get_eval_string(value))
|
|
|
|
end
|
|
|
|
def _set_global_var2(var_name, index_name, value)
|
|
|
|
_appsend(false, 'set', "#{_get_eval_string(var_name)}(#{_get_eval_string(index_name)})", _get_eval_string(value))
|
|
|
|
end
|
|
|
|
|
|
|
|
def _unset_global_var(var_name)
|
|
|
|
_appsend(false, 'unset', _get_eval_string(var_name))
|
|
|
|
end
|
|
|
|
def _unset_global_var2(var_name, index_name)
|
|
|
|
_appsend(false, 'unset', "#{var_name}(#{index_name})")
|
|
|
|
end
|
|
|
|
|
|
|
|
def _split_tklist(str)
|
|
|
|
@interp._split_tklist(str)
|
|
|
|
end
|
|
|
|
|
|
|
|
def _merge_tklist(*args)
|
|
|
|
@interp._merge_tklist(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def _conv_listelement(str)
|
|
|
|
@interp._conv_listelement(str)
|
|
|
|
end
|
|
|
|
|
|
|
|
def mainloop
|
|
|
|
fail RuntimeError, 'not support "mainloop" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def mainloop_watchdog
|
|
|
|
fail RuntimeError, 'not support "mainloop_watchdog" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def do_one_evant(flag = nil)
|
|
|
|
fail RuntimeError, 'not support "do_one_event" on the remote interpreter'
|
|
|
|
end
|
2004-09-17 02:05:33 -04:00
|
|
|
def mainloop_abort_on_exception
|
|
|
|
fail RuntimeError, 'not support "mainloop_abort_on_exception" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def mainloop_abort_on_exception=(mode)
|
|
|
|
fail RuntimeError, 'not support "mainloop_abort_on_exception=" on the remote interpreter'
|
|
|
|
end
|
2004-05-21 16:45:27 -04:00
|
|
|
def set_eventloop_tick(*args)
|
|
|
|
fail RuntimeError, 'not support "set_eventloop_tick" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def get_eventloop_tick
|
|
|
|
fail RuntimeError, 'not support "get_eventloop_tick" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def set_no_event_wait(*args)
|
|
|
|
fail RuntimeError, 'not support "set_no_event_wait" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def get_no_event_wait
|
|
|
|
fail RuntimeError, 'not support "get_no_event_wait" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def set_eventloop_weight(*args)
|
|
|
|
fail RuntimeError, 'not support "set_eventloop_weight" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def get_eventloop_weight
|
|
|
|
fail RuntimeError, 'not support "get_eventloop_weight" on the remote interpreter'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class << RemoteTkIp
|
2004-09-17 02:05:33 -04:00
|
|
|
def mainloop(*args)
|
2004-05-21 16:45:27 -04:00
|
|
|
fail RuntimeError, 'not support "mainloop" on the remote interpreter'
|
|
|
|
end
|
2004-09-17 02:05:33 -04:00
|
|
|
def mainloop_watchdog(*args)
|
2004-05-21 16:45:27 -04:00
|
|
|
fail RuntimeError, 'not support "mainloop_watchdog" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def do_one_evant(flag = nil)
|
|
|
|
fail RuntimeError, 'not support "do_one_event" on the remote interpreter'
|
|
|
|
end
|
2004-09-17 02:05:33 -04:00
|
|
|
def mainloop_abort_on_exception
|
|
|
|
fail RuntimeError, 'not support "mainloop_abort_on_exception" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def mainloop_abort_on_exception=(mode)
|
|
|
|
fail RuntimeError, 'not support "mainloop_abort_on_exception=" on the remote interpreter'
|
|
|
|
end
|
2004-05-21 16:45:27 -04:00
|
|
|
def set_eventloop_tick(*args)
|
|
|
|
fail RuntimeError, 'not support "set_eventloop_tick" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def get_eventloop_tick
|
|
|
|
fail RuntimeError, 'not support "get_eventloop_tick" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def set_no_event_wait(*args)
|
|
|
|
fail RuntimeError, 'not support "set_no_event_wait" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def get_no_event_wait
|
|
|
|
fail RuntimeError, 'not support "get_no_event_wait" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def set_eventloop_weight(*args)
|
|
|
|
fail RuntimeError, 'not support "set_eventloop_weight" on the remote interpreter'
|
|
|
|
end
|
|
|
|
def get_eventloop_weight
|
|
|
|
fail RuntimeError, 'not support "get_eventloop_weight" on the remote interpreter'
|
|
|
|
end
|
|
|
|
end
|