1 #include <linux/slab.h> /* for kmalloc */
2 #include <linux/consolemap.h>
3 #include <linux/interrupt.h>
4 #include <linux/sched.h>
5 #include <linux/device.h> /* for dev_warn */
6 #include <linux/selection.h>
7 #include <linux/workqueue.h>
9 #include <linux/tty_flip.h>
10 #include <linux/atomic.h>
14 /* ------ cut and paste ----- */
15 /* Don't take this from <ctype.h>: 011-015 on the screen aren't spaces */
16 #define ishardspace(c) ((c) == ' ')
18 unsigned short spk_xs
, spk_ys
, spk_xe
, spk_ye
; /* our region points */
20 /* Variables for selection control. */
21 /* must not be deallocated */
22 struct vc_data
*spk_sel_cons
;
23 /* cleared by clear_selection */
24 static int sel_start
= -1;
26 static int sel_buffer_lth
;
27 static char *sel_buffer
;
29 static unsigned char sel_pos(int n
)
31 return inverse_translate(spk_sel_cons
,
32 screen_glyph(spk_sel_cons
, n
), 0);
35 void speakup_clear_selection(void)
40 /* does screen address p correspond to character at LH/RH edge of screen? */
41 static int atedge(const int p
, int size_row
)
43 return !(p
% size_row
) || !((p
+ 2) % size_row
);
46 /* constrain v such that v <= u */
47 static unsigned short limit(const unsigned short v
, const unsigned short u
)
49 return (v
> u
) ? u
: v
;
52 int speakup_set_selection(struct tty_struct
*tty
)
54 int new_sel_start
, new_sel_end
;
57 struct vc_data
*vc
= vc_cons
[fg_console
].d
;
59 spk_xs
= limit(spk_xs
, vc
->vc_cols
- 1);
60 spk_ys
= limit(spk_ys
, vc
->vc_rows
- 1);
61 spk_xe
= limit(spk_xe
, vc
->vc_cols
- 1);
62 spk_ye
= limit(spk_ye
, vc
->vc_rows
- 1);
63 ps
= spk_ys
* vc
->vc_size_row
+ (spk_xs
<< 1);
64 pe
= spk_ye
* vc
->vc_size_row
+ (spk_xe
<< 1);
67 /* make sel_start <= sel_end */
74 if (spk_sel_cons
!= vc_cons
[fg_console
].d
) {
75 speakup_clear_selection();
76 spk_sel_cons
= vc_cons
[fg_console
].d
;
78 "Selection: mark console not the same as cut\n");
85 /* select to end of line if on trailing space */
86 if (new_sel_end
> new_sel_start
&&
87 !atedge(new_sel_end
, vc
->vc_size_row
) &&
88 ishardspace(sel_pos(new_sel_end
))) {
89 for (pe
= new_sel_end
+ 2; ; pe
+= 2)
90 if (!ishardspace(sel_pos(pe
)) ||
91 atedge(pe
, vc
->vc_size_row
))
93 if (ishardspace(sel_pos(pe
)))
96 if ((new_sel_start
== sel_start
) && (new_sel_end
== sel_end
))
97 return 0; /* no action required */
99 sel_start
= new_sel_start
;
100 sel_end
= new_sel_end
;
101 /* Allocate a new buffer before freeing the old one ... */
102 bp
= kmalloc((sel_end
-sel_start
)/2+1, GFP_ATOMIC
);
104 speakup_clear_selection();
111 for (i
= sel_start
; i
<= sel_end
; i
+= 2) {
113 if (!ishardspace(*bp
++))
115 if (!((i
+ 2) % vc
->vc_size_row
)) {
116 /* strip trailing blanks from line and add newline,
117 * unless non-space at end of line.
126 sel_buffer_lth
= bp
- sel_buffer
;
130 struct speakup_paste_work
{
131 struct work_struct work
;
132 struct tty_struct
*tty
;
135 static void __speakup_paste_selection(struct work_struct
*work
)
137 struct speakup_paste_work
*spw
=
138 container_of(work
, struct speakup_paste_work
, work
);
139 struct tty_struct
*tty
= xchg(&spw
->tty
, NULL
);
140 struct vc_data
*vc
= (struct vc_data
*)tty
->driver_data
;
141 int pasted
= 0, count
;
142 struct tty_ldisc
*ld
;
143 DECLARE_WAITQUEUE(wait
, current
);
145 ld
= tty_ldisc_ref(tty
);
148 tty_buffer_lock_exclusive(&vc
->port
);
150 add_wait_queue(&vc
->paste_wait
, &wait
);
151 while (sel_buffer
&& sel_buffer_lth
> pasted
) {
152 set_current_state(TASK_INTERRUPTIBLE
);
153 if (tty_throttled(tty
)) {
157 count
= sel_buffer_lth
- pasted
;
158 count
= tty_ldisc_receive_buf(ld
, sel_buffer
+ pasted
, NULL
,
162 remove_wait_queue(&vc
->paste_wait
, &wait
);
163 __set_current_state(TASK_RUNNING
);
165 tty_buffer_unlock_exclusive(&vc
->port
);
171 static struct speakup_paste_work speakup_paste_work
= {
172 .work
= __WORK_INITIALIZER(speakup_paste_work
.work
,
173 __speakup_paste_selection
)
176 int speakup_paste_selection(struct tty_struct
*tty
)
178 if (cmpxchg(&speakup_paste_work
.tty
, NULL
, tty
) != NULL
)
182 schedule_work_on(WORK_CPU_UNBOUND
, &speakup_paste_work
.work
);
186 void speakup_cancel_paste(void)
188 cancel_work_sync(&speakup_paste_work
.work
);
189 tty_kref_put(speakup_paste_work
.tty
);