File: background.c

package info (click to toggle)
afterstep 2.2.12-18.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,184 kB
  • sloc: ansic: 201,695; sh: 5,894; xml: 3,721; makefile: 2,094; perl: 1,558; cpp: 811
file content (405 lines) | stat: -rw-r--r-- 10,914 bytes parent folder | download | duplicates (6)
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/*
 * Copyright (c) 1999 Sasha Vasko <sasha at aftercode.net>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

/*#define DO_CLOCKING      */

#define TRUE 1
#define FALSE 0

#include "../configure.h"

#include <signal.h>
#include <fcntl.h>
#include <unistd.h>
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif

#define DO_CLOCKING
#ifdef DO_CLOCKING
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
#  include <sys/time.h>
# else
#  include <time.h>
# endif
#endif
#endif

#include <X11/Intrinsic.h>

#include "asapp.h"
#include "afterstep.h"
#include "screen.h"
#include "mystyle.h"
#include "background.h"


#ifdef DEBUG_BACKGROUNDS
#define LOG1(a)       fprintf( stderr, a );
#define LOG2(a,b)    fprintf( stderr, a, b );
#define LOG3(a,b,c)    fprintf( stderr, a, b, c );
#define LOG4(a,b,c,d)    fprintf( stderr, a, b, c, d );
#else
#define LOG1(a)
#define LOG2(a,b)
#define LOG3(a,b,c)
#define LOG4(a,b,c,d)
#endif

/***************************************************/
/* this all should go into asimagelib/background.c */
static Atom   RootPixmapProperty = None;

ASDeskBack   *
FindDeskBack (ASDeskBackArray * backs, long desk)
{
	unsigned long i;

	for (i = 0; i < backs->desks_num; i++)
		if (backs->desks[i].desk == desk)
			return &(backs->desks[i]);

	return NULL;
}

int
IsPurePixmap (ASDeskBack * back)
{
	return (back->data_type == XA_PIXMAP && back->data.pixmap != None && back->MyStyle == None);
}

void
BackgroundSetPixmap (Pixmap pix)
{
	Pixmap        current_root = GetRootPixmap (RootPixmapProperty);

	if (current_root == pix)
	{
		XClearWindow (dpy, ASDefaultRoot);
		return;
	}

	XSetWindowBackgroundPixmap (dpy, ASDefaultRoot, pix);
	XClearWindow (dpy, ASDefaultRoot);

	/* we shell be setting root pixmap ID in X property with specifyed ID */
	if (RootPixmapProperty != None)
	{
		XChangeProperty (dpy, ASDefaultRoot, RootPixmapProperty, XA_PIXMAP, 32, PropModeReplace, (char *)&pix, 1);
		XFlush (dpy);						   /* so that everyone has time to process this change
												  * before we go ahead and delete old background
												*/
	}
}

Pixmap
BackgroundSetMyStyle (char *style_name)
{
	MyStyle      *style;
	Pixmap        pix = None;

	/* get MySyle pointer */
	if ((style = mystyle_find (style_name)) != NULL)
	{
		LOG2 ("\nBackgroundSetMyStyle( %s ) ", style_name)
		if ((style->set_flags & F_BACKPIXMAP) && style->texture_type != 129)
		{
			/* we don't want to free this pixmap ourselves */
			BackgroundSetPixmap (style->back_icon.pix);
			return None;
		} else if (style->set_flags & F_BACKGRADIENT)
			pix = mystyle_make_pixmap (style, ASDefaultScrWidth, ASDefaultScrHeight, None);
		if (pix == None)
		{
			GC            backGC, foreGC;

			pix = XCreatePixmap (dpy, ASDefaultRoot, 1, 1, Scr.d_depth);
/*			mystyle_get_global_gcs (style, &foreGC, &backGC, NULL, NULL);
			XDrawPoint (dpy, pix, (backGC != None) ? backGC : foreGC, 1, 1);
  */		}
		BackgroundSetPixmap (pix);
	}
	/* we will need this pixmap ID later to destroy it gracefully */
	return pix;
}

