-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathunihex.c
249 lines (210 loc) · 6.8 KB
/
unihex.c
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
/*
* Unicode Hexadecimal mode for QEmacs.
*
* Copyright (c) 2000-2001 Fabrice Bellard.
* Copyright (c) 2002-2014 Charlie Gordon.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "qe.h"
static int unihex_mode_init(EditState *s, ModeSavedData *saved_data)
{
int c, maxc, offset, max_offset;
text_mode_init(s, saved_data);
/* unihex mode is incompatible with EOL_DOS eol type */
eb_set_charset(s->b, s->b->charset, EOL_UNIX);
/* Compute max width of character in hex dump (limit to first 64K) */
maxc = 0xFF;
max_offset = min(65536, s->b->total_size);
for (offset = 0; offset < max_offset;) {
c = eb_nextc(s->b, offset, &offset);
maxc = max(maxc, c);
}
s->unihex_mode = snprintf(NULL, 0, "%x", maxc);
s->disp_width = 32 / s->unihex_mode;
s->hex_mode = 1;
s->hex_nibble = 0;
s->insert = 0;
s->wrap = WRAP_TRUNCATE;
return 0;
}
static int unihex_to_disp(int c)
{
/* Do not allow characters in range 127-160 to show as graphics
* nor characters beyond the BMP plane
*/
if (c < ' ' || c == 127 || (c >= 128 && c < 160) || c > 0xFFFF)
c = '.';
return c;
}
static int unihex_backward_offset(EditState *s, int offset)
{
int pos;
/* CG: beware: offset may fall inside a character */
pos = eb_get_char_offset(s->b, offset);
pos = align(pos, s->disp_width);
return eb_goto_char(s->b, pos);
}
static int unihex_display(EditState *s, DisplayState *ds, int offset)
{
int j, len, ateof, disp_width;
int offset1, offset2;
unsigned int b;
/* CG: array size is incorrect, should be smaller */
unsigned int buf[LINE_MAX_SIZE];
unsigned int pos[LINE_MAX_SIZE];
display_bol(ds);
ds->style = QE_STYLE_COMMENT;
display_printf(ds, -1, -1, "%08x ", offset);
//int charpos = eb_get_char_offset(s->b, offset);
//display_printf(ds, -1, -1, "%08x ", charpos);
//display_printf(ds, -1, -1, "%08x %08x ", charpos, offset);
disp_width = min(LINE_MAX_SIZE - 1, s->disp_width);
ateof = 0;
len = 0;
for (j = 0; j < disp_width && offset < s->b->total_size; j++) {
pos[len] = offset;
buf[len] = eb_nextc(s->b, offset, &offset);
len++;
}
pos[len] = offset;
ds->style = QE_STYLE_FUNCTION;
for (j = 0; j < disp_width; j++) {
display_char(ds, -1, -1, ' ');
offset1 = pos[j];
offset2 = pos[j + 1];
if (j < len) {
display_printhex(ds, offset1, offset2, buf[j], s->unihex_mode);
//ds->cur_hex_mode = 1;
//display_printf(ds, offset1, offset2, "%0*x", s->unihex_mode, buf[j]);
//ds->cur_hex_mode = 0;
} else {
if (!ateof) {
ateof = 1;
offset2 = offset1 + 1;
} else {
offset2 = offset1 = -1;
}
ds->cur_hex_mode = s->hex_mode;
display_printf(ds, offset1, offset2, "%*c", s->unihex_mode, ' ');
ds->cur_hex_mode = 0;
}
if ((j & 7) == 7)
display_char(ds, -1, -1, ' ');
}
display_char(ds, -1, -1, ' ');
ds->style = 0;
display_char(ds, -1, -1, ' ');
ateof = 0;
for (j = 0; j < disp_width; j++) {
offset1 = pos[j];
offset2 = pos[j + 1];
if (j < len) {
b = buf[j];
b = unihex_to_disp(b);
} else {
b = ' ';
if (!ateof) {
ateof = 1;
offset2 = offset1 + 1;
} else {
offset2 = offset1 = -1;
}
}
display_char(ds, offset1, offset2, b);
#if 0
/* CG: spacing out single width glyphs is less readable */
if (unicode_glyph_tty_width(b) == 1)
display_char(ds, -1, -1, ' ');
#endif
}
display_eol(ds, -1, -1);
if (len >= disp_width)
return offset;
else
return -1;
}
static void unihex_move_bol(EditState *s)
{
int pos;
pos = eb_get_char_offset(s->b, s->offset);
pos = align(pos, s->disp_width);
s->offset = eb_goto_char(s->b, pos);
}
static void unihex_move_eol(EditState *s)
{
int pos;
pos = eb_get_char_offset(s->b, s->offset);
/* CG: should include the last character! */
pos = align(pos, s->disp_width) + s->disp_width - 1;
s->offset = eb_goto_char(s->b, pos);
}
static void unihex_move_left_right(EditState *s, int dir)
{
if (dir > 0) {
eb_nextc(s->b, s->offset, &s->offset);
} else {
eb_prevc(s->b, s->offset, &s->offset);
}
}
static void unihex_move_up_down(EditState *s, int dir)
{
int pos;
pos = eb_get_char_offset(s->b, s->offset);
pos += dir * s->disp_width;
s->offset = eb_goto_char(s->b, pos);
}
static void unihex_mode_line(EditState *s, buf_t *out)
{
basic_mode_line(s, out, '-');
buf_printf(out, "0x%x--0x%x--%s",
eb_get_char_offset(s->b, s->offset),
s->offset, s->b->charset->name);
buf_printf(out, "--%d%%", compute_percent(s->offset, s->b->total_size));
}
static int unihex_mode_probe(ModeDef *mode, ModeProbeData *p)
{
/* XXX: should check for non 8 bit characters */
return 1;
}
static ModeDef unihex_mode = {
.name = "unihex",
.instance_size = 0,
.mode_probe = unihex_mode_probe,
.mode_init = unihex_mode_init,
.mode_close = text_mode_close,
.text_display = unihex_display,
.text_backward_offset = unihex_backward_offset,
.move_up_down = unihex_move_up_down,
.move_left_right = unihex_move_left_right,
.move_bol = unihex_move_bol,
.move_eol = unihex_move_eol,
.scroll_up_down = text_scroll_up_down,
.write_char = hex_write_char,
.mouse_goto = text_mouse_goto,
.get_mode_line = unihex_mode_line,
};
static int unihex_init(void)
{
/* first register mode(s) */
qe_register_mode(&unihex_mode);
/* additional mode specific keys */
qe_register_binding(KEY_CTRL_LEFT, "decrease-width", &unihex_mode);
qe_register_binding(KEY_CTRL_RIGHT, "increase-width", &unihex_mode);
qe_register_binding(KEY_TAB, "toggle-hex", &unihex_mode);
qe_register_binding(KEY_SHIFT_TAB, "toggle-hex", &unihex_mode);
return 0;
}
qe_module_init(unihex_init);