summaryrefslogtreecommitdiff
path: root/Xprint/pcl/PclMisc.c
blob: ad2da6b44e3dfc9be69b4de55c6b434d0793ae40 (plain)
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
/* $Xorg: PclMisc.c,v 1.3 2000/08/17 19:48:08 cpqbld Exp $ */
/*******************************************************************
**
**    *********************************************************
**    *
**    *  File:		PclMisc.c
**    *
**    *  Contents:
**    *                 Miscellaneous code for Pcl driver.
**    *
**    *  Created:	2/01/95
**    *
**    *********************************************************
** 
********************************************************************/
/*
(c) Copyright 1996 Hewlett-Packard Company
(c) Copyright 1996 International Business Machines Corp.
(c) Copyright 1996 Sun Microsystems, Inc.
(c) Copyright 1996 Novell, Inc.
(c) Copyright 1996 Digital Equipment Corp.
(c) Copyright 1996 Fujitsu Limited
(c) Copyright 1996 Hitachi, Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the names of the copyright holders shall
not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from said
copyright holders.
*/
/* $XFree86$ */

#include <stdlib.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "Xos.h"	/* for SIGCLD on pre-POSIX systems */
#include "Pcl.h"

#include "cursor.h"
#include "resource.h"

#include "windowstr.h"
#include "propertyst.h"
#include "attributes.h"


/*ARGSUSED*/
void
PclQueryBestSize(
    int type,
    short *pwidth,
    short *pheight,
    ScreenPtr pScreen)
{
    unsigned width, highBit;

    switch(type)
    {
      case CursorShape:
	*pwidth = 0;
        *pheight = 0;
	  break;
      case TileShape:
      case StippleShape:
	  width = *pwidth;
	  if (!width) break;
	  /* Return the nearest power of two >= what they gave us */
	  highBit = 0x80000000;
	  /* Find the highest 1 bit in the given width */
	  while(!(highBit & width))
	     highBit >>= 1;
	  /* If greater than that then return the next power of two */
	  if((highBit - 1) & width)
	     highBit <<= 1;
	  *pwidth = highBit;
	  /* height is a don't-care */
	  break;
    }
}

/*
 * GetPropString searches the window heirarchy from pWin up looking for
 * a property by the name of propName.  If found, returns the property's
 * value. If not, it returns NULL.
 */
char *
GetPropString(
    WindowPtr pWin,
    char *propName)
{
    Atom atom;
    PropertyPtr pProp = (PropertyPtr)NULL;
    char *retVal;

    atom = MakeAtom(propName, strlen(propName), FALSE);
    if(atom != BAD_RESOURCE)
    {
        WindowPtr pPropWin;
	int n;

	/*
	 * The atom has been defined, but it might only exist as a
	 * property on an unrelated window.
	 */
        for(pPropWin = pWin; pPropWin != (WindowPtr)NULL; 
	    pPropWin = pPropWin->parent)
        {
	    for(pProp = (PropertyPtr)(wUserProps(pPropWin)); 
		pProp != (PropertyPtr)NULL;
	        pProp = pProp->next)
	    {
                if (pProp->propertyName == atom)
                    break;
	    }
	    if(pProp != (PropertyPtr)NULL)
	        break;
        }
	if(pProp == (PropertyPtr)NULL)
	    return (char *)NULL;

	n = (pProp->format/8) * pProp->size; /* size (bytes) of prop */
	retVal = (char *)xalloc(n + 1);
	(void)memcpy((void *)retVal, (void *)pProp->data, n);
	retVal[n] = '\0';

	return retVal;
    }

    return (char *)NULL;
}

#include <signal.h>
#include <errno.h>

/* ARGSUSED */
static void SigchldHndlr (
    int dummy)
{
    int   status;
    int olderrno = errno;
    struct sigaction act;
    sigfillset(&act.sa_mask);
    act.sa_flags = 0;
    act.sa_handler = SigchldHndlr;

    (void) wait (&status);

    /*
     * Is this really necessary?
     */
    sigaction(SIGCHLD, &act, (struct sigaction *)NULL);
    errno = olderrno;
}

