forked from RustPython/RustPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtkinter.rs
More file actions
481 lines (434 loc) · 16.1 KB
/
tkinter.rs
File metadata and controls
481 lines (434 loc) · 16.1 KB
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
// cspell:ignore createcommand
pub(crate) use self::_tkinter::make_module;
#[pymodule]
mod _tkinter {
use rustpython_vm::types::Constructor;
use rustpython_vm::{PyObjectRef, PyPayload, PyRef, PyResult, VirtualMachine};
use rustpython_vm::builtins::{PyInt, PyStr, PyType};
use std::{ffi, ptr};
use crate::builtins::PyTypeRef;
use rustpython_common::atomic::AtomicBool;
use rustpython_common::atomic::Ordering;
#[cfg(windows)]
fn _get_tcl_lib_path() -> String {
// TODO: fix packaging
String::from(r"C:\ActiveTcl\lib")
}
#[pyattr(name = "TclError", once)]
fn tcl_error(vm: &VirtualMachine) -> PyTypeRef {
vm.ctx.new_exception_type(
"_tkinter",
"TclError",
Some(vec![vm.ctx.exceptions.exception_type.to_owned()]),
)
}
#[pyattr(name = "TkError", once)]
fn tk_error(vm: &VirtualMachine) -> PyTypeRef {
vm.ctx.new_exception_type(
"_tkinter",
"TkError",
Some(vec![vm.ctx.exceptions.exception_type.to_owned()]),
)
}
#[pyattr(once, name = "TK_VERSION")]
fn tk_version(_vm: &VirtualMachine) -> String {
format!("{}.{}", 8, 6)
}
#[pyattr(once, name = "TCL_VERSION")]
fn tcl_version(_vm: &VirtualMachine) -> String {
format!(
"{}.{}",
tk_sys::TCL_MAJOR_VERSION,
tk_sys::TCL_MINOR_VERSION
)
}
#[pyattr]
#[pyclass(name = "TclObject")]
#[derive(PyPayload)]
struct TclObject {
value: *mut tk_sys::Tcl_Obj,
}
impl std::fmt::Debug for TclObject {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "TclObject")
}
}
unsafe impl Send for TclObject {}
unsafe impl Sync for TclObject {}
#[pyclass]
impl TclObject {}
static QUIT_MAIN_LOOP: AtomicBool = AtomicBool::new(false);
#[pyattr]
#[pyclass(name = "tkapp")]
#[derive(PyPayload)]
struct TkApp {
// Tcl_Interp *interp;
interpreter: *mut tk_sys::Tcl_Interp,
// int wantobjects;
want_objects: bool,
// int threaded; /* True if tcl_platform[threaded] */
threaded: bool,
// Tcl_ThreadId thread_id;
thread_id: Option<tk_sys::Tcl_ThreadId>,
// int dispatching;
dispatching: bool,
// PyObject *trace;
trace: Option<()>,
// /* We cannot include tclInt.h, as this is internal.
// So we cache interesting types here. */
old_boolean_type: *const tk_sys::Tcl_ObjType,
boolean_type: *const tk_sys::Tcl_ObjType,
byte_array_type: *const tk_sys::Tcl_ObjType,
double_type: *const tk_sys::Tcl_ObjType,
int_type: *const tk_sys::Tcl_ObjType,
wide_int_type: *const tk_sys::Tcl_ObjType,
bignum_type: *const tk_sys::Tcl_ObjType,
list_type: *const tk_sys::Tcl_ObjType,
string_type: *const tk_sys::Tcl_ObjType,
utf32_string_type: *const tk_sys::Tcl_ObjType,
pixel_type: *const tk_sys::Tcl_ObjType,
}
unsafe impl Send for TkApp {}
unsafe impl Sync for TkApp {}
impl std::fmt::Debug for TkApp {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "TkApp")
}
}
#[derive(FromArgs, Debug)]
struct TkAppConstructorArgs {
#[pyarg(any)]
screen_name: Option<String>,
#[pyarg(any)]
_base_name: Option<String>,
#[pyarg(any)]
class_name: String,
#[pyarg(any)]
interactive: i32,
#[pyarg(any)]
wantobjects: i32,
#[pyarg(any, default = "true")]
want_tk: bool,
#[pyarg(any)]
sync: i32,
#[pyarg(any)]
use_: Option<String>,
}
impl Constructor for TkApp {
type Args = TkAppConstructorArgs;
fn py_new(
_zelf: PyRef<PyType>,
args: Self::Args,
vm: &VirtualMachine,
) -> PyResult<PyObjectRef> {
create(args, vm)
}
}
fn varname_converter(obj: PyObjectRef, vm: &VirtualMachine) -> PyResult<String> {
// if let Ok(bytes) = obj.bytes(vm) {
// todo!()
// }
// str
if let Some(str) = obj.downcast_ref::<PyStr>() {
return Ok(str.as_str().to_string());
}
if let Some(_tcl_obj) = obj.downcast_ref::<TclObject>() {
// Assume that the Tcl object has a method to retrieve a string.
// return tcl_obj.
todo!();
}
// Construct an error message using the type name (truncated to 50 characters).
Err(vm.new_type_error(format!(
"must be str, bytes or Tcl_Obj, not {:.50}",
obj.obj_type().str(vm)?.as_str()
)))
}
// TODO: DISALLOW_INSTANTIATION
#[pyclass(with(Constructor))]
impl TkApp {
fn from_bool(&self, obj: *mut tk_sys::Tcl_Obj) -> bool {
let mut res = -1;
unsafe {
if tk_sys::Tcl_GetBooleanFromObj(self.interpreter, obj, &mut res)
!= tk_sys::TCL_OK as i32
{
panic!("Tcl_GetBooleanFromObj failed");
}
}
assert!(res == 0 || res == 1);
res != 0
}
fn from_object(
&self,
obj: *mut tk_sys::Tcl_Obj,
vm: &VirtualMachine,
) -> PyResult<PyObjectRef> {
let type_ptr = unsafe { (*obj).typePtr };
if type_ptr == ptr::null() {
return self.unicode_from_object(obj, vm);
} else if type_ptr == self.old_boolean_type || type_ptr == self.boolean_type {
return Ok(vm.ctx.new_bool(self.from_bool(obj)).into());
} else if type_ptr == self.string_type
|| type_ptr == self.utf32_string_type
|| type_ptr == self.pixel_type
{
return self.unicode_from_object(obj, vm);
}
// TODO: handle other types
return Ok(TclObject { value: obj }.into_pyobject(vm));
}
fn unicode_from_string(
s: *mut ffi::c_char,
size: usize,
vm: &VirtualMachine,
) -> PyResult<PyObjectRef> {
// terribly unsafe
let s = unsafe { std::slice::from_raw_parts(s, size) }
.to_vec()
.into_iter()
.map(|c| c as u8)
.collect::<Vec<u8>>();
let s = String::from_utf8(s).unwrap();
Ok(PyObjectRef::from(vm.ctx.new_str(s)))
}
fn unicode_from_object(
&self,
obj: *mut tk_sys::Tcl_Obj,
vm: &VirtualMachine,
) -> PyResult<PyObjectRef> {
let type_ptr = unsafe { (*obj).typePtr };
if type_ptr != ptr::null()
&& self.interpreter != ptr::null_mut()
&& (type_ptr == self.string_type || type_ptr == self.utf32_string_type)
{
let len = ptr::null_mut();
let data = unsafe { tk_sys::Tcl_GetUnicodeFromObj(obj, len) };
return if size_of::<tk_sys::Tcl_UniChar>() == 2 {
let v = unsafe { std::slice::from_raw_parts(data as *const u16, len as usize) };
let s = String::from_utf16(v).unwrap();
Ok(PyObjectRef::from(vm.ctx.new_str(s)))
} else {
let v = unsafe { std::slice::from_raw_parts(data as *const u32, len as usize) };
let s = widestring::U32String::from_vec(v).to_string_lossy();
Ok(PyObjectRef::from(vm.ctx.new_str(s)))
};
}
let len = ptr::null_mut();
let s = unsafe { tk_sys::Tcl_GetStringFromObj(obj, len) };
Self::unicode_from_string(s, len as _, vm)
}
#[pymethod]
fn getvar(&self, arg: PyObjectRef, vm: &VirtualMachine) -> PyResult<PyObjectRef> {
// TODO: technically not thread safe
let name = varname_converter(arg, vm)?;
let res = unsafe {
tk_sys::Tcl_GetVar2Ex(
self.interpreter,
ptr::null(),
name.as_ptr() as _,
tk_sys::TCL_LEAVE_ERR_MSG as _,
)
};
if res == ptr::null_mut() {
todo!();
}
let res = if self.want_objects {
self.from_object(res, vm)
} else {
self.unicode_from_object(res, vm)
}?;
Ok(res)
}
#[pymethod]
fn getint(&self, arg: PyObjectRef, vm: &VirtualMachine) -> PyResult<PyObjectRef> {
if let Some(int) = arg.downcast_ref::<PyInt>() {
return Ok(PyObjectRef::from(vm.ctx.new_int(int.as_bigint().clone())));
}
if let Some(obj) = arg.downcast_ref::<TclObject>() {
let value = obj.value;
unsafe { tk_sys::Tcl_IncrRefCount(value) };
} else {
todo!();
}
todo!();
}
// TODO: Fix arguments
#[pymethod]
fn mainloop(&self, threshold: Option<i32>) -> PyResult<()> {
let threshold = threshold.unwrap_or(0);
todo!();
}
#[pymethod]
fn quit(&self) {
QUIT_MAIN_LOOP.store(true, Ordering::Relaxed);
}
}
#[pyfunction]
fn create(args: TkAppConstructorArgs, vm: &VirtualMachine) -> PyResult<PyObjectRef> {
unsafe {
let interp = tk_sys::Tcl_CreateInterp();
let want_objects = args.wantobjects != 0;
let threaded = {
let part1 = String::from("tcl_platform");
let part2 = String::from("threaded");
let part1_ptr = part1.as_ptr();
let part2_ptr = part2.as_ptr();
tk_sys::Tcl_GetVar2Ex(
interp,
part1_ptr as _,
part2_ptr as _,
tk_sys::TCL_GLOBAL_ONLY as ffi::c_int,
)
} != ptr::null_mut();
let thread_id = tk_sys::Tcl_GetCurrentThread();
let dispatching = false;
let trace = None;
// TODO: Handle threaded build
let bool_str = String::from("oldBoolean");
let old_boolean_type = tk_sys::Tcl_GetObjType(bool_str.as_ptr() as _);
let (boolean_type, byte_array_type) = {
let true_str = String::from("true");
let mut value = *tk_sys::Tcl_NewStringObj(true_str.as_ptr() as _, -1);
let mut bool_value = 0;
tk_sys::Tcl_GetBooleanFromObj(interp, &mut value, &mut bool_value);
let boolean_type = value.typePtr;
tk_sys::Tcl_DecrRefCount(&mut value);
let mut value =
*tk_sys::Tcl_NewByteArrayObj(&bool_value as *const i32 as *const u8, 1);
let byte_array_type = value.typePtr;
tk_sys::Tcl_DecrRefCount(&mut value);
(boolean_type, byte_array_type)
};
let double_str = String::from("double");
let double_type = tk_sys::Tcl_GetObjType(double_str.as_ptr() as _);
let int_str = String::from("int");
let int_type = tk_sys::Tcl_GetObjType(int_str.as_ptr() as _);
let int_type = if int_type == ptr::null() {
let mut value = *tk_sys::Tcl_NewIntObj(0);
let res = value.typePtr;
tk_sys::Tcl_DecrRefCount(&mut value);
res
} else {
int_type
};
let wide_int_str = String::from("wideInt");
let wide_int_type = tk_sys::Tcl_GetObjType(wide_int_str.as_ptr() as _);
let bignum_str = String::from("bignum");
let bignum_type = tk_sys::Tcl_GetObjType(bignum_str.as_ptr() as _);
let list_str = String::from("list");
let list_type = tk_sys::Tcl_GetObjType(list_str.as_ptr() as _);
let string_str = String::from("string");
let string_type = tk_sys::Tcl_GetObjType(string_str.as_ptr() as _);
let utf32_str = String::from("utf32");
let utf32_string_type = tk_sys::Tcl_GetObjType(utf32_str.as_ptr() as _);
let pixel_str = String::from("pixel");
let pixel_type = tk_sys::Tcl_GetObjType(pixel_str.as_ptr() as _);
let exit_str = String::from("exit");
tk_sys::Tcl_DeleteCommand(interp, exit_str.as_ptr() as _);
if let Some(name) = args.screen_name {
tk_sys::Tcl_SetVar2(
interp,
"env".as_ptr() as _,
"DISPLAY".as_ptr() as _,
name.as_ptr() as _,
tk_sys::TCL_GLOBAL_ONLY as i32,
);
}
if args.interactive != 0 {
tk_sys::Tcl_SetVar(
interp,
"tcl_interactive".as_ptr() as _,
"1".as_ptr() as _,
tk_sys::TCL_GLOBAL_ONLY as i32,
);
} else {
tk_sys::Tcl_SetVar(
interp,
"tcl_interactive".as_ptr() as _,
"0".as_ptr() as _,
tk_sys::TCL_GLOBAL_ONLY as i32,
);
}
let argv0 = args.class_name.clone().to_lowercase();
tk_sys::Tcl_SetVar(
interp,
"argv0".as_ptr() as _,
argv0.as_ptr() as _,
tk_sys::TCL_GLOBAL_ONLY as i32,
);
if !args.want_tk {
tk_sys::Tcl_SetVar(
interp,
"_tkinter_skip_tk_init".as_ptr() as _,
"1".as_ptr() as _,
tk_sys::TCL_GLOBAL_ONLY as i32,
);
}
if args.sync != 0 || args.use_.is_some() {
let mut argv = String::with_capacity(4);
if args.sync != 0 {
argv.push_str("-sync");
}
if args.use_.is_some() {
if args.sync != 0 {
argv.push(' ');
}
argv.push_str("-use ");
argv.push_str(&args.use_.unwrap());
}
argv.push_str("\0");
let argv_ptr = argv.as_ptr() as *mut *mut i8;
tk_sys::Tcl_SetVar(
interp,
"argv".as_ptr() as _,
argv_ptr as *const i8,
tk_sys::TCL_GLOBAL_ONLY as i32,
);
}
#[cfg(windows)]
{
let ret = std::env::var("TCL_LIBRARY");
if ret.is_err() {
let loc = _get_tcl_lib_path();
std::env::set_var("TCL_LIBRARY", loc);
}
}
// Bindgen cannot handle Tcl_AppInit
if tk_sys::Tcl_Init(interp) != tk_sys::TCL_OK as ffi::c_int {
todo!("Tcl_Init failed");
}
Ok(TkApp {
interpreter: interp,
want_objects,
threaded,
thread_id: Some(thread_id),
dispatching,
trace,
old_boolean_type,
boolean_type,
byte_array_type,
double_type,
int_type,
wide_int_type,
bignum_type,
list_type,
string_type,
utf32_string_type,
pixel_type,
}
.into_pyobject(vm))
}
}
#[pyattr]
const READABLE: i32 = tk_sys::TCL_READABLE as i32;
#[pyattr]
const WRITABLE: i32 = tk_sys::TCL_WRITABLE as i32;
#[pyattr]
const EXCEPTION: i32 = tk_sys::TCL_EXCEPTION as i32;
#[pyattr]
const TIMER_EVENTS: i32 = tk_sys::TCL_TIMER_EVENTS as i32;
#[pyattr]
const IDLE_EVENTS: i32 = tk_sys::TCL_IDLE_EVENTS as i32;
#[pyattr]
const DONT_WAIT: i32 = tk_sys::TCL_DONT_WAIT as i32;
}