/******************************************************************/
/*     stuff for running external app to set root background      */
/******************************************************************/
#ifdef HAVE_SYS_WAIT_H
#define WAIT_CHILDREN(pstatus)  waitpid(-1, pstatus, WNOHANG)
#elif defined (HAVE_WAIT3)
#define WAIT_CHILDREN(pstatus)  wait3(pstatus, WNOHANG, NULL)
#else
#define WAIT_CHILDREN(pstatus)  (-1)
#endif

int           DrawChildPID = 0;
void
sigchild_handler (int signum)
{
	int           pid;
	int           status;

	signal (SIGCHLD, sigchild_handler);
	LOG3 ("\n%s:Entering SigChild_handler(%lu)", MyName, time (NULL)) while (1)
	{
		pid = WAIT_CHILDREN (&status);
		if (pid < 0 || pid == DrawChildPID)
			DrawChildPID = 0;
		if (pid == 0 || pid < 0)
			break;
	}
LOG3 ("\n%s:Exiting SigChild_handler(%lu)", MyName, time (NULL))}

/*
   This should return 0 if process of running external app to draw background completed or killed.
   otherwise it returns > 0
 */
int
CheckForDrawChild (int kill_it_to_death)
{
	int           i;
	int           status;

	LOG3 ("\n%s:CheckingForDrawChild(%lu)....", MyName, time (NULL));
	if (DrawChildPID > 0)
	{
		LOG2 ("\n Child has been started with PID (%d).", DrawChildPID);
		if (kill_it_to_death > 0)
		{
			kill (DrawChildPID, SIGTERM);
			for (i = 0; i < 10; i++)		   /* give it 10 sec to terminate */
			{
				sleep (1);
				if (WAIT_CHILDREN (&status) <= 0)
					break;
			}
			if (i >= 10)
				kill (DrawChildPID, SIGKILL);  /* no more mercy */
			DrawChildPID = 0;
		}
	} else if (DrawChildPID < 0)
		DrawChildPID = 0;

	LOG3 ("Done(%lu). Child PID on exit = %d.", time (NULL), DrawChildPID);
	return DrawChildPID;
}

void
BackgroundSetCommand (char *cmd)
{
	signal (SIGCHLD, sigchild_handler);
	if (!(DrawChildPID = fork ()))			   /* child process */
	{
		execl ("/bin/sh", "/bin/sh", "-c", cmd, (char *)NULL);

		/* if all is fine then the thread will exit here */
		/* so displaying error if not                    */
		fprintf (stderr, "\n%s: bad luck running command [%s] to set root pixmap.\n", MyName, cmd);
		exit (0);							   /*thread completed */
	}
}

void
KillOldDrawing ()
{
	CheckForDrawChild (1);
}

/* frees all the resources that we currently don't need :
   - pixmaps used for MyStyle's
 */
void
BackgroundCleanup (ASDeskBackArray * backs, long desk)
{
	unsigned long i;

	for (i = 0; i < backs->desks_num; i++)
		if (backs->desks[i].desk != desk && backs->desks[i].data.pixmap != None)
		{
			if (backs->desks[i].data_type != XA_PIXMAP && backs->desks[i].MyStyle != None)
			{
				XFreePixmap (dpy, backs->desks[i].data.pixmap);
				backs->desks[i].data.pixmap = None;
			}
		}
}


/******************************************************************/
/*        application interface                                   */
/******************************************************************/

#ifdef DEBUG_BACKGROUNDS
void
PrintDeskBackArray (ASDeskBackArray * backs)
{
	int           i = 0;

	fprintf (stderr, "\n Number of backgrounds = %d", backs->desks_num);
	for (i = 0; i < backs->desks_num; i++)
		fprintf (stderr, "\n %d. Desk #%ld type %ld data %ld, MyStyle %ld",
				 i, backs->desks[i].desk, backs->desks[i].data_type,
				 backs->desks[i].data.atom, backs->desks[i].MyStyle);

}
#endif

void
SetRootPixmapPropertyID (Atom id)
{
	RootPixmapProperty = id;
}

