selection.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/char/selection.c
  3.  *
  4.  * This module exports the functions:
  5.  *
  6.  *     'int set_selection(const unsigned long arg)'
  7.  *     'void clear_selection(void)'
  8.  *     'int paste_selection(struct tty_struct *tty)'
  9.  *     'int sel_loadlut(const unsigned long arg)'
  10.  *
  11.  * Now that /dev/vcs exists, most of this can disappear again.
  12.  */
  13. #include <linux/module.h>
  14. #include <linux/tty.h>
  15. #include <linux/sched.h>
  16. #include <linux/mm.h>
  17. #include <linux/slab.h>
  18. #include <linux/types.h>
  19. #include <asm/uaccess.h>
  20. #include <linux/vt_kern.h>
  21. #include <linux/consolemap.h>
  22. #include <linux/console_struct.h>
  23. #include <linux/selection.h>
  24. #ifndef MIN
  25. #define MIN(a,b) ((a) < (b) ? (a) : (b))
  26. #endif
  27. /* Don't take this from <ctype.h>: 011-015 on the screen aren't spaces */
  28. #define isspace(c) ((c) == ' ')
  29. #ifdef CONFIG_CONSOLE_PM // bushi
  30. extern void poke_blanked_console(void);
  31. #endif
  32. /* Variables for selection control. */
  33. /* Use a dynamic buffer, instead of static (Dec 1994) */
  34.        int sel_cons; /* must not be disallocated */
  35. static volatile int sel_start = -1;  /* cleared by clear_selection */
  36. static int sel_end;
  37. static int sel_buffer_lth;
  38. static char *sel_buffer;
  39. /* clear_selection, highlight and highlight_pointer can be called
  40.    from interrupt (via scrollback/front) */
  41. /* set reverse video on characters s-e of console with selection. */
  42. inline static void
  43. highlight(const int s, const int e) {
  44. invert_screen(sel_cons, s, e-s+2, 1);
  45. }
  46. /* use complementary color to show the pointer */
  47. inline static void
  48. highlight_pointer(const int where) {
  49. complement_pos(sel_cons, where);
  50. }
  51. static unsigned char
  52. sel_pos(int n)
  53. {
  54. return inverse_translate(vc_cons[sel_cons].d, screen_glyph(sel_cons, n));
  55. }
  56. /* remove the current selection highlight, if any,
  57.    from the console holding the selection. */
  58. void
  59. clear_selection(void) {
  60. highlight_pointer(-1); /* hide the pointer */
  61. if (sel_start != -1) {
  62. highlight(sel_start, sel_end);
  63. sel_start = -1;
  64. }
  65. }
  66. /*
  67.  * User settable table: what characters are to be considered alphabetic?
  68.  * 256 bits
  69.  */
  70. static u32 inwordLut[8]={
  71.   0x00000000, /* control chars     */
  72.   0x03FF0000, /* digits            */
  73.   0x87FFFFFE, /* uppercase and '_' */
  74.   0x07FFFFFE, /* lowercase         */
  75.   0x00000000,
  76.   0x00000000,
  77.   0xFF7FFFFF, /* latin-1 accented letters, not multiplication sign */
  78.   0xFF7FFFFF  /* latin-1 accented letters, not division sign */
  79. };
  80. static inline int inword(const unsigned char c) {
  81. return ( inwordLut[c>>5] >> (c & 0x1F) ) & 1;
  82. }
  83. /* set inwordLut contents. Invoked by ioctl(). */
  84. int sel_loadlut(const unsigned long arg)
  85. {
  86. return copy_from_user(inwordLut, (u32 *)(arg+4), 32) ? -EFAULT : 0;
  87. }
  88. /* does screen address p correspond to character at LH/RH edge of screen? */
  89. static inline int atedge(const int p, int size_row)
  90. {
  91. return (!(p % size_row) || !((p + 2) % size_row));
  92. }
  93. /* constrain v such that v <= u */
  94. static inline unsigned short limit(const unsigned short v, const unsigned short u)
  95. {
  96. return (v > u) ? u : v;
  97. }
  98. /* set the current selection. Invoked by ioctl() or by kernel code. */
  99. int set_selection(const unsigned long arg, struct tty_struct *tty, int user)
  100. {
  101. int sel_mode, new_sel_start, new_sel_end, spc;
  102. char *bp, *obp;
  103. int i, ps, pe;
  104. unsigned int currcons = fg_console;
  105. #ifdef CONFIG_CONSOLE_PM // bushi
  106. unblank_screen();
  107. poke_blanked_console();
  108. #endif
  109. { unsigned short *args, xs, ys, xe, ye;
  110.   args = (unsigned short *)(arg + 1);
  111.   if (user) {
  112.   if (verify_area(VERIFY_READ, args, sizeof(short) * 5))
  113.    return -EFAULT;
  114.   __get_user(xs, args++);
  115.   __get_user(ys, args++);
  116.   __get_user(xe, args++);
  117.   __get_user(ye, args++);
  118.   __get_user(sel_mode, args);
  119.   } else {
  120.   xs = *(args++); /* set selection from kernel */
  121.   ys = *(args++);
  122.   xe = *(args++);
  123.   ye = *(args++);
  124.   sel_mode = *args;
  125.   }
  126.   xs--; ys--; xe--; ye--;
  127.   xs = limit(xs, video_num_columns - 1);
  128.   ys = limit(ys, video_num_lines - 1);
  129.   xe = limit(xe, video_num_columns - 1);
  130.   ye = limit(ye, video_num_lines - 1);
  131.   ps = ys * video_size_row + (xs << 1);
  132.   pe = ye * video_size_row + (xe << 1);
  133.   if (sel_mode == 4) {
  134.       /* useful for screendump without selection highlights */
  135.       clear_selection();
  136.       return 0;
  137.   }
  138.   if (mouse_reporting() && (sel_mode & 16)) {
  139.       mouse_report(tty, sel_mode & 15, xs, ys);
  140.       return 0;
  141.   }
  142.         }
  143. if (ps > pe) /* make sel_start <= sel_end */
  144. {
  145. int tmp = ps;
  146. ps = pe;
  147. pe = tmp;
  148. }
  149. if (sel_cons != fg_console) {
  150. clear_selection();
  151. sel_cons = fg_console;
  152. }
  153. switch (sel_mode)
  154. {
  155. case 0: /* character-by-character selection */
  156. new_sel_start = ps;
  157. new_sel_end = pe;
  158. break;
  159. case 1: /* word-by-word selection */
  160. spc = isspace(sel_pos(ps));
  161. for (new_sel_start = ps; ; ps -= 2)
  162. {
  163. if ((spc && !isspace(sel_pos(ps))) ||
  164.     (!spc && !inword(sel_pos(ps))))
  165. break;
  166. new_sel_start = ps;
  167. if (!(ps % video_size_row))
  168. break;
  169. }
  170. spc = isspace(sel_pos(pe));
  171. for (new_sel_end = pe; ; pe += 2)
  172. {
  173. if ((spc && !isspace(sel_pos(pe))) ||
  174.     (!spc && !inword(sel_pos(pe))))
  175. break;
  176. new_sel_end = pe;
  177. if (!((pe + 2) % video_size_row))
  178. break;
  179. }
  180. break;
  181. case 2: /* line-by-line selection */
  182. new_sel_start = ps - ps % video_size_row;
  183. new_sel_end = pe + video_size_row
  184.     - pe % video_size_row - 2;
  185. break;
  186. case 3:
  187. highlight_pointer(pe);
  188. return 0;
  189. default:
  190. return -EINVAL;
  191. }
  192. /* remove the pointer */
  193. highlight_pointer(-1);
  194. /* select to end of line if on trailing space */
  195. if (new_sel_end > new_sel_start &&
  196. !atedge(new_sel_end, video_size_row) &&
  197. isspace(sel_pos(new_sel_end))) {
  198. for (pe = new_sel_end + 2; ; pe += 2)
  199. if (!isspace(sel_pos(pe)) ||
  200.     atedge(pe, video_size_row))
  201. break;
  202. if (isspace(sel_pos(pe)))
  203. new_sel_end = pe;
  204. }
  205. if (sel_start == -1) /* no current selection */
  206. highlight(new_sel_start, new_sel_end);
  207. else if (new_sel_start == sel_start)
  208. {
  209. if (new_sel_end == sel_end) /* no action required */
  210. return 0;
  211. else if (new_sel_end > sel_end) /* extend to right */
  212. highlight(sel_end + 2, new_sel_end);
  213. else /* contract from right */
  214. highlight(new_sel_end + 2, sel_end);
  215. }
  216. else if (new_sel_end == sel_end)
  217. {
  218. if (new_sel_start < sel_start) /* extend to left */
  219. highlight(new_sel_start, sel_start - 2);
  220. else /* contract from left */
  221. highlight(sel_start, new_sel_start - 2);
  222. }
  223. else /* some other case; start selection from scratch */
  224. {
  225. clear_selection();
  226. highlight(new_sel_start, new_sel_end);
  227. }
  228. sel_start = new_sel_start;
  229. sel_end = new_sel_end;
  230. /* Allocate a new buffer before freeing the old one ... */
  231. bp = kmalloc((sel_end-sel_start)/2+1, GFP_KERNEL);
  232. if (!bp) {
  233. printk(KERN_WARNING "selection: kmalloc() failedn");
  234. clear_selection();
  235. return -ENOMEM;
  236. }
  237. if (sel_buffer)
  238. kfree(sel_buffer);
  239. sel_buffer = bp;
  240. obp = bp;
  241. for (i = sel_start; i <= sel_end; i += 2) {
  242. *bp = sel_pos(i);
  243. if (!isspace(*bp++))
  244. obp = bp;
  245. if (! ((i + 2) % video_size_row)) {
  246. /* strip trailing blanks from line and add newline,
  247.    unless non-space at end of line. */
  248. if (obp != bp) {
  249. bp = obp;
  250. *bp++ = 'r';
  251. }
  252. obp = bp;
  253. }
  254. }
  255. sel_buffer_lth = bp - sel_buffer;
  256. return 0;
  257. }
  258. /* Insert the contents of the selection buffer into the
  259.  * queue of the tty associated with the current console.
  260.  * Invoked by ioctl().
  261.  */
  262. int paste_selection(struct tty_struct *tty)
  263. {
  264. struct vt_struct *vt = (struct vt_struct *) tty->driver_data;
  265. int pasted = 0, count;
  266. DECLARE_WAITQUEUE(wait, current);
  267. #ifdef CONFIG_CONSOLE_PM // bushi
  268. poke_blanked_console();
  269. #endif
  270. add_wait_queue(&vt->paste_wait, &wait);
  271. while (sel_buffer && sel_buffer_lth > pasted) {
  272. set_current_state(TASK_INTERRUPTIBLE);
  273. if (test_bit(TTY_THROTTLED, &tty->flags)) {
  274. schedule();
  275. continue;
  276. }
  277. count = sel_buffer_lth - pasted;
  278. count = MIN(count, tty->ldisc.receive_room(tty));
  279. tty->ldisc.receive_buf(tty, sel_buffer + pasted, 0, count);
  280. pasted += count;
  281. }
  282. remove_wait_queue(&vt->paste_wait, &wait);
  283. current->state = TASK_RUNNING;
  284. return 0;
  285. }
  286. EXPORT_SYMBOL(set_selection);
  287. EXPORT_SYMBOL(paste_selection);