2 * Server-side clipboard management
4 * Copyright (C) 2002 Ulrich Czekalla
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
30 #define WIN32_NO_STATUS
39 struct object obj
; /* object header */
40 struct thread
*open_thread
; /* thread id that has clipboard open */
41 user_handle_t open_win
; /* window that has clipboard open */
42 struct thread
*owner_thread
; /* thread id that owns the clipboard */
43 user_handle_t owner_win
; /* window that owns the clipboard data */
44 user_handle_t viewer
; /* first window in clipboard viewer list */
45 unsigned int seqno
; /* clipboard change sequence number */
46 time_t seqno_timestamp
; /* time stamp of last seqno increment */
49 static void clipboard_dump( struct object
*obj
, int verbose
);
51 static const struct object_ops clipboard_ops
=
53 sizeof(struct clipboard
), /* size */
54 clipboard_dump
, /* dump */
55 no_get_type
, /* get_type */
56 no_add_queue
, /* add_queue */
57 NULL
, /* remove_queue */
60 no_signal
, /* signal */
61 no_get_fd
, /* get_fd */
62 no_map_access
, /* map_access */
63 default_get_sd
, /* get_sd */
64 default_set_sd
, /* set_sd */
65 no_lookup_name
, /* lookup_name */
66 no_open_file
, /* open_file */
67 no_close_handle
, /* close_handle */
68 no_destroy
/* destroy */
72 #define MINUPDATELAPSE 2
74 /* dump a clipboard object */
75 static void clipboard_dump( struct object
*obj
, int verbose
)
77 struct clipboard
*clipboard
= (struct clipboard
*)obj
;
79 fprintf( stderr
, "Clipboard open_thread=%p open_win=%08x owner_thread=%p owner_win=%08x viewer=%08x seq=%u\n",
80 clipboard
->open_thread
, clipboard
->open_win
, clipboard
->owner_thread
,
81 clipboard
->owner_win
, clipboard
->viewer
, clipboard
->seqno
);
84 /* retrieve the clipboard info for the current process, allocating it if needed */
85 static struct clipboard
*get_process_clipboard(void)
87 struct clipboard
*clipboard
;
88 struct winstation
*winstation
= get_process_winstation( current
->process
, WINSTA_ACCESSCLIPBOARD
);
90 if (!winstation
) return NULL
;
92 if (!(clipboard
= winstation
->clipboard
))
94 if ((clipboard
= alloc_object( &clipboard_ops
)))
96 clipboard
->open_thread
= NULL
;
97 clipboard
->open_win
= 0;
98 clipboard
->owner_thread
= NULL
;
99 clipboard
->owner_win
= 0;
100 clipboard
->viewer
= 0;
101 clipboard
->seqno
= 0;
102 clipboard
->seqno_timestamp
= 0;
103 winstation
->clipboard
= clipboard
;
106 release_object( winstation
);
111 /* Called when thread terminates to allow release of clipboard */
112 void cleanup_clipboard_thread(struct thread
*thread
)
114 struct clipboard
*clipboard
;
115 struct winstation
*winstation
= get_process_winstation( thread
->process
, WINSTA_ACCESSCLIPBOARD
);
117 if (!winstation
) return;
119 if ((clipboard
= winstation
->clipboard
))
121 if (thread
== clipboard
->open_thread
)
123 clipboard
->open_win
= 0;
124 clipboard
->open_thread
= NULL
;
126 if (thread
== clipboard
->owner_thread
)
128 clipboard
->owner_win
= 0;
129 clipboard
->owner_thread
= NULL
;
132 release_object( winstation
);
135 static int set_clipboard_window( struct clipboard
*clipboard
, user_handle_t win
, int clear
)
137 if (clipboard
->open_thread
&& clipboard
->open_thread
!= current
)
139 set_error(STATUS_WAS_LOCKED
);
144 clipboard
->open_win
= win
;
145 clipboard
->open_thread
= current
;
149 clipboard
->open_thread
= NULL
;
150 clipboard
->open_win
= 0;
156 static int set_clipboard_owner( struct clipboard
*clipboard
, user_handle_t win
, int clear
)
158 if (clipboard
->open_thread
&& clipboard
->open_thread
->process
!= current
->process
)
160 set_error(STATUS_WAS_LOCKED
);
165 clipboard
->owner_win
= win
;
166 clipboard
->owner_thread
= current
;
170 clipboard
->owner_win
= 0;
171 clipboard
->owner_thread
= NULL
;
177 static int get_seqno( struct clipboard
*clipboard
)
179 time_t tm
= time(NULL
);
181 if (!clipboard
->owner_thread
&& (tm
> (clipboard
->seqno_timestamp
+ MINUPDATELAPSE
)))
183 clipboard
->seqno_timestamp
= tm
;
186 return clipboard
->seqno
;
190 DECL_HANDLER(set_clipboard_info
)
192 struct clipboard
*clipboard
= get_process_clipboard();
194 if (!clipboard
) return;
196 reply
->old_clipboard
= clipboard
->open_win
;
197 reply
->old_owner
= clipboard
->owner_win
;
198 reply
->old_viewer
= clipboard
->viewer
;
200 if (req
->flags
& SET_CB_OPEN
)
202 if (clipboard
->open_thread
)
204 /* clipboard already opened */
205 set_error(STATUS_WAS_LOCKED
);
209 if (!set_clipboard_window( clipboard
, req
->clipboard
, 0 )) return;
211 else if (req
->flags
& SET_CB_CLOSE
)
213 if (clipboard
->open_thread
!= current
)
215 set_win32_error(ERROR_CLIPBOARD_NOT_OPEN
);
219 if (!set_clipboard_window( clipboard
, 0, 1 )) return;
222 if (req
->flags
& SET_CB_OWNER
)
224 if (!set_clipboard_owner( clipboard
, req
->owner
, 0 )) return;
226 else if (req
->flags
& SET_CB_RELOWNER
)
228 if (!set_clipboard_owner( clipboard
, 0, 1 )) return;
231 if (req
->flags
& SET_CB_VIEWER
) clipboard
->viewer
= req
->viewer
;
233 if (req
->flags
& SET_CB_SEQNO
) clipboard
->seqno
++;
235 reply
->seqno
= get_seqno( clipboard
);
237 if (clipboard
->open_thread
== current
) reply
->flags
|= CB_OPEN
;
238 if (clipboard
->owner_thread
== current
) reply
->flags
|= CB_OWNER
;
239 if (clipboard
->owner_thread
&& clipboard
->owner_thread
->process
== current
->process
)
240 reply
->flags
|= CB_PROCESS
;