void
BackgroundSetForDesk (ASDeskBackArray * backs, long desk)
{
	ASDeskBack   *back;

	if (desk != 10000 && backs)
	{
		LOG2 ("\ntrying to find data for desk %d", desk) if ((back = FindDeskBack (backs, desk)) != NULL)
		{
			LOG3 ("\ndesk %d found with pixmap %ld", desk, back->data.pixmap) KillOldDrawing ();
			if ((back->data_type == XA_PIXMAP) || (back->MyStyle != None && back->data.pixmap != None))
				BackgroundSetPixmap (back->data.pixmap);
			else
			{
				char         *text = XGetAtomName (dpy, ((back->MyStyle != None) ? back->MyStyle : back->data.atom));

				LOG3 ("\ndesk %d has data [%s]", desk, text) if (text != NULL)
				{
					if (back->MyStyle != None)
						back->data.pixmap = BackgroundSetMyStyle (text);
					else
						BackgroundSetCommand (text);

					XFree (text);
				}
			}
		}
		BackgroundCleanup (backs, desk);
	}
}

void
FreeDeskBackArray (ASDeskBackArray * backs, int free_pixmaps)
{
	if (backs->desks)
	{
		int           i, k;

		for (i = 0; i < backs->desks_num && free_pixmaps; i++)
		{

			if (backs->desks[i].data_type == XA_PIXMAP || backs->desks[i].MyStyle)
				if (backs->desks[i].data.pixmap != None)
				{
					if (backs->desks[i].desk == Scr.CurrentDesk && RootPixmapProperty != None)
					{
						Pixmap        pix = None;

						XChangeProperty (dpy, ASDefaultRoot, RootPixmapProperty, XA_PIXMAP, 32, PropModeReplace,
										 (char *)&pix, 1);
						XFlush (dpy);
						/* so that everyone has time to process this change
						 * before we go ahead and delet old background
						 */
					}
					/* checking if we have already freed this pixmap */
					for (k = 0; k < i; k++)
						if (backs->desks[k].data_type == XA_PIXMAP || backs->desks[k].MyStyle)
							if (backs->desks[k].data.pixmap == backs->desks[i].data.pixmap)
								break;

					if (k >= i)
						XFreePixmap(dpy,backs->desks[i].data.pixmap);
				}
		}
		free (backs->desks);
		backs->desks = NULL;
	}
	backs->desks_num = 0;
}

ASDeskBackArray *
UpdateDeskBackArray (ASDeskBackArray * old_info, ASDeskBackArray * new_info)
{
	ASDeskBackArray *updated;
	int           i, k;

	updated = (ASDeskBackArray *) safemalloc (sizeof (ASDeskBackArray));
	updated->desks_num = new_info->desks_num;
	for (k = 0; k < old_info->desks_num; k++)
		if (FindDeskBack (new_info, old_info->desks[k].desk) == NULL)
			updated->desks_num++;

	updated->desks = (ASDeskBack *) safemalloc (sizeof (ASDeskBack) * updated->desks_num);
	for (i = 0; i < new_info->desks_num; i++)
		updated->desks[i] = new_info->desks[i];

	for (k = 0; k < old_info->desks_num; k++)
		if (FindDeskBack (new_info, old_info->desks[k].desk) == NULL)
		{
			updated->desks[i] = old_info->desks[k];
			i++;
		}

	return updated;
}

/******************************************************************/
/*          Backgrounds info X property manipulation              */
/******************************************************************/

void
SetBackgroundsProperty (ASDeskBackArray * backs, Atom property)
{
	if (backs == NULL || property == None)
		return;
	if (backs->desks == NULL || backs->desks_num <= 0)
		return;
	set_as_property (ASDefaultRoot, property, (unsigned long *)(backs->desks), backs->desks_num * sizeof (ASDeskBack),
					 (1 << 8) + 0);
}

void
GetBackgroundsProperty (ASDeskBackArray * backs, Atom property)
{
	unsigned long version;
	unsigned long *data;

	if (backs == NULL || property == None)
		return;
	if (backs->desks != NULL || backs->desks_num > 0)
		FreeDeskBackArray (backs, FALSE);
	data = get_as_property (ASDefaultRoot, property, (size_t *) & (backs->desks_num), &version);
	if (data && backs->desks_num > 0 && version == (1 << 8) + 0)
	{
		backs->desks = (ASDeskBack *) safemalloc (backs->desks_num);
		memcpy (backs->desks, data, backs->desks_num);
		XFree (data);
		backs->desks_num = backs->desks_num / sizeof (ASDeskBack);
	}
}