/*
 * SystemCmd provides a wrapper for the 'system' library call.  The call
 * appears to be sensitive to the handling of SIGCHLD, so this wrapper
 * sets the status to SIG_DFL, and then resets the established handler
 * after system returns.
 */
int
SystemCmd(char *cmdStr)
{
    int status;
    struct sigaction newAct, oldAct;
    sigfillset(&newAct.sa_mask);
    newAct.sa_flags = 0;
    newAct.sa_handler = SIG_DFL;
    sigfillset(&oldAct.sa_mask);
    oldAct.sa_flags = 0;
    oldAct.sa_handler = SigchldHndlr;

    /*
     * get the old handler, and set the action to IGN
     */
    sigaction(SIGCHLD, &newAct, &oldAct);

    status = system (cmdStr);

    sigaction(SIGCHLD, &oldAct, (struct sigaction *)NULL);
    return status;
}


/*
 * PclGetMediumDimensions is installed in the GetMediumDimensions field
 * of each Pcl-initialized context.
 */
int
PclGetMediumDimensions(XpContextPtr pCon,
                       CARD16 *width,
                       CARD16 *height)
{
    XpGetMediumDimensions(pCon, width, height);
    return Success;
}

/*
 * PclGetReproducibleArea is installed in the GetReproducibleArea field
 * of each Pcl-initialized context.
 */
int
PclGetReproducibleArea(XpContextPtr pCon,
                       xRectangle *pRect)
{
    XpGetReproductionArea(pCon, pRect);
    return Success;
}

#ifdef XP_PCL_LJ3
/*
 * PclSpoolFigs spooled the rendering PCL/HP-GL2 commands into the
 * temporary buffer pointed by figures pointer in pcl private context.
 * LaserJet IIIs printers don't support the macro function which
 * includes some HP-GL/2 commands.
 */
void
PclSpoolFigs(PclContextPrivPtr pConPriv, char *t, int n)
{
char *ptr;

    ptr = pConPriv->figures;
    while ( ( pConPriv->fcount + n) > pConPriv->fcount_max ) {
	ptr = (char *)xrealloc(ptr, 1024 + pConPriv->fcount_max);
	if ( !ptr )
	    return;
	pConPriv->figures = ptr;
	pConPriv->fcount_max += 1024;
    }
    ptr += pConPriv->fcount;
    pConPriv->fcount += n;
    memcpy(ptr, t, n);
}
#endif /* XP_PCL_LJ3 */

/*
 * PclSendData:
 * For XP-PCL-COLOR/XP-PCL-MONO, it executes the macro stored before
 * in the clipped area.
 * For XP-PCL-LJ3, it draws the spooled figures in the clipped area.
 */
void
PclSendData(
	FILE *outFile,
	PclContextPrivPtr pConPriv,
	BoxPtr pbox,
	int nbox,
	double ratio
)
{
char *ptr;
int n;
char t[80];

#ifdef XP_PCL_LJ3
    ptr = pConPriv->figures;
    n = pConPriv->fcount;
#else
    ptr = "\033&f3X";
    n = 5;
#endif /* XP_PCL_LJ3 */

    while( nbox )
      {
	  /*
	   * Set the HP-GL/2 input window to the current
	   * rectangle in the clip region, then send the code to
	   * execute the macro defined above.
	   */
	  if (ratio == 1.0)
	    sprintf( t, "\033%%0BIW%d,%d,%d,%d;\033%%0A",
			pbox->x1, pbox->y1,
			pbox->x2, pbox->y2 );
	  else
	    sprintf( t, "\033%%0BIW%g,%d,%g,%d;\033%%0A",
			ratio * pbox->x1, pbox->y1,
			ratio * pbox->x2, pbox->y2 );

	  SEND_PCL( outFile, t );
	  SEND_PCL_COUNT( outFile, ptr, n);

	  nbox--;
	  pbox++;
      }
}