ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/keyboard.C
(Generate patch)

Comparing rxvt-unicode/src/keyboard.C (file contents):
Revision 1.44 by sf-exg, Sun Nov 27 09:07:48 2011 UTC vs.
Revision 1.52 by sf-exg, Fri Dec 2 09:02:05 2011 UTC

63 * n(the number of groups) = the number of non-zero member of hash_bucket_size[]; 63 * n(the number of groups) = the number of non-zero member of hash_bucket_size[];
64 * Ni(the size of group i) = hash_bucket_size[Ii]. 64 * Ni(the size of group i) = hash_bucket_size[Ii].
65 */ 65 */
66 66
67static void 67static void
68output_string (rxvt_term *rt, const char *str) 68output_string (rxvt_term *term, const char *str)
69{ 69{
70 if (strncmp (str, "command:", 8) == 0) 70 if (strncmp (str, "command:", 8) == 0)
71 rt->cmdbuf_append (str + 8, strlen (str) - 8); 71 term->cmdbuf_append (str + 8, strlen (str) - 8);
72 else if (strncmp (str, "perl:", 5) == 0) 72 else if (strncmp (str, "perl:", 5) == 0)
73 HOOK_INVOKE((rt, HOOK_USER_COMMAND, DT_STR, str + 5, DT_END)); 73 HOOK_INVOKE((term, HOOK_USER_COMMAND, DT_STR, str + 5, DT_END));
74 else 74 else
75 rt->tt_write (str, strlen (str)); 75 term->tt_write (str, strlen (str));
76} 76}
77 77
78// return: priority_of_a - priority_of_b 78// return: priority_of_a - priority_of_b
79static int 79static int
80compare_priority (keysym_t *a, keysym_t *b) 80compare_priority (keysym_t *a, keysym_t *b)
98 hash [0] = 1; // hash[0] != 0 indicates uninitialized data 98 hash [0] = 1; // hash[0] != 0 indicates uninitialized data
99} 99}
100 100
101keyboard_manager::~keyboard_manager () 101keyboard_manager::~keyboard_manager ()
102{ 102{
103 clear ();
104}
105
106void
107keyboard_manager::clear ()
108{
109 hash [0] = 2;
110
111 for (unsigned int i = 0; i < keymap.size (); ++i) 103 for (unsigned int i = 0; i < keymap.size (); ++i)
112 { 104 {
113 free ((void *)keymap [i]->str); 105 free (keymap [i]->str);
114 delete keymap [i]; 106 delete keymap [i];
115 keymap [i] = 0;
116 } 107 }
117
118 keymap.clear ();
119} 108}
120 109
121// a wrapper for register_translation that converts the input string 110// a wrapper for register_translation that converts the input string
122// to utf-8 and expands 'list' syntax. 111// to utf-8 and expands 'list' syntax.
123void 112void
124keyboard_manager::register_user_translation (KeySym keysym, unsigned int state, const char *trans) 113keyboard_manager::register_user_translation (KeySym keysym, unsigned int state, const wchar_t *ws)
125{ 114{
126 wchar_t *wc = rxvt_mbstowcs (trans);
127 char *translation = rxvt_wcstoutf8 (wc); 115 char *translation = rxvt_wcstoutf8 (ws);
128 free (wc);
129 116
130 if (strncmp (translation, "list", 4) == 0 && translation [4] 117 if (strncmp (translation, "list", 4) == 0 && translation [4]
131 && strlen (translation) < STRING_MAX) 118 && strlen (translation) < STRING_MAX)
132 { 119 {
133 char *prefix = translation + 4; 120 char *prefix = translation + 4;
151 138
152 free (translation); 139 free (translation);
153 return; 140 return;
154 } 141 }
155 else 142 else
156 rxvt_warn ("cannot parse list-type keysym '%s', processing as normal keysym.\n", translation); 143 rxvt_warn ("unable to parse list-type keysym '%s', processing as normal keysym.\n", translation);
157 } 144 }
158 145
159 register_translation (keysym, state, translation); 146 register_translation (keysym, state, translation);
160} 147}
161 148
172 key->type = keysym_t::STRING; 159 key->type = keysym_t::STRING;
173 160
174 if (strncmp (translation, "builtin:", 8) == 0) 161 if (strncmp (translation, "builtin:", 8) == 0)
175 key->type = keysym_t::BUILTIN; 162 key->type = keysym_t::BUILTIN;
176 163
177 register_keymap (key); 164 if (keymap.size () == keymap.capacity ())
165 keymap.reserve (keymap.size () * 2);
166
167 keymap.push_back (key);
168 hash[0] = 3;
178 } 169 }
179 else 170 else
180 { 171 {
181 delete key; 172 delete key;
182 free ((void *)translation); 173 free (translation);
183 rxvt_fatal ("out of memory, aborting.\n"); 174 rxvt_fatal ("memory allocation failure. aborting.\n");
184 } 175 }
185}
186
187void
188keyboard_manager::register_keymap (keysym_t *key)
189{
190 if (keymap.size () == keymap.capacity ())
191 keymap.reserve (keymap.size () * 2);
192
193 keymap.push_back (key);
194 hash[0] = 3;
195}
196
197void
198keyboard_manager::register_done ()
199{
200 setup_hash ();
201} 176}
202 177
203bool 178bool
204keyboard_manager::dispatch (rxvt_term *term, KeySym keysym, unsigned int state) 179keyboard_manager::dispatch (rxvt_term *term, KeySym keysym, unsigned int state)
205{ 180{
206 assert (hash[0] == 0 && "register_done() need to be called"); 181 assert (("register_done() need to be called", hash[0] == 0));
207 182
208 state &= OtherModMask; // mask out uninteresting modifiers 183 state &= OtherModMask; // mask out uninteresting modifiers
209 184
210 if (state & term->ModMetaMask) state |= MetaMask; 185 if (state & term->ModMetaMask) state |= MetaMask;
211 if (state & term->ModNumLockMask) state |= NumLockMask; 186 if (state & term->ModNumLockMask) state |= NumLockMask;
216 191
217 int index = find_keysym (keysym, state); 192 int index = find_keysym (keysym, state);
218 193
219 if (index >= 0) 194 if (index >= 0)
220 { 195 {
221 const keysym_t &key = *keymap [index]; 196 keysym_t *key = keymap [index];
222 197
223 if (key.type != keysym_t::BUILTIN) 198 if (key->type != keysym_t::BUILTIN)
224 { 199 {
225 wchar_t *wc = rxvt_utf8towcs (key.str); 200 wchar_t *ws = rxvt_utf8towcs (key->str);
226 char *str = rxvt_wcstombs (wc); 201 char *str = rxvt_wcstombs (ws);
227 // TODO: do (some) translations, unescaping etc, here (allow \u escape etc.) 202 // TODO: do (some) translations, unescaping etc, here (allow \u escape etc.)
228 free (wc); 203 free (ws);
229 204
230 output_string (term, str); 205 output_string (term, str);
231 206
232 free (str); 207 free (str);
233 208
237 212
238 return false; 213 return false;
239} 214}
240 215
241void 216void
242keyboard_manager::setup_hash () 217keyboard_manager::register_done ()
243{ 218{
244 unsigned int i, index, hashkey; 219 unsigned int i, index, hashkey;
245 vector <keysym_t *> sorted_keymap; 220 vector <keysym_t *> sorted_keymap;
246 uint16_t hash_bucket_size[KEYSYM_HASH_BUCKETS]; // size of each bucket 221 uint16_t hash_bucket_size[KEYSYM_HASH_BUCKETS]; // size of each bucket
247 222

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines