comparison src/mule-ccl.h @ 4745:0c54de4c4b9d

Resolve the unregistered-CCL-programs-get-garbage-collected problem correctly src/ChangeLog addition: 2009-11-15 Aidan Kehoe <kehoea@parhasard.net> * mule-ccl.c (CCL_CALL_FOR_MAP_INSTRUCTION): Assert that we always have a symbol in this macro. (setup_ccl_program): Ensure we're not allocating unreachable memory in this function; all symbols must have been resolved in a given CCL program before this function is called. (find_ccl_program): New function, return a CCL program with all its symbols resolved if it is valid (possibly allocating memory), Qnil otherwise. (get_ccl_program): New function, exported to other files; call find_ccl_program, and error if it gives nil. (Fccl_program_p): Call find_ccl_program from this function instead of implementing the bulk of it here. (Fccl_execute): Call get_ccl_program instead of implementing the bulk of it here. (Fccl_execute_on_string): Ditto. * mule-ccl.h (Vfont_ccl_encoder_alist): Remove this declaration, it hasn't been used in years. (get_ccl_program): Declare this function. * mule-coding.c (ccl_putprop): Use get_ccl_program on any specified encode or decode CCL program property. (fixed_width_putprop): Ditto. * mule-charset.c (Fmake_charset): Use get_ccl_program on any specified ccl-program. (Fset_charset_ccl_program): Ditto.
author Aidan Kehoe <kehoea@parhasard.net>
date Sun, 15 Nov 2009 16:53:14 +0000
parents 023b83f4e54b
children 308d34e9f07d
comparison
equal deleted inserted replaced
4744:17f7e9191c0b 4745:0c54de4c4b9d
67 internal format. */ 67 internal format. */
68 #define CCL_CODING_EOL_CRLF 1 /* Sequence of carriage-return and 68 #define CCL_CODING_EOL_CRLF 1 /* Sequence of carriage-return and
69 line-feed. */ 69 line-feed. */
70 #define CCL_CODING_EOL_CR 2 /* Carriage-return only. */ 70 #define CCL_CODING_EOL_CR 2 /* Carriage-return only. */
71 71
72 /* Alist of fontname patterns vs corresponding CCL program. */ 72 /* If OBJECT is symbol designating a registered CCL program, return it.
73 extern Lisp_Object Vfont_ccl_encoder_alist; 73 Else if OBJECT is a vector CCL program with no unresolved symbols, return
74 it.
75 Else, if OBJECT is a vector CCL program with unresolved symbols, return a
76 newly-created vector reflecting the CCL program with all symbols
77 resolved, if that is currently possible in this XEmacs.
74 78
75 /* Setup fields of the structure pointed by CCL appropriately for the 79 Otherwise, signal `invalid-argument'. */
76 execution of ccl program CCL_PROG (symbol or vector). */ 80 extern Lisp_Object get_ccl_program (Lisp_Object object);
77 extern int setup_ccl_program (struct ccl_program *, Lisp_Object); 81
82 /* Set up fields of the structure pointed by CCL appropriately for the
83 execution of ccl program CCL_PROG (a symbol or a vector).
84
85 If CCL_PROG is a vector and contains unresolved symbols, this function
86 will throw an assertion failure. To avoid this, call get_ccl_program at
87 the point that you receive the CCL program from Lisp, and use and store
88 its (resolved) result instead. */
89 extern int setup_ccl_program (struct ccl_program *, Lisp_Object ccl_prog);
78 90
79 extern int ccl_driver (struct ccl_program *, const unsigned char *, 91 extern int ccl_driver (struct ccl_program *, const unsigned char *,
80 unsigned_char_dynarr *, int, int *, int); 92 unsigned_char_dynarr *, int, int *, int);
81 93
82 EXFUN (Fregister_ccl_program, 2); 94 EXFUN (Fregister_ccl_program, 2);