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
32
33
34
35
36
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
|
#
# tkthcore.rb - Tk interface modue using thread
# $Date$
# by Yukihiro Matsumoto <matz@caelum.co.jp>
require "tkutil"
require "thread"
module Tk
include TkUtil
extend Tk
def Tk.tk_exit
if not PORT.closed?
tk_write "exit"
PORT.close
end
end
trap "EXIT", proc{Tk.tk_exit}
trap "PIPE", ''
wish_path = nil
ENV['PATH'].split(":").each {|path|
for wish in ['wish4.2', 'wish4.1', 'wish4.0', 'wish']
if File.exist? path+'/'+wish
wish_path = path+'/'+wish
break
end
break if wish_path
end
}
fail 'can\'t find wish' if not wish_path #'
# mark for non-given arguments
None = Object.new
def None.to_s
'None'
end
Qin = Queue.new
Qout = Queue.new
Qwish = Queue.new
Qcmd = Queue.new
PORT = open(format("|%s -n %s", wish_path, File.basename($0)), "w+");
$tk_not_init = TRUE
def Tk.init
$tk_not_init = FALSE
Thread.start do
loop do
while line = PORT.gets
line.chop!
if line =~ /^[=!]/
Qwish.push line
else
Qcmd.push line
end
end
exit
end
end
Thread.start do
ary = [PORT]
loop do
str = Qin.pop
print "Qin: ", str, "\n" if $DEBUG
tk_write 'if [catch {%s} var] {puts "!$var"} {puts "=$var@@"};flush stdout', str
line = tk_recv
Qout.push(line)
end
end
end
$tk_event_queue = []
def tk_recv()
val = nil
$_ = Qwish.pop
loop do
if /^=(.*)@@$/
val = $1
break
elsif /^=/
val = $' + "\n"
while TRUE
PORT.readline
if ~/@@$/
val += $'
return val
else
val += $_
end
end
elsif /^!/
$@ = error_at
msg = $'
if msg =~ /unknown option "-(.*)"/
fail NameError, format("undefined method `%s' for %s(%s)", $1, self, self.type) #`'
else
fail format("%s - %s", self.type, msg)
end
end
end
fail 'wish closed' if PORT.closed?
# tk_split_list(val)
val
end
def tk_call(str, *args)
Tk.init if $tk_not_init
args = args.collect{|s|
next if s == None
if s.kind_of?(Hash)
s = hash_kv(s).join(" ")
else
if not s
s = "0"
elsif s == TRUE
s = "1"
elsif s.kind_of?(TkObject)
s = s.path
elsif s.kind_of?(TkVariable)
s = s.id
else
s = s.to_s
s.gsub!(/["\\\$\[\]]/, '\\\\\0') #"
s.gsub!(/\{/, '\\\\173')
s.gsub!(/\}/, '\\\\175')
end
"\"#{s}\""
end
}
str += " "
str += args.join(" ")
Qin.push str
return Qout.pop
end
def tk_write(*args)
PORT.printf *args; PORT.print "\n"
PORT.flush
end
module_function :tk_write, :tk_recv
tk_write '\
wm withdraw .
proc rb_out args {
puts [format %%s $args]
flush stdout
}
proc tkerror args { exit }
proc keepalive {} { rb_out alive; after 120000 keepalive}
after 120000 keepalive'
READ_TH = {}
def file_readable(port, cmd)
if cmd == nil
if READ_TH[port].has_key?
READ_TH[port].exit
READ_TH[port] = nil
end
else
READ_TH[port] = Thread.start{
loop do
TkUtil.eval_cmd cmd
end
}
end
end
WRITE_TH = {}
def file_writable(port, cmd)
if cmd == nil
if WRITE_TH[port].has_key?
WRITE_TH[port].exit
end
else
WRITE_TH[port] = Thread.start{
loop do
TkUtil.eval_cmd cmd
end
}
end
end
module_function :file_readable, :file_writable
def tk_tcl2ruby(val)
case val
when /^-?\d+$/
val.to_i
when /^\./
$tk_window_list[val]
when /^rb_out (c\d+)/
$tk_cmdtbl[$1]
when / /
val.split.collect{|elt|
tk_tcl2ruby(elt)
}
when /^-?\d+\.\d*$/
val.to_f
else
val
end
end
def tk_split_list(str)
idx = str.index('{')
return tk_tcl2ruby(str) if not idx
list = tk_tcl2ruby(str[0,idx])
str = str[idx+1..-1]
i = -1
brace = 1
str.each_byte {|c|
i += 1
brace += 1 if c == ?{
brace -= 1 if c == ?}
break if brace == 0
}
if str[0, i] == ' '
list.push ' '
else
list.push tk_split_list(str[0, i])
end
list += tk_split_list(str[i+1..-1])
list
end
private :tk_tcl2ruby, :tk_split_list
def dispatch(line)
if line =~ /^c\d+/
cmd = $&
fail "no command `#{cmd}'" if not $tk_cmdtbl[cmd]
args = tk_split_list($')
TkUtil.eval_cmd $tk_cmdtbl[cmd], *args
elsif line =~ /^alive$/
# keep alive, do nothing
else
fail "malformed line <#{line}>"
end
end
module_function :dispatch
def error_at
frames = caller(1)
frames.delete_if do |c|
c =~ %r!/tk(|core|thcore|canvas|text|entry|scrollbox)\.rb:\d+!
end
frames
end
def bool(val)
case bool
when "1", 1, 'yes', 'true'
TRUE
else
FALSE
end
end
def number(val)
case val
when /^-?\d+$/
val.to_i
when /^-?\d+\.\d*$/
val.to_f
else
val
end
end
def string(val)
if val == "{}"
''
elsif val[0] == ?{
val[1..-2]
else
val
end
end
def list(val)
tk_split_list(val)
end
def window(val)
$tk_window_list[val]
end
def procedure(val)
if val =~ /^rb_out (c\d+)/
$tk_cmdtbl[$1]
else
nil
end
end
private :bool, :number, :string, :list, :window, :procedure
def hash_kv(keys)
conf = []
if keys
for k, v in keys
conf.push("-#{k}")
v = install_cmd(v) if v.kind_of? Proc
conf.push(v)
end
end
conf
end
private :tk_call, :error_at, :hash_kv
$tk_cmdid = 0
def install_cmd(cmd)
return '' if cmd == '' # uninstall cmd
id = format("c%.4d", $tk_cmdid)
$tk_cmdid += 1
$tk_cmdtbl[id] = cmd
@cmdtbl = [] if not @cmdtbl
@cmdtbl.push id
return format('rb_out %s', id)
end
def uninstall_cmd(id)
$tk_cmdtbl[id] = nil
end
private :install_cmd, :uninstall_cmd
$tk_window_list = {}
class Event
def initialize(seq,b,f,h,k,s,t,w,x,y,aa,ee,kk,nn,ww,tt,xx,yy)
@serial = seq
@num = b
@focus = (f == 1)
@height = h
@keycode = k
@state = s
@time = t
@width = w
@x = x
@y = y
@char = aa
@send_event = (ee == 1)
@keysym = kk
@keysym_num = nn
@type = tt
@widget = ww
@x_root = xx
@y_root = yy
end
attr :serial
attr :num
attr :focus
attr :height
attr :keycode
attr :state
attr :time
attr :width
attr :x
attr :y
attr :char
attr :send_event
attr :keysym
attr :keysym_num
attr :type
attr :widget
attr :x_root
attr :y_root
end
def install_bind(cmd, args=nil)
if args
id = install_cmd(proc{|arg|
TkUtil.eval_cmd cmd, *arg
})
id + " " + args
else
id = install_cmd(proc{|arg|
TkUtil.eval_cmd cmd, Event.new(*arg)
})
id + " %# %b %f %h %k %s %t %w %x %y %A %E %K %N %W %T %X %Y"
end
end
def _bind(path, context, cmd, args=nil)
begin
id = install_bind(cmd, args)
tk_call 'bind', path, "<#{context}>", id
rescue
$tk_cmdtbl[id] = nil
fail
end
end
private :install_bind, :_bind
def bind_all(context, cmd=Proc.new, args=nil)
_bind 'all', context, cmd, args
end
def pack(*args)
TkPack.configure *args
end
$tk_cmdtbl = {}
Qafter = Queue.new
def after(ms, cmd=Proc.new)
unless $tk_after_thread
$tk_after_thread = Thread.start{
loop do
cmd = Qafter.pop
TkUtil.eval_cmd cmd
end
}
end
Thread.start do
sleep Float(ms)/1000
Qafter.push cmd
end
end
def update(idle=nil)
if idle
tk_call 'update', 'idletasks'
else
tk_call 'update'
end
end
def root
$tk_root
end
def bell
tk_call 'bell'
end
def mainloop
begin
tk_call 'after', 'idle', 'wm deiconify .'
loop do
dispatch Qcmd.pop
end
ensure
Tk.tk_exit
end
end
module_function :after, :update, :dispatch, :mainloop, :root, :bell
module Scrollable
def xscrollcommand(cmd=Proc.new)
configure_cmd 'xscrollcommand', cmd
end
def yscrollcommand(cmd=Proc.new)
configure_cmd 'yscrollcommand', cmd
end
end
module Wm
def aspect(*args)
w = window(tk_call('wm', 'grid', path, *args))
w.split.collect{|s|s.to_i} if args.length == 0
end
def client(name=None)
tk_call 'wm', 'client', path, name
end
def colormapwindows(*args)
list(tk_call('wm', 'colormapwindows', path, *args))
end
def wm_command(value=None)
string(tk_call('wm', 'command', path, value))
end
def deiconify
tk_call 'wm', 'deiconify', path
end
def focusmodel(*args)
tk_call 'wm', 'focusmodel', path, *args
end
def frame
tk_call 'wm', 'frame', path
end
def geometry(*args)
list(tk_call('wm', 'geometry', path, *args))
end
def grid(*args)
w = tk_call('wm', 'grid', path, *args)
list(w) if args.size == 0
end
def group(*args)
tk_call 'wm', 'path', path, *args
end
def iconbitmap(*args)
tk_call 'wm', 'bitmap', path, *args
end
def iconify
tk_call 'wm', 'iconify'
end
def iconmask(*args)
tk_call 'wm', 'iconmask', path, *args
end
def iconname(*args)
tk_call 'wm', 'iconname', path, *args
end
def iconposition(*args)
w = tk_call('wm', 'iconposition', path, *args)
list(w) if args.size == 0
end
def iconwindow(*args)
tk_call 'wm', 'iconwindow', path, *args
end
def maxsize(*args)
w = tk_call('wm', 'maxsize', path, *args)
list(w) if not args.size == 0
end
def minsize(*args)
w = tk_call('wm', 'minsize', path, *args)
list(w) if args.size == 0
end
def overrideredirect(bool=None)
if bool == None
bool(tk_call('wm', 'overrideredirect', path))
else
tk_call 'wm', 'overrideredirect', path, bool
end
end
def positionfrom(*args)
tk_call 'wm', 'positionfrom', path, *args
end
def protocol(name, func=None)
func = install_cmd(func) if not func == None
tk_call 'wm', 'command', path, name, func
end
def resizable(*args)
w = tk_call('wm', 'resizable', path, *args)
if args.length == 0
list(w).collect{|e| bool(e)}
end
end
def sizefrom(*args)
list(tk_call('wm', 'sizefrom', path, *args))
end
def state
tk_call 'wm', 'state', path
end
def title(*args)
tk_call 'wm', 'title', path, *args
end
def transient(*args)
tk_call 'wm', 'transient', path, *args
end
def withdraw
tk_call 'wm', 'withdraw', path
end
end
end
|