File: TODO

package info (click to toggle)
yorick-yeti 6.2.2-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,708 kB
  • ctags: 1,606
  • sloc: ansic: 17,054; makefile: 338; sh: 9
file content (55 lines) | stat: -rw-r--r-- 1,847 bytes parent folder | download
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
NOTATIONS
---------
[ ] means "to do"
[-] means "abandoned" (i.e. it was a bad idea or found another way to solve
    for that)
[+] means "done"


YETI
----
[-] make Yeti 'relocatable' like Yorick (now Yeti is a regular plugin of
    Yorick)
[ ] write a widget/plotter server (with Tcl/Tk or Gtk)
[+] make Yeti as a plugin for Yorick 1.6
[+] implement (re)loadable plugins
[ ] use Yeti stack managed workspace in yeti_regex.c
[ ] give up compatibility with Yorick-1.4
[ ] cleanup yeti_strcpy, yeti_strncpy in yeti_utils.c -- provide a p_strncpy
    which is missing in Yorick's Play library, in fact:
    #define p_strncpy(s,n) p_strncat((char *)0, (s), (n))
    would do the trick
[ ] implement binary data conversion in yeti_channel.c


CP40/GPL
--------
[+] build CP40 (and GPL) support as a loadable plugin


INTERNALS OF YORICK
-------------------
[-] Modify FreeBIFunction() in ydata.c so that freeing builtin function
    becomes impossible.
[-] Patch the list object code to avoid loop in references.
[-] Have some mean to avoid warning messages when freeing builtin functions
    (which sucks when a plugin get reloaded).


HASH OBJECTS
------------
[ ] h_cpy() to effectively duplicate a hash table object.
[ ] There is maybe a possibility to extend the cases where member
    assignation is allowed (OBJ.MEMBER = VALUE should behave as
    h_set, OBJ, MEMBER=VALUE).
[ ] cleanup hash-table code (remove/change h_copy/h_clone functions
    and make the 'ydf' format available in yeti_hash.i)
[ ] no needs(?) for 'ReplaceRef' in hash table code


INTERFACE TO YORICK INTERNALS
-----------------------------
[ ] remove suffix _base in all yeti_push_new..._base and remove
    corresponding macros that return a DataBlock (if you really want the
    address of the new DataBlock you can just take the value of the topmost
    stack synbol)