Comparar commits
1 Commits
| Autor | SHA1 | Data | |
|---|---|---|---|
| 5e2f263b42 |
+58
-1
@@ -1,6 +1,63 @@
|
||||
CHANGES.txt - 2010-03-30
|
||||
CHANGES.txt - 2010-06-17
|
||||
------------------------
|
||||
|
||||
CHANGES IN CUPS V1.4.4
|
||||
|
||||
- Documentation updates (STR #3453, STR #3527, STR #3528, STR #3529)
|
||||
- Security: The texttops filter did not check the results of allocations
|
||||
(STR #3516)
|
||||
- Security: The fix for CVE-2009-3553 was incomplete (STR #3490)
|
||||
- Security: The web admin interface could disclose the contents of
|
||||
memory (STR #3577)
|
||||
- Security: CUPS could overwrite files as root in directories owned or
|
||||
writable by non-root users (STR #3510)
|
||||
- The cups-config utility did not return the correct linker options on
|
||||
AIX (STR #3587)
|
||||
- Fixed some IPP conformance issues with the scheduler's
|
||||
ippget-event-life, operations-supported, output-bin, and sides
|
||||
attributes (STR #3554)
|
||||
- The OpenSSL interfaces have been made thread-safe and the GNU TLS
|
||||
interface is explicitly forbidden when threading is enabled
|
||||
(STR #3461)
|
||||
- Fixed an IPP conformance issue with the scheduler's Send-Document
|
||||
implementation (STR #3514)
|
||||
- Added additional validation checks for the 1284 device ID (STR #3534)
|
||||
- Fixed a problem with the RPM spec file (STR #3544)
|
||||
- The lpstat command did not limit the job list to the specified
|
||||
printers (STR #3541)
|
||||
- The cupsfilter command did not set the RIP_MAX_CACHE environment
|
||||
variable (STR #3531)
|
||||
- Fixed support for media-col and page size variants (STR #3394)
|
||||
- The PostScript filter did not support all media selection options for
|
||||
the first page (STR #3525)
|
||||
- The scheduler did not always remove job control files (STR #3425)
|
||||
- The scheduler could crash on restart if classes were defined
|
||||
(STR #3524)
|
||||
- The scheduler no longer looks up network interface hostnames by
|
||||
default on Mac OS X (STR #3523)
|
||||
- ippWriteIO did not write collection (member) attributes properly in
|
||||
all cases (STR #3521)
|
||||
- The "cupsctl --remote-any" and corresponding web interface check box
|
||||
(allow printing from the Internet) did not work reliably (STR #3520)
|
||||
- The lpq and lpr commands would sometimes choose different default
|
||||
printers (STR #3503)
|
||||
- cupsDo*Request did not flush error text, leading to multiple issues
|
||||
(STR #3325, STR #3519)
|
||||
- cupsDoAuthentication did not cancel password authentication after 3
|
||||
failures (STR #3518)
|
||||
- Fixed several LDAP browsing bugs (STR #3392)
|
||||
- The Dymo driver did not support copies (STR #3457)
|
||||
- The scheduler did not update the classes.conf file when deleting a
|
||||
printer belonging to a class (STR #3505)
|
||||
- The lppasswd command did not use localized password prompts
|
||||
(STR #3492)
|
||||
- The socket backend no longer waits for back-channel data on platforms
|
||||
other than Mac OS X (STR #3495)
|
||||
- The scheduler didn't send events when a printer started accepting or
|
||||
rejecting jobs (STR #3480)
|
||||
- The web interface now includes additional CSRF protection (STR #3498)
|
||||
|
||||
|
||||
CHANGES IN CUPS V1.4.3
|
||||
|
||||
- SECURITY: The scheduler could try responding on a closed client
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
INSTALL - CUPS v1.4.3 - 2009-12-15
|
||||
INSTALL - CUPS v1.4.4 - 2010-06-17
|
||||
----------------------------------
|
||||
|
||||
This file describes how to compile and install CUPS from source code. For more
|
||||
|
||||
+4
-4
@@ -1,9 +1,9 @@
|
||||
#
|
||||
# "$Id$"
|
||||
#
|
||||
# Common makefile definitions for the Common UNIX Printing System (CUPS).
|
||||
# Common makefile definitions for CUPS.
|
||||
#
|
||||
# Copyright 2007-2009 by Apple Inc.
|
||||
# Copyright 2007-2010 by Apple Inc.
|
||||
# Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
#
|
||||
# These coded instructions, statements, and computer programs are the
|
||||
@@ -263,7 +263,7 @@ DBUSDIR = @DBUSDIR@
|
||||
|
||||
.c.o:
|
||||
echo Compiling $<...
|
||||
$(CC) $(ARCHFLAGS) $(OPTIM) $(ALL_CFLAGS) -c $<
|
||||
$(CC) $(ARCHFLAGS) $(OPTIM) $(ALL_CFLAGS) -c -o $@ $<
|
||||
|
||||
.c.32.o:
|
||||
echo Compiling 32-bit $<...
|
||||
@@ -275,7 +275,7 @@ DBUSDIR = @DBUSDIR@
|
||||
|
||||
.cxx.o:
|
||||
echo Compiling $<...
|
||||
$(CXX) $(ARCHFLAGS) $(OPTIM) $(ALL_CXXFLAGS) -c $<
|
||||
$(CXX) $(ARCHFLAGS) $(OPTIM) $(ALL_CXXFLAGS) -c -o $@ $<
|
||||
|
||||
.man.1 .man.1m .man.3 .man.5 .man.7 .man.8:
|
||||
echo Linking $<...
|
||||
|
||||
+9
-9
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# "$Id$"
|
||||
#
|
||||
# Top-level Makefile for the Common UNIX Printing System (CUPS).
|
||||
# Top-level Makefile for CUPS.
|
||||
#
|
||||
# Copyright 2007-2010 by Apple Inc.
|
||||
# Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
@@ -16,13 +16,6 @@
|
||||
include Makedefs
|
||||
|
||||
|
||||
#
|
||||
# Don't run top-level build targets in parallel...
|
||||
#
|
||||
|
||||
.NOTPARALLEL:
|
||||
|
||||
|
||||
#
|
||||
# Directories to make...
|
||||
#
|
||||
@@ -402,7 +395,7 @@ docset: apihelp
|
||||
|
||||
|
||||
#
|
||||
# Make software distributions using EPM (http://www.easysw.com/epm/)...
|
||||
# Make software distributions using EPM (http://www.epmhome.org/)...
|
||||
#
|
||||
|
||||
EPMFLAGS = -v --output-dir dist $(EPMARCH)
|
||||
@@ -432,6 +425,13 @@ dist: all
|
||||
esac
|
||||
|
||||
|
||||
#
|
||||
# Don't run top-level build targets in parallel...
|
||||
#
|
||||
|
||||
.NOTPARALLEL:
|
||||
|
||||
|
||||
#
|
||||
# End of "$Id$".
|
||||
#
|
||||
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
README - CUPS v1.4.3 - 2009-12-15
|
||||
README - CUPS v1.4.4 - 2010-06-17
|
||||
---------------------------------
|
||||
|
||||
Looking for compile instructions? Read the file "INSTALL.txt"
|
||||
@@ -150,7 +150,7 @@ PRINTING FILES
|
||||
|
||||
LEGAL STUFF
|
||||
|
||||
CUPS is Copyright 2007-2009 by Apple Inc. CUPS and the CUPS logo are
|
||||
CUPS is Copyright 2007-2010 by Apple Inc. CUPS and the CUPS logo are
|
||||
trademarks of Apple Inc.
|
||||
|
||||
The MD5 Digest code is Copyright 1999 Aladdin Enterprises.
|
||||
|
||||
+32
-9
@@ -185,18 +185,34 @@ backendGetDeviceID(
|
||||
|
||||
/*
|
||||
* The length field counts the number of bytes in the string
|
||||
* including the length field itself (2 bytes).
|
||||
* including the length field itself (2 bytes). The minimum
|
||||
* length for a valid/usable device ID is 14 bytes:
|
||||
*
|
||||
* <LENGTH> MFG: <MFG> ;MDL: <MDL> ;
|
||||
* 2 + 4 + 1 + 5 + 1 + 1
|
||||
*/
|
||||
|
||||
length -= 2;
|
||||
if (length < 14)
|
||||
{
|
||||
/*
|
||||
* Can't use this device ID, so don't try to copy it...
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copy the device ID text to the beginning of the buffer and
|
||||
* nul-terminate.
|
||||
*/
|
||||
device_id[0] = '\0';
|
||||
got_id = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
/*
|
||||
* Copy the device ID text to the beginning of the buffer and
|
||||
* nul-terminate.
|
||||
*/
|
||||
|
||||
memmove(device_id, device_id + 2, length);
|
||||
device_id[length] = '\0';
|
||||
length -= 2;
|
||||
|
||||
memmove(device_id, device_id + 2, length);
|
||||
device_id[length] = '\0';
|
||||
}
|
||||
}
|
||||
# ifdef DEBUG
|
||||
else
|
||||
@@ -293,6 +309,9 @@ backendGetDeviceID(
|
||||
mfg = temp;
|
||||
}
|
||||
|
||||
if (!mdl)
|
||||
mdl = "";
|
||||
|
||||
if (!strncasecmp(mdl, mfg, strlen(mfg)))
|
||||
{
|
||||
mdl += strlen(mfg);
|
||||
@@ -384,7 +403,11 @@ backendGetMakeModel(
|
||||
|
||||
char temp[1024]; /* Temporary make and model */
|
||||
|
||||
snprintf(temp, sizeof(temp), "%s %s", mfg, mdl);
|
||||
if (mfg)
|
||||
snprintf(temp, sizeof(temp), "%s %s", mfg, mdl);
|
||||
else
|
||||
snprintf(temp, sizeof(temp), "%s", mdl);
|
||||
|
||||
_ppdNormalizeMakeAndModel(temp, make_model, make_model_size);
|
||||
}
|
||||
}
|
||||
|
||||
+3
-1
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* AppSocket backend for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -406,6 +406,7 @@ main(int argc, /* I - Number of command-line arguments (6 or 7) */
|
||||
CUPS_LLCAST tbytes);
|
||||
}
|
||||
|
||||
#ifdef __APPLE__
|
||||
/*
|
||||
* Wait up to 5 seconds to get any pending back-channel data...
|
||||
*/
|
||||
@@ -414,6 +415,7 @@ main(int argc, /* I - Number of command-line arguments (6 or 7) */
|
||||
while (wait_time >= time(¤t_time))
|
||||
if (wait_bc(device_fd, wait_time - current_time) <= 0)
|
||||
break;
|
||||
#endif /* __APPLE__ */
|
||||
|
||||
if (waiteof)
|
||||
{
|
||||
|
||||
+1
-104
@@ -112,12 +112,6 @@ extern char **environ;
|
||||
|
||||
#define DEBUG_WRITES 0
|
||||
|
||||
/*
|
||||
* WAIT_EOF_DELAY is number of seconds we'll wait for responses from
|
||||
* the printer after we've finished sending all the data
|
||||
*/
|
||||
#define WAIT_EOF_DELAY 7
|
||||
#define WAIT_SIDE_DELAY 3
|
||||
#define DEFAULT_TIMEOUT 5000L
|
||||
|
||||
#define USB_INTERFACE_KIND CFUUIDGetUUIDBytes(kIOUSBInterfaceInterfaceID190)
|
||||
@@ -247,11 +241,6 @@ typedef struct globals_s
|
||||
Boolean wait_eof;
|
||||
int drain_output; /* Drain all pending output */
|
||||
int bidi_flag; /* 0=unidirectional, 1=bidirectional */
|
||||
|
||||
pthread_mutex_t sidechannel_thread_mutex;
|
||||
pthread_cond_t sidechannel_thread_cond;
|
||||
int sidechannel_thread_stop;
|
||||
int sidechannel_thread_done;
|
||||
} globals_t;
|
||||
|
||||
|
||||
@@ -344,7 +333,6 @@ print_device(const char *uri, /* I - Device URI */
|
||||
UInt32 bytes; /* Bytes written */
|
||||
struct timeval *timeout, /* Timeout pointer */
|
||||
stimeout; /* Timeout for select() */
|
||||
struct timespec cond_timeout; /* pthread condition timeout */
|
||||
|
||||
|
||||
/*
|
||||
@@ -488,12 +476,6 @@ print_device(const char *uri, /* I - Device URI */
|
||||
|
||||
if (have_sidechannel)
|
||||
{
|
||||
g.sidechannel_thread_stop = 0;
|
||||
g.sidechannel_thread_done = 0;
|
||||
|
||||
pthread_cond_init(&g.sidechannel_thread_cond, NULL);
|
||||
pthread_mutex_init(&g.sidechannel_thread_mutex, NULL);
|
||||
|
||||
if (pthread_create(&sidechannel_thread_id, NULL, sidechannel_thread, NULL))
|
||||
{
|
||||
_cupsLangPuts(stderr, _("ERROR: Fatal USB error\n"));
|
||||
@@ -750,86 +732,6 @@ print_device(const char *uri, /* I - Device URI */
|
||||
|
||||
fprintf(stderr, "DEBUG: Sent %lld bytes...\n", (off_t)total_bytes);
|
||||
|
||||
/*
|
||||
* Wait for the side channel thread to exit...
|
||||
*/
|
||||
|
||||
if (have_sidechannel)
|
||||
{
|
||||
close(CUPS_SC_FD);
|
||||
pthread_mutex_lock(&g.readwrite_lock_mutex);
|
||||
g.readwrite_lock = 0;
|
||||
pthread_cond_signal(&g.readwrite_lock_cond);
|
||||
pthread_mutex_unlock(&g.readwrite_lock_mutex);
|
||||
|
||||
g.sidechannel_thread_stop = 1;
|
||||
pthread_mutex_lock(&g.sidechannel_thread_mutex);
|
||||
if (!g.sidechannel_thread_done)
|
||||
{
|
||||
/*
|
||||
* Wait for the side-channel thread to exit...
|
||||
*/
|
||||
|
||||
cond_timeout.tv_sec = time(NULL) + WAIT_SIDE_DELAY;
|
||||
cond_timeout.tv_nsec = 0;
|
||||
if (pthread_cond_timedwait(&g.sidechannel_thread_cond,
|
||||
&g.sidechannel_thread_mutex,
|
||||
&cond_timeout) != 0)
|
||||
{
|
||||
/*
|
||||
* Force the side-channel thread to exit...
|
||||
*/
|
||||
|
||||
pthread_kill(sidechannel_thread_id, SIGTERM);
|
||||
}
|
||||
}
|
||||
pthread_mutex_unlock(&g.sidechannel_thread_mutex);
|
||||
|
||||
pthread_join(sidechannel_thread_id, NULL);
|
||||
|
||||
pthread_cond_destroy(&g.sidechannel_thread_cond);
|
||||
pthread_mutex_destroy(&g.sidechannel_thread_mutex);
|
||||
}
|
||||
|
||||
pthread_cond_destroy(&g.readwrite_lock_cond);
|
||||
pthread_mutex_destroy(&g.readwrite_lock_mutex);
|
||||
|
||||
/*
|
||||
* Signal the read thread to stop...
|
||||
*/
|
||||
|
||||
g.read_thread_stop = 1;
|
||||
|
||||
/*
|
||||
* Give the read thread WAIT_EOF_DELAY seconds to complete all the data. If
|
||||
* we are not signaled in that time then force the thread to exit.
|
||||
*/
|
||||
|
||||
pthread_mutex_lock(&g.read_thread_mutex);
|
||||
|
||||
if (!g.read_thread_done)
|
||||
{
|
||||
cond_timeout.tv_sec = time(NULL) + WAIT_EOF_DELAY;
|
||||
cond_timeout.tv_nsec = 0;
|
||||
|
||||
if (pthread_cond_timedwait(&g.read_thread_cond, &g.read_thread_mutex,
|
||||
&cond_timeout) != 0)
|
||||
{
|
||||
/*
|
||||
* Force the read thread to exit...
|
||||
*/
|
||||
|
||||
g.wait_eof = 0;
|
||||
pthread_kill(read_thread_id, SIGTERM);
|
||||
}
|
||||
}
|
||||
pthread_mutex_unlock(&g.read_thread_mutex);
|
||||
|
||||
pthread_join(read_thread_id, NULL); /* wait for the read thread to return */
|
||||
|
||||
pthread_cond_destroy(&g.read_thread_cond);
|
||||
pthread_mutex_destroy(&g.read_thread_mutex);
|
||||
|
||||
/*
|
||||
* Close the connection and input file and general clean up...
|
||||
*/
|
||||
@@ -1038,12 +940,7 @@ sidechannel_thread(void *reference)
|
||||
break;
|
||||
}
|
||||
}
|
||||
while (!g.sidechannel_thread_stop);
|
||||
|
||||
pthread_mutex_lock(&g.sidechannel_thread_mutex);
|
||||
g.sidechannel_thread_done = 1;
|
||||
pthread_cond_signal(&g.sidechannel_thread_cond);
|
||||
pthread_mutex_unlock(&g.sidechannel_thread_mutex);
|
||||
while (1);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
#
|
||||
# "$Id$"
|
||||
#
|
||||
# CGI makefile for the Common UNIX Printing System (CUPS).
|
||||
# CGI makefile for CUPS.
|
||||
#
|
||||
# Copyright 2007-2009 by Apple Inc.
|
||||
# Copyright 2007-2010 by Apple Inc.
|
||||
# Copyright 1997-2006 by Easy Software Products.
|
||||
#
|
||||
# These coded instructions, statements, and computer programs are the
|
||||
@@ -118,7 +118,7 @@ install-exec:
|
||||
done
|
||||
if test "x$(SYMROOT)" != "x"; then \
|
||||
$(INSTALL_DIR) $(SYMROOT); \
|
||||
for file in $(TARGETS); do \
|
||||
for file in $(CGIS); do \
|
||||
cp $$file $(SYMROOT); \
|
||||
done \
|
||||
fi
|
||||
|
||||
+4
-4
@@ -771,7 +771,7 @@ do_am_class(http_t *http, /* I - HTTP connection */
|
||||
attr = ippAddStrings(request, IPP_TAG_PRINTER, IPP_TAG_URI, "member-uris",
|
||||
num_printers, NULL, NULL);
|
||||
for (i = 0; i < num_printers; i ++)
|
||||
attr->values[i].string.text = strdup(cgiGetArray("MEMBER_URIS", i));
|
||||
attr->values[i].string.text = _cupsStrAlloc(cgiGetArray("MEMBER_URIS", i));
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2481,7 +2481,7 @@ do_list_printers(http_t *http) /* I - HTTP connection */
|
||||
attr;
|
||||
attr = ippFindNextAttribute(response, "device-uri", IPP_TAG_URI))
|
||||
{
|
||||
cupsArrayAdd(printer_devices, strdup(attr->values[0].string.text));
|
||||
cupsArrayAdd(printer_devices, _cupsStrAlloc(attr->values[0].string.text));
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2618,7 +2618,7 @@ do_list_printers(http_t *http) /* I - HTTP connection */
|
||||
for (printer_device = (char *)cupsArrayFirst(printer_devices);
|
||||
printer_device;
|
||||
printer_device = (char *)cupsArrayNext(printer_devices))
|
||||
free(printer_device);
|
||||
_cupsStrFree(printer_device);
|
||||
|
||||
cupsArrayDelete(printer_devices);
|
||||
}
|
||||
@@ -3059,7 +3059,7 @@ do_set_allowed_users(http_t *http) /* I - HTTP connection */
|
||||
* Add the name...
|
||||
*/
|
||||
|
||||
attr->values[i].string.text = strdup(ptr);
|
||||
attr->values[i].string.text = _cupsStrAlloc(ptr);
|
||||
|
||||
/*
|
||||
* Advance to the next name...
|
||||
|
||||
+5
-4
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* CGI support library definitions.
|
||||
* CGI support library definitions for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2006 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -69,11 +69,12 @@ extern void cgiCopyTemplateLang(const char *tmpl);
|
||||
extern int cgiDoSearch(void *search, const char *text);
|
||||
extern void cgiEndHTML(void);
|
||||
extern void cgiEndMultipart(void);
|
||||
extern char *cgiFormEncode(char *dst, const char *src, size_t dstsize);
|
||||
extern char *cgiFormEncode(char *dst, const char *src,
|
||||
size_t dstsize);
|
||||
extern void cgiFreeSearch(void *search);
|
||||
extern const char *cgiGetArray(const char *name, int element);
|
||||
extern void cgiGetAttributes(ipp_t *request, const char *tmpl);
|
||||
extern char *cgiGetCookie(const char *name, char *buf, int buflen);
|
||||
extern const char *cgiGetCookie(const char *name);
|
||||
extern const cgi_file_t *cgiGetFile(void);
|
||||
extern cups_array_t *cgiGetIPPObjects(ipp_t *response, void *search);
|
||||
extern int cgiGetSize(const char *name);
|
||||
|
||||
@@ -10,6 +10,7 @@ _cgiFormEncode
|
||||
_cgiFreeSearch
|
||||
_cgiGetArray
|
||||
_cgiGetAttributes
|
||||
_cgiGetCookie
|
||||
_cgiGetFile
|
||||
_cgiGetIPPObjects
|
||||
_cgiGetSize
|
||||
@@ -24,6 +25,7 @@ _cgiRewriteURL
|
||||
_cgiSetArray
|
||||
_cgiSetIPPObjectVars
|
||||
_cgiSetIPPVars
|
||||
_cgiSetCookie
|
||||
_cgiSetServerVersion
|
||||
_cgiSetSize
|
||||
_cgiSetVariable
|
||||
|
||||
@@ -369,6 +369,20 @@ cgi_copy(FILE *out, /* I - Output file */
|
||||
|
||||
continue;
|
||||
}
|
||||
else if (name[0] == '$')
|
||||
{
|
||||
/*
|
||||
* Insert cookie value or nothing if not defined.
|
||||
*/
|
||||
|
||||
if ((value = cgiGetCookie(name + 1)) != NULL)
|
||||
outptr = value;
|
||||
else
|
||||
{
|
||||
outval[0] = '\0';
|
||||
outptr = outval;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
/*
|
||||
|
||||
+252
-24
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* CGI form variable and array functions.
|
||||
* CGI form variable and array functions for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2005 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -14,25 +14,34 @@
|
||||
*
|
||||
* Contents:
|
||||
*
|
||||
* cgiCheckVariables() - Check for the presence of "required" variables.
|
||||
* cgiCheckVariables() - Check for the presence of "required"
|
||||
* variables.
|
||||
* cgiClearVariables() - Clear all form variables.
|
||||
* cgiGetArray() - Get an element from a form array...
|
||||
* cgiGetFile() - Get the file (if any) that was submitted in the form.
|
||||
* cgiGetArray() - Get an element from a form array.
|
||||
* cgiGetCookie() - Get a cookie value.
|
||||
* cgiGetFile() - Get the file (if any) that was submitted in
|
||||
* the form.
|
||||
* cgiGetSize() - Get the size of a form array value.
|
||||
* cgiGetVariable() - Get a CGI variable from the database...
|
||||
* cgiInitialize() - Initialize the CGI variable "database"...
|
||||
* cgiGetVariable() - Get a CGI variable from the database.
|
||||
* cgiInitialize() - Initialize the CGI variable "database".
|
||||
* cgiIsPOST() - Determine whether this page was POSTed.
|
||||
* cgiSetArray() - Set array element N to the specified string.
|
||||
* cgiSetCookie() - Set a cookie value.
|
||||
* cgiSetSize() - Set the array size.
|
||||
* cgiSetVariable() - Set a CGI variable in the database...
|
||||
* cgiSetVariable() - Set a CGI variable in the database.
|
||||
* cgi_add_variable() - Add a form variable.
|
||||
* cgi_compare_variables() - Compare two variables.
|
||||
* cgi_find_variable() - Find a variable...
|
||||
* cgi_initialize_get() - Initialize form variables using the GET method.
|
||||
* cgi_initialize_multipart() - Initialize variables and file using the POST method.
|
||||
* cgi_find_variable() - Find a variable.
|
||||
* cgi_initialize_cookies() - Initialize cookies.
|
||||
* cgi_initialize_get() - Initialize form variables using the GET
|
||||
* method.
|
||||
* cgi_initialize_multipart() - Initialize variables and file using the POST
|
||||
* method.
|
||||
* cgi_initialize_post() - Initialize variables using the POST method.
|
||||
* cgi_initialize_string() - Initialize form variables from a string.
|
||||
* cgi_passwd() - Catch authentication requests and notify the server.
|
||||
* cgi_passwd() - Catch authentication requests and notify the
|
||||
* server.
|
||||
* cgi_set_sid() - Set the CUPS session ID.
|
||||
* cgi_sort_variables() - Sort all form variables for faster lookup.
|
||||
* cgi_unlink_file() - Remove the uploaded form.
|
||||
*/
|
||||
@@ -40,6 +49,15 @@
|
||||
/*#define DEBUG*/
|
||||
#include "cgi-private.h"
|
||||
#include <errno.h>
|
||||
#include <cups/http.h>
|
||||
#include <cups/md5.h>
|
||||
|
||||
|
||||
/*
|
||||
* Session ID name
|
||||
*/
|
||||
|
||||
#define CUPS_SID "org.cups.sid"
|
||||
|
||||
|
||||
/*
|
||||
@@ -59,6 +77,8 @@ typedef struct /**** Form variable structure ****/
|
||||
* Local globals...
|
||||
*/
|
||||
|
||||
static int num_cookies = 0;/* Number of cookies */
|
||||
static cups_option_t *cookies = NULL;/* Cookies */
|
||||
static int form_count = 0, /* Form variable count */
|
||||
form_alloc = 0; /* Number of variables allocated */
|
||||
static _cgi_var_t *form_vars = NULL;
|
||||
@@ -76,11 +96,13 @@ static void cgi_add_variable(const char *name, int element,
|
||||
static int cgi_compare_variables(const _cgi_var_t *v1,
|
||||
const _cgi_var_t *v2);
|
||||
static _cgi_var_t *cgi_find_variable(const char *name);
|
||||
static void cgi_initialize_cookies(void);
|
||||
static int cgi_initialize_get(void);
|
||||
static int cgi_initialize_multipart(const char *boundary);
|
||||
static int cgi_initialize_post(void);
|
||||
static int cgi_initialize_string(const char *data);
|
||||
static const char *cgi_passwd(const char *prompt);
|
||||
static const char *cgi_set_sid(void);
|
||||
static void cgi_sort_variables(void);
|
||||
static void cgi_unlink_file(void);
|
||||
|
||||
@@ -161,7 +183,7 @@ cgiClearVariables(void)
|
||||
|
||||
|
||||
/*
|
||||
* 'cgiGetArray()' - Get an element from a form array...
|
||||
* 'cgiGetArray()' - Get an element from a form array.
|
||||
*/
|
||||
|
||||
const char * /* O - Element value or NULL */
|
||||
@@ -181,6 +203,17 @@ cgiGetArray(const char *name, /* I - Name of array variable */
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'cgiGetCookie()' - Get a cookie value.
|
||||
*/
|
||||
|
||||
const char * /* O - Value or NULL */
|
||||
cgiGetCookie(const char *name) /* I - Name of cookie */
|
||||
{
|
||||
return (cupsGetOption(name, num_cookies, cookies));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'cgiGetFile()' - Get the file (if any) that was submitted in the form.
|
||||
*/
|
||||
@@ -210,10 +243,10 @@ cgiGetSize(const char *name) /* I - Name of variable */
|
||||
|
||||
|
||||
/*
|
||||
* 'cgiGetVariable()' - Get a CGI variable from the database...
|
||||
* 'cgiGetVariable()' - Get a CGI variable from the database.
|
||||
*
|
||||
* Returns NULL if the variable doesn't exist. If the variable is an
|
||||
* array of values, returns the last element...
|
||||
* array of values, returns the last element.
|
||||
*/
|
||||
|
||||
const char * /* O - Value of variable */
|
||||
@@ -237,14 +270,16 @@ cgiGetVariable(const char *name) /* I - Name of variable */
|
||||
|
||||
|
||||
/*
|
||||
* 'cgiInitialize()' - Initialize the CGI variable "database"...
|
||||
* 'cgiInitialize()' - Initialize the CGI variable "database".
|
||||
*/
|
||||
|
||||
int /* O - Non-zero if there was form data */
|
||||
cgiInitialize(void)
|
||||
{
|
||||
const char *method; /* Form posting method */
|
||||
const char *content_type; /* Content-Type of post data */
|
||||
const char *method, /* Form posting method */
|
||||
*content_type, /* Content-Type of post data */
|
||||
*cups_sid_cookie, /* SID cookie */
|
||||
*cups_sid_form; /* SID form variable */
|
||||
|
||||
|
||||
/*
|
||||
@@ -267,6 +302,20 @@ cgiInitialize(void)
|
||||
setbuf(stdout, NULL);
|
||||
#endif /* DEBUG */
|
||||
|
||||
/*
|
||||
* Get cookies...
|
||||
*/
|
||||
|
||||
cgi_initialize_cookies();
|
||||
|
||||
if ((cups_sid_cookie = cgiGetCookie(CUPS_SID)) == NULL)
|
||||
{
|
||||
fputs("DEBUG: " CUPS_SID " cookie not found, initializing!\n", stderr);
|
||||
cups_sid_cookie = cgi_set_sid();
|
||||
}
|
||||
|
||||
fprintf(stderr, "DEBUG: " CUPS_SID " cookie is \"%s\"\n", cups_sid_cookie);
|
||||
|
||||
/*
|
||||
* Get the request method (GET or POST)...
|
||||
*/
|
||||
@@ -290,9 +339,27 @@ cgiInitialize(void)
|
||||
boundary += 9;
|
||||
|
||||
if (content_type && !strncmp(content_type, "multipart/form-data; ", 21))
|
||||
return (cgi_initialize_multipart(boundary));
|
||||
{
|
||||
if (!cgi_initialize_multipart(boundary))
|
||||
return (0);
|
||||
}
|
||||
else if (!cgi_initialize_post())
|
||||
return (0);
|
||||
|
||||
if ((cups_sid_form = cgiGetVariable(CUPS_SID)) == NULL ||
|
||||
strcmp(cups_sid_cookie, cups_sid_form))
|
||||
{
|
||||
if (cups_sid_form)
|
||||
fprintf(stderr, "DEBUG: " CUPS_SID " form variable is \"%s\"\n",
|
||||
cups_sid_form);
|
||||
else
|
||||
fputs("DEBUG: " CUPS_SID " form variable is not present.\n", stderr);
|
||||
|
||||
cgiClearVariables();
|
||||
return (0);
|
||||
}
|
||||
else
|
||||
return (cgi_initialize_post());
|
||||
return (1);
|
||||
}
|
||||
else
|
||||
return (0);
|
||||
@@ -370,6 +437,38 @@ cgiSetArray(const char *name, /* I - Name of variable */
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'cgiSetCookie()' - Set a cookie value.
|
||||
*/
|
||||
|
||||
void
|
||||
cgiSetCookie(const char *name, /* I - Name */
|
||||
const char *value, /* I - Value */
|
||||
const char *path, /* I - Path (typically "/") */
|
||||
const char *domain, /* I - Domain name */
|
||||
time_t expires, /* I - Expiration date (0 for session) */
|
||||
int secure) /* I - Require SSL */
|
||||
{
|
||||
num_cookies = cupsAddOption(name, value, num_cookies, &cookies);
|
||||
|
||||
printf("Set-Cookie: %s=%s;", name, value);
|
||||
if (path)
|
||||
printf("; path=%s", path);
|
||||
if (domain)
|
||||
printf("; domain=%s", domain);
|
||||
if (expires)
|
||||
{
|
||||
char date[256]; /* Date string */
|
||||
|
||||
printf("; expires=%s", httpGetDateString2(expires, date, sizeof(date)));
|
||||
}
|
||||
if (secure)
|
||||
puts("; secure;");
|
||||
else
|
||||
puts(";");
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'cgiSetSize()' - Set the array size.
|
||||
*/
|
||||
@@ -418,7 +517,7 @@ cgiSetSize(const char *name, /* I - Name of variable */
|
||||
|
||||
|
||||
/*
|
||||
* 'cgiSetVariable()' - Set a CGI variable in the database...
|
||||
* 'cgiSetVariable()' - Set a CGI variable in the database.
|
||||
*
|
||||
* If the variable is an array, this truncates the array to a single element.
|
||||
*/
|
||||
@@ -514,7 +613,7 @@ cgi_compare_variables(
|
||||
|
||||
|
||||
/*
|
||||
* 'cgi_find_variable()' - Find a variable...
|
||||
* 'cgi_find_variable()' - Find a variable.
|
||||
*/
|
||||
|
||||
static _cgi_var_t * /* O - Variable pointer or NULL */
|
||||
@@ -533,6 +632,91 @@ cgi_find_variable(const char *name) /* I - Name of variable */
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'cgi_initialize_cookies()' - Initialize cookies.
|
||||
*/
|
||||
|
||||
static void
|
||||
cgi_initialize_cookies(void)
|
||||
{
|
||||
const char *cookie; /* HTTP_COOKIE environment variable */
|
||||
char name[128], /* Name string */
|
||||
value[512], /* Value string */
|
||||
*ptr; /* Pointer into name/value */
|
||||
|
||||
|
||||
if ((cookie = getenv("HTTP_COOKIE")) == NULL)
|
||||
return;
|
||||
|
||||
while (*cookie)
|
||||
{
|
||||
/*
|
||||
* Skip leading whitespace...
|
||||
*/
|
||||
|
||||
while (isspace(*cookie & 255))
|
||||
cookie ++;
|
||||
if (!*cookie)
|
||||
break;
|
||||
|
||||
/*
|
||||
* Copy the name...
|
||||
*/
|
||||
|
||||
for (ptr = name; *cookie && *cookie != '=';)
|
||||
if (ptr < (name + sizeof(name) - 1))
|
||||
*ptr++ = *cookie++;
|
||||
else
|
||||
break;
|
||||
|
||||
if (*cookie != '=')
|
||||
break;
|
||||
|
||||
*ptr = '\0';
|
||||
cookie ++;
|
||||
|
||||
/*
|
||||
* Then the value...
|
||||
*/
|
||||
|
||||
if (*cookie == '\"')
|
||||
{
|
||||
for (cookie ++, ptr = value; *cookie && *cookie != '\"';)
|
||||
if (ptr < (value + sizeof(value) - 1))
|
||||
*ptr++ = *cookie++;
|
||||
else
|
||||
break;
|
||||
|
||||
if (*cookie == '\"')
|
||||
cookie ++;
|
||||
}
|
||||
else
|
||||
{
|
||||
for (ptr = value; *cookie && *cookie != ';';)
|
||||
if (ptr < (value + sizeof(value) - 1))
|
||||
*ptr++ = *cookie++;
|
||||
else
|
||||
break;
|
||||
}
|
||||
|
||||
if (*cookie == ';')
|
||||
cookie ++;
|
||||
else if (*cookie)
|
||||
break;
|
||||
|
||||
*ptr = '\0';
|
||||
|
||||
/*
|
||||
* Then add the cookie to an array as long as the name doesn't start with
|
||||
* "$"...
|
||||
*/
|
||||
|
||||
if (name[0] != '$')
|
||||
num_cookies = cupsAddOption(name, value, num_cookies, &cookies);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'cgi_initialize_get()' - Initialize form variables using the GET method.
|
||||
*/
|
||||
@@ -562,7 +746,8 @@ cgi_initialize_get(void)
|
||||
|
||||
|
||||
/*
|
||||
* 'cgi_initialize_multipart()' - Initialize variables and file using the POST method.
|
||||
* 'cgi_initialize_multipart()' - Initialize variables and file using the POST
|
||||
* method.
|
||||
*
|
||||
* TODO: Update to support files > 2GB.
|
||||
*/
|
||||
@@ -874,7 +1059,7 @@ cgi_initialize_string(const char *data) /* I - Form data string */
|
||||
char *s, /* Pointer to current form string */
|
||||
ch, /* Temporary character */
|
||||
name[255], /* Name of form variable */
|
||||
value[65536]; /* Variable value... */
|
||||
value[65536]; /* Variable value */
|
||||
|
||||
|
||||
/*
|
||||
@@ -927,6 +1112,9 @@ cgi_initialize_string(const char *data) /* I - Form data string */
|
||||
* Read the hex code...
|
||||
*/
|
||||
|
||||
if (!isxdigit(data[1] & 255) || !isxdigit(data[2] & 255))
|
||||
return (0);
|
||||
|
||||
if (s < (value + sizeof(value) - 1))
|
||||
{
|
||||
data ++;
|
||||
@@ -1014,6 +1202,46 @@ cgi_passwd(const char *prompt) /* I - Prompt (not used) */
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'cgi_set_sid()' - Set the CUPS session ID.
|
||||
*/
|
||||
|
||||
static const char * /* O - New session ID */
|
||||
cgi_set_sid(void)
|
||||
{
|
||||
char buffer[512], /* SID data */
|
||||
sid[33]; /* SID string */
|
||||
_cups_md5_state_t md5; /* MD5 state */
|
||||
unsigned char sum[16]; /* MD5 sum */
|
||||
const char *remote_addr, /* REMOTE_ADDR */
|
||||
*server_name, /* SERVER_NAME */
|
||||
*server_port; /* SERVER_PORT */
|
||||
|
||||
|
||||
if ((remote_addr = getenv("REMOTE_ADDR")) == NULL)
|
||||
remote_addr = "REMOTE_ADDR";
|
||||
if ((server_name = getenv("SERVER_NAME")) == NULL)
|
||||
server_name = "SERVER_NAME";
|
||||
if ((server_port = getenv("SERVER_PORT")) == NULL)
|
||||
server_port = "SERVER_PORT";
|
||||
|
||||
CUPS_SRAND(time(NULL));
|
||||
snprintf(buffer, sizeof(buffer), "%s:%s:%s:%02X%02X%02X%02X%02X%02X%02X%02X",
|
||||
remote_addr, server_name, server_port,
|
||||
(unsigned)CUPS_RAND() & 255, (unsigned)CUPS_RAND() & 255,
|
||||
(unsigned)CUPS_RAND() & 255, (unsigned)CUPS_RAND() & 255,
|
||||
(unsigned)CUPS_RAND() & 255, (unsigned)CUPS_RAND() & 255,
|
||||
(unsigned)CUPS_RAND() & 255, (unsigned)CUPS_RAND() & 255);
|
||||
_cupsMD5Init(&md5);
|
||||
_cupsMD5Append(&md5, (unsigned char *)buffer, (int)strlen(buffer));
|
||||
_cupsMD5Finish(&md5, sum);
|
||||
|
||||
cgiSetCookie(CUPS_SID, httpMD5String(sum, sid), "/", NULL, 0, 0);
|
||||
|
||||
return (cupsGetOption(CUPS_SID, num_cookies, cookies));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'cgi_sort_variables()' - Sort all form variables for faster lookup.
|
||||
*/
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# "$Id$"
|
||||
#
|
||||
# Sample SNMP configuration file for CUPS. See "man cups-smnp.conf" for a
|
||||
# Sample SNMP configuration file for CUPS. See "man cups-snmp.conf" for a
|
||||
# complete description of this file.
|
||||
#
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
dnl
|
||||
dnl "$Id: cups-common.m4 8938 2009-12-18 23:52:01Z mike $"
|
||||
dnl "$Id: cups-common.m4 9160 2010-06-16 20:25:12Z mike $"
|
||||
dnl
|
||||
dnl Common configuration stuff for the Common UNIX Printing System (CUPS).
|
||||
dnl Common configuration stuff for CUPS.
|
||||
dnl
|
||||
dnl Copyright 2007-2009 by Apple Inc.
|
||||
dnl Copyright 2007-2010 by Apple Inc.
|
||||
dnl Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
dnl
|
||||
dnl These coded instructions, statements, and computer programs are the
|
||||
@@ -20,7 +20,7 @@ dnl Set the name of the config header file...
|
||||
AC_CONFIG_HEADER(config.h)
|
||||
|
||||
dnl Version number information...
|
||||
CUPS_VERSION="1.4.3"
|
||||
CUPS_VERSION="1.4.4"
|
||||
CUPS_REVISION=""
|
||||
#if test -z "$CUPS_REVISION" -a -d .svn; then
|
||||
# CUPS_REVISION="-r`svnversion . | awk -F: '{print $NF}' | sed -e '1,$s/[[a-zA-Z]]*//g'`"
|
||||
@@ -174,6 +174,14 @@ AC_TRY_COMPILE([#include <time.h>],[struct tm t;
|
||||
AC_DEFINE(HAVE_TM_GMTOFF),
|
||||
AC_MSG_RESULT(no))
|
||||
|
||||
dnl See if the stat structure has the st_gen member...
|
||||
AC_MSG_CHECKING(for st_gen member in stat structure)
|
||||
AC_TRY_COMPILE([#include <sys/stat.h>],[struct stat t;
|
||||
int o = t.st_gen;],
|
||||
AC_MSG_RESULT(yes)
|
||||
AC_DEFINE(HAVE_ST_GEN),
|
||||
AC_MSG_RESULT(no))
|
||||
|
||||
dnl See if we have the removefile(3) function for securely removing files
|
||||
AC_CHECK_FUNCS(removefile)
|
||||
|
||||
@@ -289,13 +297,16 @@ case $uname in
|
||||
LEGACY_BACKENDS=""
|
||||
BACKLIBS="$BACKLIBS -framework IOKit"
|
||||
CUPSDLIBS="$CUPSDLIBS -sectorder __TEXT __text cupsd.order -e start -framework IOKit -framework SystemConfiguration -weak_framework ApplicationServices"
|
||||
LIBS="-framework SystemConfiguration -framework CoreFoundation $LIBS"
|
||||
LIBS="-framework SystemConfiguration -framework CoreFoundation -framework Security $LIBS"
|
||||
|
||||
dnl Check for framework headers...
|
||||
AC_CHECK_HEADER(CoreFoundation/CoreFoundation.h,AC_DEFINE(HAVE_COREFOUNDATION_H))
|
||||
AC_CHECK_HEADER(CoreFoundation/CFPriv.h,AC_DEFINE(HAVE_CFPRIV_H))
|
||||
AC_CHECK_HEADER(CoreFoundation/CFBundlePriv.h,AC_DEFINE(HAVE_CFBUNDLEPRIV_H))
|
||||
|
||||
dnl Check for dynamic store function...
|
||||
AC_CHECK_FUNCS(SCDynamicStoreCopyComputerName)
|
||||
|
||||
dnl Check for the new membership functions in MacOSX 10.4...
|
||||
AC_CHECK_HEADER(membership.h,AC_DEFINE(HAVE_MEMBERSHIP_H))
|
||||
AC_CHECK_HEADER(membershipPriv.h,AC_DEFINE(HAVE_MEMBERSHIPPRIV_H))
|
||||
@@ -351,5 +362,5 @@ AC_SUBST(FONTS)
|
||||
AC_SUBST(LEGACY_BACKENDS)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id: cups-common.m4 8938 2009-12-18 23:52:01Z mike $".
|
||||
dnl End of "$Id: cups-common.m4 9160 2010-06-16 20:25:12Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
dnl
|
||||
dnl "$Id: cups-launchd.m4 8344 2009-02-10 17:05:35Z mike $"
|
||||
dnl "$Id: cups-launchd.m4 9120 2010-04-23 18:56:34Z mike $"
|
||||
dnl
|
||||
dnl launchd stuff for the Common UNIX Printing System (CUPS).
|
||||
dnl launchd stuff for CUPS.
|
||||
dnl
|
||||
dnl Copyright 2007-2009 by Apple Inc.
|
||||
dnl Copyright 2007-2010 by Apple Inc.
|
||||
dnl Copyright 1997-2005 by Easy Software Products, all rights reserved.
|
||||
dnl
|
||||
dnl These coded instructions, statements, and computer programs are the
|
||||
@@ -35,10 +35,9 @@ if test x$enable_launchd != xno; then
|
||||
esac
|
||||
fi
|
||||
|
||||
AC_DEFINE_UNQUOTED(CUPS_DEFAULT_LAUNCHD_CONF, "$DEFAULT_LAUNCHD_CONF")
|
||||
AC_SUBST(DEFAULT_LAUNCHD_CONF)
|
||||
AC_SUBST(LAUNCHDLIBS)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id: cups-launchd.m4 8344 2009-02-10 17:05:35Z mike $".
|
||||
dnl End of "$Id: cups-launchd.m4 9120 2010-04-23 18:56:34Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id: cups-sharedlibs.m4 8344 2009-02-10 17:05:35Z mike $"
|
||||
dnl "$Id: cups-sharedlibs.m4 9154 2010-06-16 00:49:01Z mike $"
|
||||
dnl
|
||||
dnl Shared library support for the Common UNIX Printing System (CUPS).
|
||||
dnl
|
||||
@@ -158,16 +158,31 @@ AC_SUBST(LIBCUPSPPDC)
|
||||
if test x$enable_shared = xno; then
|
||||
LINKCUPS="../cups/libcups.a"
|
||||
LINKCUPSIMAGE="../filter/libcupsimage.a"
|
||||
|
||||
EXTLINKCUPS="-lcups"
|
||||
EXTLINKCUPSDRIVER="-lcupsdriver"
|
||||
EXTLINKCUPSIMAGE="-lcupsimage"
|
||||
else
|
||||
if test $uname = AIX; then
|
||||
LINKCUPS="-lcups_s"
|
||||
LINKCUPSIMAGE="-lcupsimage_s"
|
||||
|
||||
EXTLINKCUPS="-lcups_s"
|
||||
EXTLINKCUPSDRIVER="-lcupsdriver_s"
|
||||
EXTLINKCUPSIMAGE="-lcupsimage_s"
|
||||
else
|
||||
LINKCUPS="-lcups"
|
||||
LINKCUPSIMAGE="-lcupsimage"
|
||||
|
||||
EXTLINKCUPS="-lcups"
|
||||
EXTLINKCUPSDRIVER="-lcupsdriver"
|
||||
EXTLINKCUPSIMAGE="-lcupsimage"
|
||||
fi
|
||||
fi
|
||||
|
||||
AC_SUBST(EXTLINKCUPS)
|
||||
AC_SUBST(EXTLINKCUPSDRIVER)
|
||||
AC_SUBST(EXTLINKCUPSIMAGE)
|
||||
AC_SUBST(LINKCUPS)
|
||||
AC_SUBST(LINKCUPSIMAGE)
|
||||
|
||||
@@ -244,5 +259,5 @@ AC_SUBST(IMGLIBS)
|
||||
AC_SUBST(EXPORT_LDFLAGS)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id: cups-sharedlibs.m4 8344 2009-02-10 17:05:35Z mike $".
|
||||
dnl End of "$Id: cups-sharedlibs.m4 9154 2010-06-16 00:49:01Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
dnl
|
||||
dnl "$Id: cups-ssl.m4 8591 2009-05-04 23:40:10Z mike $"
|
||||
dnl "$Id: cups-ssl.m4 9165 2010-06-17 18:20:39Z mike $"
|
||||
dnl
|
||||
dnl OpenSSL/GNUTLS stuff for the Common UNIX Printing System (CUPS).
|
||||
dnl OpenSSL/GNUTLS stuff for CUPS.
|
||||
dnl
|
||||
dnl Copyright 2007-2009 by Apple Inc.
|
||||
dnl Copyright 2007-2010 by Apple Inc.
|
||||
dnl Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
dnl
|
||||
dnl These coded instructions, statements, and computer programs are the
|
||||
@@ -26,13 +26,14 @@ AC_ARG_WITH(openssl-includes, [ --with-openssl-includes set directory for OpenS
|
||||
|
||||
SSLFLAGS=""
|
||||
SSLLIBS=""
|
||||
have_ssl=0
|
||||
|
||||
if test x$enable_ssl != xno; then
|
||||
dnl Look for CDSA...
|
||||
if test "x${SSLLIBS}" = "x" -a "x${enable_cdsassl}" != "xno"; then
|
||||
if test $have_ssl = 0 -a "x${enable_cdsassl}" != "xno"; then
|
||||
if test $uname = Darwin; then
|
||||
AC_CHECK_HEADER(Security/SecureTransport.h, [
|
||||
SSLLIBS="-framework CoreFoundation -framework Security"
|
||||
have_ssl=1
|
||||
AC_DEFINE(HAVE_SSL)
|
||||
AC_DEFINE(HAVE_CDSASSL)
|
||||
|
||||
@@ -58,18 +59,44 @@ if test x$enable_ssl != xno; then
|
||||
fi
|
||||
|
||||
dnl Then look for GNU TLS...
|
||||
if test "x${SSLLIBS}" = "x" -a "x${enable_gnutls}" != "xno" -a "x$PKGCONFIG" != x; then
|
||||
if test $have_ssl = 0 -a "x${enable_gnutls}" != "xno" -a "x$PKGCONFIG" != x; then
|
||||
AC_PATH_PROG(LIBGNUTLSCONFIG,libgnutls-config)
|
||||
AC_PATH_PROG(LIBGCRYPTCONFIG,libgcrypt-config)
|
||||
if $PKGCONFIG --exists gnutls; then
|
||||
SSLLIBS=`$PKGCONFIG --libs gnutls`
|
||||
SSLFLAGS=`$PKGCONFIG --cflags gnutls`
|
||||
AC_DEFINE(HAVE_SSL)
|
||||
AC_DEFINE(HAVE_GNUTLS)
|
||||
if test "x$have_pthread" = xyes; then
|
||||
AC_MSG_WARN([The current version of GNU TLS cannot be made thread-safe.])
|
||||
else
|
||||
have_ssl=1
|
||||
SSLLIBS=`$PKGCONFIG --libs gnutls`
|
||||
SSLFLAGS=`$PKGCONFIG --cflags gnutls`
|
||||
AC_DEFINE(HAVE_SSL)
|
||||
AC_DEFINE(HAVE_GNUTLS)
|
||||
fi
|
||||
elif test "x$LIBGNUTLSCONFIG" != x; then
|
||||
if test "x$have_pthread" = xyes; then
|
||||
AC_MSG_WARN([The current version of GNU TLS cannot be made thread-safe.])
|
||||
else
|
||||
have_ssl=1
|
||||
SSLLIBS=`$LIBGNUTLSCONFIG --libs`
|
||||
SSLFLAGS=`$LIBGNUTLSCONFIG --cflags`
|
||||
AC_DEFINE(HAVE_SSL)
|
||||
AC_DEFINE(HAVE_GNUTLS)
|
||||
fi
|
||||
fi
|
||||
|
||||
if test $have_ssl = 1; then
|
||||
if $PKGCONFIG --exists gcrypt; then
|
||||
SSLLIBS="$SSLLIBS `$PKGCONFIG --libs gcrypt`"
|
||||
SSLFLAGS="$SSLFLAGS `$PKGCONFIG --cflags gcrypt`"
|
||||
elif test "x$LIBGCRYPTCONFIG" != x; then
|
||||
SSLLIBS="$SSLLIBS `$LIBGCRYPTCONFIG --libs`"
|
||||
SSLFLAGS="$SSLFLAGS `$LIBGCRYPTCONFIG --cflags`"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
dnl Check for the OpenSSL library last...
|
||||
if test "x${SSLLIBS}" = "x" -a "x${enable_openssl}" != "xno"; then
|
||||
if test $have_ssl = 0 -a "x${enable_openssl}" != "xno"; then
|
||||
AC_CHECK_HEADER(openssl/ssl.h,
|
||||
dnl Save the current libraries so the crypto stuff isn't always
|
||||
dnl included...
|
||||
@@ -87,7 +114,8 @@ if test x$enable_ssl != xno; then
|
||||
"-lcrypto -lRSAglue -lrsaref"
|
||||
do
|
||||
AC_CHECK_LIB(ssl,SSL_new,
|
||||
[SSLFLAGS="-DOPENSSL_DISABLE_OLD_DES_SUPPORT"
|
||||
[have_ssl=1
|
||||
SSLFLAGS="-DOPENSSL_DISABLE_OLD_DES_SUPPORT"
|
||||
SSLLIBS="-lssl $libcrypto"
|
||||
AC_DEFINE(HAVE_SSL)
|
||||
AC_DEFINE(HAVE_LIBSSL)],,
|
||||
@@ -102,7 +130,7 @@ if test x$enable_ssl != xno; then
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "x$SSLLIBS" != x; then
|
||||
if test $have_ssl = 1; then
|
||||
AC_MSG_RESULT([ Using SSLLIBS="$SSLLIBS"])
|
||||
AC_MSG_RESULT([ Using SSLFLAGS="$SSLFLAGS"])
|
||||
fi
|
||||
@@ -115,5 +143,5 @@ AC_SUBST(EXPORT_SSLLIBS)
|
||||
|
||||
|
||||
dnl
|
||||
dnl End of "$Id: cups-ssl.m4 8591 2009-05-04 23:40:10Z mike $".
|
||||
dnl End of "$Id: cups-ssl.m4 9165 2010-06-17 18:20:39Z mike $".
|
||||
dnl
|
||||
|
||||
+18
-5
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* Configuration file for the Common UNIX Printing System (CUPS).
|
||||
* Configuration file for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -342,6 +342,13 @@
|
||||
#undef HAVE_SYS_IOCTL_H
|
||||
|
||||
|
||||
/*
|
||||
* Does the "stat" structure contain the "st_gen" member?
|
||||
*/
|
||||
|
||||
#undef HAVE_ST_GEN
|
||||
|
||||
|
||||
/*
|
||||
* Does the "tm" structure contain the "tm_gmtoff" member?
|
||||
*/
|
||||
@@ -432,7 +439,6 @@
|
||||
|
||||
#undef HAVE_LAUNCH_H
|
||||
#undef HAVE_LAUNCHD
|
||||
#define CUPS_DEFAULT_LAUNCHD_CONF ""
|
||||
|
||||
|
||||
/*
|
||||
@@ -483,7 +489,14 @@
|
||||
|
||||
|
||||
/*
|
||||
* Do we have MacOSX 10.4's mbr_XXX functions()?
|
||||
* Do we have the SCDynamicStoreCopyComputerName function?
|
||||
*/
|
||||
|
||||
#undef HAVE_SCDYNAMICSTORECOPYCOMPUTERNAME
|
||||
|
||||
|
||||
/*
|
||||
* Do we have MacOSX 10.4's mbr_XXX functions?
|
||||
*/
|
||||
|
||||
#undef HAVE_MEMBERSHIP_H
|
||||
@@ -492,7 +505,7 @@
|
||||
|
||||
|
||||
/*
|
||||
* Do we have Darwin's notify_post() header and function?
|
||||
* Do we have Darwin's notify_post header and function?
|
||||
*/
|
||||
|
||||
#undef HAVE_NOTIFY_H
|
||||
|
||||
+1
-1
@@ -31,9 +31,9 @@ sinclude(config-scripts/cups-poll.m4)
|
||||
sinclude(config-scripts/cups-slp.m4)
|
||||
sinclude(config-scripts/cups-gssapi.m4)
|
||||
sinclude(config-scripts/cups-ldap.m4)
|
||||
sinclude(config-scripts/cups-threads.m4)
|
||||
sinclude(config-scripts/cups-ssl.m4)
|
||||
sinclude(config-scripts/cups-pam.m4)
|
||||
sinclude(config-scripts/cups-threads.m4)
|
||||
sinclude(config-scripts/cups-largefile.m4)
|
||||
sinclude(config-scripts/cups-dnssd.m4)
|
||||
sinclude(config-scripts/cups-launchd.m4)
|
||||
|
||||
+4
-4
@@ -4,7 +4,7 @@
|
||||
#
|
||||
# CUPS configuration utility.
|
||||
#
|
||||
# Copyright 2007-2008 by Apple Inc.
|
||||
# Copyright 2007-2010 by Apple Inc.
|
||||
# Copyright 2001-2006 by Easy Software Products, all rights reserved.
|
||||
#
|
||||
# These coded instructions, statements, and computer programs are the
|
||||
@@ -113,12 +113,12 @@ while test $# -gt 0; do
|
||||
;;
|
||||
--libs)
|
||||
if test $static = no; then
|
||||
libs="-lcups $LIBS";
|
||||
libs="@EXTLINKCUPS@ $LIBS";
|
||||
if test $image = yes; then
|
||||
libs="-lcupsimage $libs"
|
||||
libs="@EXTLINKCUPSIMAGE@ $libs"
|
||||
fi
|
||||
if test $driver = yes; then
|
||||
libs="-lcupsdriver $libs"
|
||||
libs="@EXTLINKCUPSDRIVER@ $libs"
|
||||
fi
|
||||
else
|
||||
libs="$libdir/libcups.a $LIBS";
|
||||
|
||||
+159
-102
@@ -2,112 +2,131 @@
|
||||
|
||||
adminutil.o: adminutil.h cups.h ipp.h http.h versioning.h ppd.h array.h
|
||||
adminutil.o: file.h language.h globals.h string.h ../config.h http-private.h
|
||||
adminutil.o: md5.h ipp-private.h i18n.h transcode.h debug.h
|
||||
adminutil.o: md5.h ipp-private.h i18n.h transcode.h pwg-private.h
|
||||
adminutil.o: ../cups/cups.h debug.h
|
||||
array.o: array.h versioning.h string.h ../config.h debug.h
|
||||
attr.o: ppd-private.h cups.h ipp.h http.h versioning.h ppd.h array.h file.h
|
||||
attr.o: language.h debug.h string.h ../config.h
|
||||
auth.o: globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
auth.o: md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
auth.o: i18n.h transcode.h debug.h
|
||||
auth.o: i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
backchannel.o: cups.h ipp.h http.h versioning.h ppd.h array.h file.h
|
||||
backchannel.o: language.h
|
||||
backend.o: backend.h versioning.h globals.h string.h ../config.h
|
||||
backend.o: http-private.h http.h md5.h ipp-private.h ipp.h cups.h ppd.h
|
||||
backend.o: array.h file.h language.h i18n.h transcode.h
|
||||
backend.o: array.h file.h language.h i18n.h transcode.h pwg-private.h
|
||||
backend.o: ../cups/cups.h
|
||||
conflicts.o: ppd-private.h cups.h ipp.h http.h versioning.h ppd.h array.h
|
||||
conflicts.o: file.h language.h string.h ../config.h debug.h
|
||||
custom.o: globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
custom.o: md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
custom.o: i18n.h transcode.h debug.h
|
||||
custom.o: i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
debug.o: globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
debug.o: md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
debug.o: i18n.h transcode.h debug.h
|
||||
debug.o: i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
dest.o: debug.h globals.h string.h ../config.h http-private.h http.h
|
||||
dest.o: versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h
|
||||
dest.o: language.h i18n.h transcode.h pwgmedia.h
|
||||
dest.o: language.h i18n.h transcode.h pwg-private.h ../cups/cups.h
|
||||
dir.o: dir.h versioning.h string.h ../config.h debug.h
|
||||
emit.o: ppd.h array.h versioning.h file.h string.h ../config.h debug.h
|
||||
encode.o: cups.h ipp.h http.h versioning.h ppd.h array.h file.h language.h
|
||||
encode.o: ipp-private.h string.h ../config.h debug.h
|
||||
file.o: file-private.h http-private.h ../config.h http.h versioning.h md5.h
|
||||
file.o: ipp-private.h ipp.h globals.h string.h cups.h ppd.h array.h file.h
|
||||
file.o: language.h i18n.h transcode.h debug.h
|
||||
file.o: language.h i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
getdevices.o: globals.h string.h ../config.h http-private.h http.h
|
||||
getdevices.o: versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
getdevices.o: file.h language.h i18n.h transcode.h debug.h
|
||||
getdevices.o: file.h language.h i18n.h transcode.h pwg-private.h
|
||||
getdevices.o: ../cups/cups.h debug.h
|
||||
getifaddrs.o: http-private.h ../config.h http.h versioning.h md5.h
|
||||
getifaddrs.o: ipp-private.h ipp.h
|
||||
getputfile.o: globals.h string.h ../config.h http-private.h http.h
|
||||
getputfile.o: versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
getputfile.o: file.h language.h i18n.h transcode.h debug.h
|
||||
getputfile.o: file.h language.h i18n.h transcode.h pwg-private.h
|
||||
getputfile.o: ../cups/cups.h debug.h
|
||||
globals.o: http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
globals.o: ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h
|
||||
globals.o: i18n.h transcode.h
|
||||
globals.o: i18n.h transcode.h pwg-private.h ../cups/cups.h
|
||||
http.o: http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
http.o: ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h
|
||||
http.o: i18n.h transcode.h debug.h
|
||||
http.o: i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
http-addr.o: http-private.h ../config.h http.h versioning.h md5.h
|
||||
http-addr.o: ipp-private.h ipp.h globals.h string.h cups.h ppd.h array.h
|
||||
http-addr.o: file.h language.h i18n.h transcode.h debug.h
|
||||
http-addr.o: file.h language.h i18n.h transcode.h pwg-private.h
|
||||
http-addr.o: ../cups/cups.h debug.h
|
||||
http-addrlist.o: http-private.h ../config.h http.h versioning.h md5.h
|
||||
http-addrlist.o: ipp-private.h ipp.h globals.h string.h cups.h ppd.h array.h
|
||||
http-addrlist.o: file.h language.h i18n.h transcode.h debug.h
|
||||
http-addrlist.o: file.h language.h i18n.h transcode.h pwg-private.h
|
||||
http-addrlist.o: ../cups/cups.h debug.h
|
||||
http-support.o: debug.h globals.h string.h ../config.h http-private.h http.h
|
||||
http-support.o: versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
http-support.o: file.h language.h i18n.h transcode.h
|
||||
http-support.o: file.h language.h i18n.h transcode.h pwg-private.h
|
||||
http-support.o: ../cups/cups.h
|
||||
ipp.o: http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
ipp.o: ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h i18n.h
|
||||
ipp.o: transcode.h debug.h
|
||||
ipp.o: transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
ipp-support.o: globals.h string.h ../config.h http-private.h http.h
|
||||
ipp-support.o: versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
ipp-support.o: file.h language.h i18n.h transcode.h debug.h
|
||||
ipp-support.o: file.h language.h i18n.h transcode.h pwg-private.h
|
||||
ipp-support.o: ../cups/cups.h debug.h
|
||||
langprintf.o: globals.h string.h ../config.h http-private.h http.h
|
||||
langprintf.o: versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
langprintf.o: file.h language.h i18n.h transcode.h
|
||||
langprintf.o: file.h language.h i18n.h transcode.h pwg-private.h
|
||||
langprintf.o: ../cups/cups.h
|
||||
language.o: globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
language.o: md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
language.o: i18n.h transcode.h debug.h
|
||||
language.o: i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
localize.o: globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
localize.o: md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
localize.o: i18n.h transcode.h ppd-private.h debug.h
|
||||
localize.o: i18n.h transcode.h pwg-private.h ../cups/cups.h ppd-private.h
|
||||
localize.o: debug.h
|
||||
mark.o: cups.h ipp.h http.h versioning.h ppd.h array.h file.h language.h
|
||||
mark.o: string.h ../config.h debug.h pwgmedia.h
|
||||
mark.o: string.h ../config.h debug.h pwg-private.h ../cups/cups.h
|
||||
md5.o: md5.h string.h ../config.h
|
||||
md5passwd.o: http-private.h ../config.h http.h versioning.h md5.h
|
||||
md5passwd.o: ipp-private.h ipp.h string.h
|
||||
notify.o: globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
notify.o: md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
notify.o: i18n.h transcode.h
|
||||
notify.o: i18n.h transcode.h pwg-private.h ../cups/cups.h
|
||||
options.o: cups.h ipp.h http.h versioning.h ppd.h array.h file.h language.h
|
||||
options.o: string.h ../config.h debug.h
|
||||
page.o: ppd.h array.h versioning.h file.h string.h ../config.h debug.h
|
||||
ppd.o: ppd-private.h cups.h ipp.h http.h versioning.h ppd.h array.h file.h
|
||||
ppd.o: language.h globals.h string.h ../config.h http-private.h md5.h
|
||||
ppd.o: ipp-private.h i18n.h transcode.h debug.h
|
||||
pwgmedia.o: pwgmedia.h globals.h string.h ../config.h http-private.h http.h
|
||||
pwgmedia.o: versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
pwgmedia.o: file.h language.h i18n.h transcode.h debug.h
|
||||
ppd.o: language.h pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
ppd.o: http-private.h md5.h ipp-private.h i18n.h transcode.h debug.h
|
||||
pwg-file.o: pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
pwg-file.o: http-private.h http.h versioning.h md5.h ipp-private.h ipp.h
|
||||
pwg-file.o: cups.h ppd.h array.h file.h language.h i18n.h transcode.h debug.h
|
||||
pwg-media.o: pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
pwg-media.o: http-private.h http.h versioning.h md5.h ipp-private.h ipp.h
|
||||
pwg-media.o: cups.h ppd.h array.h file.h language.h i18n.h transcode.h
|
||||
pwg-media.o: debug.h
|
||||
pwg-ppd.o: pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
pwg-ppd.o: http-private.h http.h versioning.h md5.h ipp-private.h ipp.h
|
||||
pwg-ppd.o: cups.h ppd.h array.h file.h language.h i18n.h transcode.h debug.h
|
||||
request.o: globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
request.o: md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
request.o: i18n.h transcode.h debug.h
|
||||
request.o: i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
sidechannel.o: sidechannel.h versioning.h string.h ../config.h debug.h
|
||||
snmp.o: globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
snmp.o: md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
snmp.o: i18n.h transcode.h debug.h snmp-private.h
|
||||
snmp.o: i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
snmp.o: snmp-private.h
|
||||
snprintf.o: string.h ../config.h
|
||||
string.o: array.h versioning.h debug.h string.h ../config.h
|
||||
tempfile.o: globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
tempfile.o: md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
tempfile.o: i18n.h transcode.h debug.h
|
||||
tempfile.o: i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
transcode.o: globals.h string.h ../config.h http-private.h http.h
|
||||
transcode.o: versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
transcode.o: file.h language.h i18n.h transcode.h debug.h
|
||||
transcode.o: file.h language.h i18n.h transcode.h pwg-private.h
|
||||
transcode.o: ../cups/cups.h debug.h
|
||||
usersys.o: http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
usersys.o: ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h
|
||||
usersys.o: i18n.h transcode.h debug.h
|
||||
usersys.o: i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
util.o: globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
util.o: md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
util.o: i18n.h transcode.h debug.h
|
||||
util.o: i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
testadmin.o: adminutil.h cups.h ipp.h http.h versioning.h ppd.h array.h
|
||||
testadmin.o: file.h language.h string.h ../config.h
|
||||
testarray.o: ../cups/string.h ../config.h string.h array.h versioning.h dir.h
|
||||
@@ -127,119 +146,138 @@ testoptions.o: string.h ../config.h cups.h ipp.h http.h versioning.h ppd.h
|
||||
testoptions.o: array.h file.h language.h
|
||||
testlang.o: i18n.h transcode.h language.h array.h versioning.h string.h
|
||||
testlang.o: ../config.h
|
||||
testppd.o: ../cups/string.h ../config.h string.h cups.h ipp.h http.h
|
||||
testppd.o: versioning.h ppd.h array.h file.h language.h pwgmedia.h
|
||||
testppd.o: ../cups/cups.h ../cups/string.h ../config.h string.h
|
||||
testpwg.o: pwg-private.h ../cups/cups.h
|
||||
testsnmp.o: string.h ../config.h snmp-private.h http.h versioning.h
|
||||
# DO NOT DELETE
|
||||
|
||||
adminutil.32.o: adminutil.c adminutil.h cups.h ipp.h http.h versioning.h ppd.h array.h
|
||||
adminutil.32.o: adminutil.c file.h language.h globals.h string.h ../config.h http-private.h
|
||||
adminutil.32.o: adminutil.c md5.h ipp-private.h i18n.h transcode.h debug.h
|
||||
adminutil.32.o: adminutil.c md5.h ipp-private.h i18n.h transcode.h pwg-private.h
|
||||
adminutil.32.o: adminutil.c ../cups/cups.h debug.h
|
||||
array.32.o: array.c array.h versioning.h string.h ../config.h debug.h
|
||||
attr.32.o: attr.c ppd-private.h cups.h ipp.h http.h versioning.h ppd.h array.h file.h
|
||||
attr.32.o: attr.c language.h debug.h string.h ../config.h
|
||||
auth.32.o: auth.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
auth.32.o: auth.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
auth.32.o: auth.c i18n.h transcode.h debug.h
|
||||
auth.32.o: auth.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
backchannel.32.o: backchannel.c cups.h ipp.h http.h versioning.h ppd.h array.h file.h
|
||||
backchannel.32.o: backchannel.c language.h
|
||||
backend.32.o: backend.c backend.h versioning.h globals.h string.h ../config.h
|
||||
backend.32.o: backend.c http-private.h http.h md5.h ipp-private.h ipp.h cups.h ppd.h
|
||||
backend.32.o: backend.c array.h file.h language.h i18n.h transcode.h
|
||||
backend.32.o: backend.c array.h file.h language.h i18n.h transcode.h pwg-private.h
|
||||
backend.32.o: backend.c ../cups/cups.h
|
||||
conflicts.32.o: conflicts.c ppd-private.h cups.h ipp.h http.h versioning.h ppd.h array.h
|
||||
conflicts.32.o: conflicts.c file.h language.h string.h ../config.h debug.h
|
||||
custom.32.o: custom.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
custom.32.o: custom.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
custom.32.o: custom.c i18n.h transcode.h debug.h
|
||||
custom.32.o: custom.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
debug.32.o: debug.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
debug.32.o: debug.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
debug.32.o: debug.c i18n.h transcode.h debug.h
|
||||
debug.32.o: debug.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
dest.32.o: dest.c debug.h globals.h string.h ../config.h http-private.h http.h
|
||||
dest.32.o: dest.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h
|
||||
dest.32.o: dest.c language.h i18n.h transcode.h pwgmedia.h
|
||||
dest.32.o: dest.c language.h i18n.h transcode.h pwg-private.h ../cups/cups.h
|
||||
dir.32.o: dir.c dir.h versioning.h string.h ../config.h debug.h
|
||||
emit.32.o: emit.c ppd.h array.h versioning.h file.h string.h ../config.h debug.h
|
||||
encode.32.o: encode.c cups.h ipp.h http.h versioning.h ppd.h array.h file.h language.h
|
||||
encode.32.o: encode.c ipp-private.h string.h ../config.h debug.h
|
||||
file.32.o: file.c file-private.h http-private.h ../config.h http.h versioning.h md5.h
|
||||
file.32.o: file.c ipp-private.h ipp.h globals.h string.h cups.h ppd.h array.h file.h
|
||||
file.32.o: file.c language.h i18n.h transcode.h debug.h
|
||||
file.32.o: file.c language.h i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
getdevices.32.o: getdevices.c globals.h string.h ../config.h http-private.h http.h
|
||||
getdevices.32.o: getdevices.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
getdevices.32.o: getdevices.c file.h language.h i18n.h transcode.h debug.h
|
||||
getdevices.32.o: getdevices.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
getdevices.32.o: getdevices.c ../cups/cups.h debug.h
|
||||
getifaddrs.32.o: getifaddrs.c http-private.h ../config.h http.h versioning.h md5.h
|
||||
getifaddrs.32.o: getifaddrs.c ipp-private.h ipp.h
|
||||
getputfile.32.o: getputfile.c globals.h string.h ../config.h http-private.h http.h
|
||||
getputfile.32.o: getputfile.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
getputfile.32.o: getputfile.c file.h language.h i18n.h transcode.h debug.h
|
||||
getputfile.32.o: getputfile.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
getputfile.32.o: getputfile.c ../cups/cups.h debug.h
|
||||
globals.32.o: globals.c http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
globals.32.o: globals.c ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h
|
||||
globals.32.o: globals.c i18n.h transcode.h
|
||||
globals.32.o: globals.c i18n.h transcode.h pwg-private.h ../cups/cups.h
|
||||
http.32.o: http.c http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
http.32.o: http.c ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h
|
||||
http.32.o: http.c i18n.h transcode.h debug.h
|
||||
http.32.o: http.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
http-addr.32.o: http-addr.c http-private.h ../config.h http.h versioning.h md5.h
|
||||
http-addr.32.o: http-addr.c ipp-private.h ipp.h globals.h string.h cups.h ppd.h array.h
|
||||
http-addr.32.o: http-addr.c file.h language.h i18n.h transcode.h debug.h
|
||||
http-addr.32.o: http-addr.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
http-addr.32.o: http-addr.c ../cups/cups.h debug.h
|
||||
http-addrlist.32.o: http-addrlist.c http-private.h ../config.h http.h versioning.h md5.h
|
||||
http-addrlist.32.o: http-addrlist.c ipp-private.h ipp.h globals.h string.h cups.h ppd.h array.h
|
||||
http-addrlist.32.o: http-addrlist.c file.h language.h i18n.h transcode.h debug.h
|
||||
http-addrlist.32.o: http-addrlist.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
http-addrlist.32.o: http-addrlist.c ../cups/cups.h debug.h
|
||||
http-support.32.o: http-support.c debug.h globals.h string.h ../config.h http-private.h http.h
|
||||
http-support.32.o: http-support.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
http-support.32.o: http-support.c file.h language.h i18n.h transcode.h
|
||||
http-support.32.o: http-support.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
http-support.32.o: http-support.c ../cups/cups.h
|
||||
ipp.32.o: ipp.c http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
ipp.32.o: ipp.c ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h i18n.h
|
||||
ipp.32.o: ipp.c transcode.h debug.h
|
||||
ipp.32.o: ipp.c transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
ipp-support.32.o: ipp-support.c globals.h string.h ../config.h http-private.h http.h
|
||||
ipp-support.32.o: ipp-support.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
ipp-support.32.o: ipp-support.c file.h language.h i18n.h transcode.h debug.h
|
||||
ipp-support.32.o: ipp-support.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
ipp-support.32.o: ipp-support.c ../cups/cups.h debug.h
|
||||
langprintf.32.o: langprintf.c globals.h string.h ../config.h http-private.h http.h
|
||||
langprintf.32.o: langprintf.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
langprintf.32.o: langprintf.c file.h language.h i18n.h transcode.h
|
||||
langprintf.32.o: langprintf.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
langprintf.32.o: langprintf.c ../cups/cups.h
|
||||
language.32.o: language.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
language.32.o: language.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
language.32.o: language.c i18n.h transcode.h debug.h
|
||||
language.32.o: language.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
localize.32.o: localize.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
localize.32.o: localize.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
localize.32.o: localize.c i18n.h transcode.h ppd-private.h debug.h
|
||||
localize.32.o: localize.c i18n.h transcode.h pwg-private.h ../cups/cups.h ppd-private.h
|
||||
localize.32.o: localize.c debug.h
|
||||
mark.32.o: mark.c cups.h ipp.h http.h versioning.h ppd.h array.h file.h language.h
|
||||
mark.32.o: mark.c string.h ../config.h debug.h pwgmedia.h
|
||||
mark.32.o: mark.c string.h ../config.h debug.h pwg-private.h ../cups/cups.h
|
||||
md5.32.o: md5.c md5.h string.h ../config.h
|
||||
md5passwd.32.o: md5passwd.c http-private.h ../config.h http.h versioning.h md5.h
|
||||
md5passwd.32.o: md5passwd.c ipp-private.h ipp.h string.h
|
||||
notify.32.o: notify.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
notify.32.o: notify.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
notify.32.o: notify.c i18n.h transcode.h
|
||||
notify.32.o: notify.c i18n.h transcode.h pwg-private.h ../cups/cups.h
|
||||
options.32.o: options.c cups.h ipp.h http.h versioning.h ppd.h array.h file.h language.h
|
||||
options.32.o: options.c string.h ../config.h debug.h
|
||||
page.32.o: page.c ppd.h array.h versioning.h file.h string.h ../config.h debug.h
|
||||
ppd.32.o: ppd.c ppd-private.h cups.h ipp.h http.h versioning.h ppd.h array.h file.h
|
||||
ppd.32.o: ppd.c language.h globals.h string.h ../config.h http-private.h md5.h
|
||||
ppd.32.o: ppd.c ipp-private.h i18n.h transcode.h debug.h
|
||||
pwgmedia.32.o: pwgmedia.c pwgmedia.h globals.h string.h ../config.h http-private.h http.h
|
||||
pwgmedia.32.o: pwgmedia.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
pwgmedia.32.o: pwgmedia.c file.h language.h i18n.h transcode.h debug.h
|
||||
ppd.32.o: ppd.c language.h pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
ppd.32.o: ppd.c http-private.h md5.h ipp-private.h i18n.h transcode.h debug.h
|
||||
pwg-file.32.o: pwg-file.c pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
pwg-file.32.o: pwg-file.c http-private.h http.h versioning.h md5.h ipp-private.h ipp.h
|
||||
pwg-file.32.o: pwg-file.c cups.h ppd.h array.h file.h language.h i18n.h transcode.h debug.h
|
||||
pwg-media.32.o: pwg-media.c pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
pwg-media.32.o: pwg-media.c http-private.h http.h versioning.h md5.h ipp-private.h ipp.h
|
||||
pwg-media.32.o: pwg-media.c cups.h ppd.h array.h file.h language.h i18n.h transcode.h
|
||||
pwg-media.32.o: pwg-media.c debug.h
|
||||
pwg-ppd.32.o: pwg-ppd.c pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
pwg-ppd.32.o: pwg-ppd.c http-private.h http.h versioning.h md5.h ipp-private.h ipp.h
|
||||
pwg-ppd.32.o: pwg-ppd.c cups.h ppd.h array.h file.h language.h i18n.h transcode.h debug.h
|
||||
request.32.o: request.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
request.32.o: request.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
request.32.o: request.c i18n.h transcode.h debug.h
|
||||
request.32.o: request.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
sidechannel.32.o: sidechannel.c sidechannel.h versioning.h string.h ../config.h debug.h
|
||||
snmp.32.o: snmp.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
snmp.32.o: snmp.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
snmp.32.o: snmp.c i18n.h transcode.h debug.h snmp-private.h
|
||||
snmp.32.o: snmp.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
snmp.32.o: snmp.c snmp-private.h
|
||||
snprintf.32.o: snprintf.c string.h ../config.h
|
||||
string.32.o: string.c array.h versioning.h debug.h string.h ../config.h
|
||||
tempfile.32.o: tempfile.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
tempfile.32.o: tempfile.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
tempfile.32.o: tempfile.c i18n.h transcode.h debug.h
|
||||
tempfile.32.o: tempfile.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
transcode.32.o: transcode.c globals.h string.h ../config.h http-private.h http.h
|
||||
transcode.32.o: transcode.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
transcode.32.o: transcode.c file.h language.h i18n.h transcode.h debug.h
|
||||
transcode.32.o: transcode.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
transcode.32.o: transcode.c ../cups/cups.h debug.h
|
||||
usersys.32.o: usersys.c http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
usersys.32.o: usersys.c ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h
|
||||
usersys.32.o: usersys.c i18n.h transcode.h debug.h
|
||||
usersys.32.o: usersys.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
util.32.o: util.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
util.32.o: util.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
util.32.o: util.c i18n.h transcode.h debug.h
|
||||
util.32.o: util.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
testadmin.32.o: testadmin.c adminutil.h cups.h ipp.h http.h versioning.h ppd.h array.h
|
||||
testadmin.32.o: testadmin.c file.h language.h string.h ../config.h
|
||||
testarray.32.o: testarray.c ../cups/string.h ../config.h string.h array.h versioning.h dir.h
|
||||
@@ -259,119 +297,138 @@ testoptions.32.o: testoptions.c string.h ../config.h cups.h ipp.h http.h versio
|
||||
testoptions.32.o: testoptions.c array.h file.h language.h
|
||||
testlang.32.o: testlang.c i18n.h transcode.h language.h array.h versioning.h string.h
|
||||
testlang.32.o: testlang.c ../config.h
|
||||
testppd.32.o: testppd.c ../cups/string.h ../config.h string.h cups.h ipp.h http.h
|
||||
testppd.32.o: testppd.c versioning.h ppd.h array.h file.h language.h pwgmedia.h
|
||||
testppd.32.o: testppd.c ../cups/cups.h ../cups/string.h ../config.h string.h
|
||||
testpwg.32.o: testpwg.c pwg-private.h ../cups/cups.h
|
||||
testsnmp.32.o: testsnmp.c string.h ../config.h snmp-private.h http.h versioning.h
|
||||
# DO NOT DELETE
|
||||
|
||||
adminutil.64.o: adminutil.c adminutil.h cups.h ipp.h http.h versioning.h ppd.h array.h
|
||||
adminutil.64.o: adminutil.c file.h language.h globals.h string.h ../config.h http-private.h
|
||||
adminutil.64.o: adminutil.c md5.h ipp-private.h i18n.h transcode.h debug.h
|
||||
adminutil.64.o: adminutil.c md5.h ipp-private.h i18n.h transcode.h pwg-private.h
|
||||
adminutil.64.o: adminutil.c ../cups/cups.h debug.h
|
||||
array.64.o: array.c array.h versioning.h string.h ../config.h debug.h
|
||||
attr.64.o: attr.c ppd-private.h cups.h ipp.h http.h versioning.h ppd.h array.h file.h
|
||||
attr.64.o: attr.c language.h debug.h string.h ../config.h
|
||||
auth.64.o: auth.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
auth.64.o: auth.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
auth.64.o: auth.c i18n.h transcode.h debug.h
|
||||
auth.64.o: auth.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
backchannel.64.o: backchannel.c cups.h ipp.h http.h versioning.h ppd.h array.h file.h
|
||||
backchannel.64.o: backchannel.c language.h
|
||||
backend.64.o: backend.c backend.h versioning.h globals.h string.h ../config.h
|
||||
backend.64.o: backend.c http-private.h http.h md5.h ipp-private.h ipp.h cups.h ppd.h
|
||||
backend.64.o: backend.c array.h file.h language.h i18n.h transcode.h
|
||||
backend.64.o: backend.c array.h file.h language.h i18n.h transcode.h pwg-private.h
|
||||
backend.64.o: backend.c ../cups/cups.h
|
||||
conflicts.64.o: conflicts.c ppd-private.h cups.h ipp.h http.h versioning.h ppd.h array.h
|
||||
conflicts.64.o: conflicts.c file.h language.h string.h ../config.h debug.h
|
||||
custom.64.o: custom.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
custom.64.o: custom.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
custom.64.o: custom.c i18n.h transcode.h debug.h
|
||||
custom.64.o: custom.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
debug.64.o: debug.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
debug.64.o: debug.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
debug.64.o: debug.c i18n.h transcode.h debug.h
|
||||
debug.64.o: debug.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
dest.64.o: dest.c debug.h globals.h string.h ../config.h http-private.h http.h
|
||||
dest.64.o: dest.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h
|
||||
dest.64.o: dest.c language.h i18n.h transcode.h pwgmedia.h
|
||||
dest.64.o: dest.c language.h i18n.h transcode.h pwg-private.h ../cups/cups.h
|
||||
dir.64.o: dir.c dir.h versioning.h string.h ../config.h debug.h
|
||||
emit.64.o: emit.c ppd.h array.h versioning.h file.h string.h ../config.h debug.h
|
||||
encode.64.o: encode.c cups.h ipp.h http.h versioning.h ppd.h array.h file.h language.h
|
||||
encode.64.o: encode.c ipp-private.h string.h ../config.h debug.h
|
||||
file.64.o: file.c file-private.h http-private.h ../config.h http.h versioning.h md5.h
|
||||
file.64.o: file.c ipp-private.h ipp.h globals.h string.h cups.h ppd.h array.h file.h
|
||||
file.64.o: file.c language.h i18n.h transcode.h debug.h
|
||||
file.64.o: file.c language.h i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
getdevices.64.o: getdevices.c globals.h string.h ../config.h http-private.h http.h
|
||||
getdevices.64.o: getdevices.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
getdevices.64.o: getdevices.c file.h language.h i18n.h transcode.h debug.h
|
||||
getdevices.64.o: getdevices.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
getdevices.64.o: getdevices.c ../cups/cups.h debug.h
|
||||
getifaddrs.64.o: getifaddrs.c http-private.h ../config.h http.h versioning.h md5.h
|
||||
getifaddrs.64.o: getifaddrs.c ipp-private.h ipp.h
|
||||
getputfile.64.o: getputfile.c globals.h string.h ../config.h http-private.h http.h
|
||||
getputfile.64.o: getputfile.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
getputfile.64.o: getputfile.c file.h language.h i18n.h transcode.h debug.h
|
||||
getputfile.64.o: getputfile.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
getputfile.64.o: getputfile.c ../cups/cups.h debug.h
|
||||
globals.64.o: globals.c http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
globals.64.o: globals.c ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h
|
||||
globals.64.o: globals.c i18n.h transcode.h
|
||||
globals.64.o: globals.c i18n.h transcode.h pwg-private.h ../cups/cups.h
|
||||
http.64.o: http.c http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
http.64.o: http.c ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h
|
||||
http.64.o: http.c i18n.h transcode.h debug.h
|
||||
http.64.o: http.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
http-addr.64.o: http-addr.c http-private.h ../config.h http.h versioning.h md5.h
|
||||
http-addr.64.o: http-addr.c ipp-private.h ipp.h globals.h string.h cups.h ppd.h array.h
|
||||
http-addr.64.o: http-addr.c file.h language.h i18n.h transcode.h debug.h
|
||||
http-addr.64.o: http-addr.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
http-addr.64.o: http-addr.c ../cups/cups.h debug.h
|
||||
http-addrlist.64.o: http-addrlist.c http-private.h ../config.h http.h versioning.h md5.h
|
||||
http-addrlist.64.o: http-addrlist.c ipp-private.h ipp.h globals.h string.h cups.h ppd.h array.h
|
||||
http-addrlist.64.o: http-addrlist.c file.h language.h i18n.h transcode.h debug.h
|
||||
http-addrlist.64.o: http-addrlist.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
http-addrlist.64.o: http-addrlist.c ../cups/cups.h debug.h
|
||||
http-support.64.o: http-support.c debug.h globals.h string.h ../config.h http-private.h http.h
|
||||
http-support.64.o: http-support.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
http-support.64.o: http-support.c file.h language.h i18n.h transcode.h
|
||||
http-support.64.o: http-support.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
http-support.64.o: http-support.c ../cups/cups.h
|
||||
ipp.64.o: ipp.c http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
ipp.64.o: ipp.c ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h i18n.h
|
||||
ipp.64.o: ipp.c transcode.h debug.h
|
||||
ipp.64.o: ipp.c transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
ipp-support.64.o: ipp-support.c globals.h string.h ../config.h http-private.h http.h
|
||||
ipp-support.64.o: ipp-support.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
ipp-support.64.o: ipp-support.c file.h language.h i18n.h transcode.h debug.h
|
||||
ipp-support.64.o: ipp-support.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
ipp-support.64.o: ipp-support.c ../cups/cups.h debug.h
|
||||
langprintf.64.o: langprintf.c globals.h string.h ../config.h http-private.h http.h
|
||||
langprintf.64.o: langprintf.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
langprintf.64.o: langprintf.c file.h language.h i18n.h transcode.h
|
||||
langprintf.64.o: langprintf.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
langprintf.64.o: langprintf.c ../cups/cups.h
|
||||
language.64.o: language.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
language.64.o: language.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
language.64.o: language.c i18n.h transcode.h debug.h
|
||||
language.64.o: language.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
localize.64.o: localize.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
localize.64.o: localize.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
localize.64.o: localize.c i18n.h transcode.h ppd-private.h debug.h
|
||||
localize.64.o: localize.c i18n.h transcode.h pwg-private.h ../cups/cups.h ppd-private.h
|
||||
localize.64.o: localize.c debug.h
|
||||
mark.64.o: mark.c cups.h ipp.h http.h versioning.h ppd.h array.h file.h language.h
|
||||
mark.64.o: mark.c string.h ../config.h debug.h pwgmedia.h
|
||||
mark.64.o: mark.c string.h ../config.h debug.h pwg-private.h ../cups/cups.h
|
||||
md5.64.o: md5.c md5.h string.h ../config.h
|
||||
md5passwd.64.o: md5passwd.c http-private.h ../config.h http.h versioning.h md5.h
|
||||
md5passwd.64.o: md5passwd.c ipp-private.h ipp.h string.h
|
||||
notify.64.o: notify.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
notify.64.o: notify.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
notify.64.o: notify.c i18n.h transcode.h
|
||||
notify.64.o: notify.c i18n.h transcode.h pwg-private.h ../cups/cups.h
|
||||
options.64.o: options.c cups.h ipp.h http.h versioning.h ppd.h array.h file.h language.h
|
||||
options.64.o: options.c string.h ../config.h debug.h
|
||||
page.64.o: page.c ppd.h array.h versioning.h file.h string.h ../config.h debug.h
|
||||
ppd.64.o: ppd.c ppd-private.h cups.h ipp.h http.h versioning.h ppd.h array.h file.h
|
||||
ppd.64.o: ppd.c language.h globals.h string.h ../config.h http-private.h md5.h
|
||||
ppd.64.o: ppd.c ipp-private.h i18n.h transcode.h debug.h
|
||||
pwgmedia.64.o: pwgmedia.c pwgmedia.h globals.h string.h ../config.h http-private.h http.h
|
||||
pwgmedia.64.o: pwgmedia.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
pwgmedia.64.o: pwgmedia.c file.h language.h i18n.h transcode.h debug.h
|
||||
ppd.64.o: ppd.c language.h pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
ppd.64.o: ppd.c http-private.h md5.h ipp-private.h i18n.h transcode.h debug.h
|
||||
pwg-file.64.o: pwg-file.c pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
pwg-file.64.o: pwg-file.c http-private.h http.h versioning.h md5.h ipp-private.h ipp.h
|
||||
pwg-file.64.o: pwg-file.c cups.h ppd.h array.h file.h language.h i18n.h transcode.h debug.h
|
||||
pwg-media.64.o: pwg-media.c pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
pwg-media.64.o: pwg-media.c http-private.h http.h versioning.h md5.h ipp-private.h ipp.h
|
||||
pwg-media.64.o: pwg-media.c cups.h ppd.h array.h file.h language.h i18n.h transcode.h
|
||||
pwg-media.64.o: pwg-media.c debug.h
|
||||
pwg-ppd.64.o: pwg-ppd.c pwg-private.h ../cups/cups.h globals.h string.h ../config.h
|
||||
pwg-ppd.64.o: pwg-ppd.c http-private.h http.h versioning.h md5.h ipp-private.h ipp.h
|
||||
pwg-ppd.64.o: pwg-ppd.c cups.h ppd.h array.h file.h language.h i18n.h transcode.h debug.h
|
||||
request.64.o: request.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
request.64.o: request.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
request.64.o: request.c i18n.h transcode.h debug.h
|
||||
request.64.o: request.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
sidechannel.64.o: sidechannel.c sidechannel.h versioning.h string.h ../config.h debug.h
|
||||
snmp.64.o: snmp.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
snmp.64.o: snmp.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
snmp.64.o: snmp.c i18n.h transcode.h debug.h snmp-private.h
|
||||
snmp.64.o: snmp.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
snmp.64.o: snmp.c snmp-private.h
|
||||
snprintf.64.o: snprintf.c string.h ../config.h
|
||||
string.64.o: string.c array.h versioning.h debug.h string.h ../config.h
|
||||
tempfile.64.o: tempfile.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
tempfile.64.o: tempfile.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
tempfile.64.o: tempfile.c i18n.h transcode.h debug.h
|
||||
tempfile.64.o: tempfile.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
transcode.64.o: transcode.c globals.h string.h ../config.h http-private.h http.h
|
||||
transcode.64.o: transcode.c versioning.h md5.h ipp-private.h ipp.h cups.h ppd.h array.h
|
||||
transcode.64.o: transcode.c file.h language.h i18n.h transcode.h debug.h
|
||||
transcode.64.o: transcode.c file.h language.h i18n.h transcode.h pwg-private.h
|
||||
transcode.64.o: transcode.c ../cups/cups.h debug.h
|
||||
usersys.64.o: usersys.c http-private.h ../config.h http.h versioning.h md5.h ipp-private.h
|
||||
usersys.64.o: usersys.c ipp.h globals.h string.h cups.h ppd.h array.h file.h language.h
|
||||
usersys.64.o: usersys.c i18n.h transcode.h debug.h
|
||||
usersys.64.o: usersys.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
util.64.o: util.c globals.h string.h ../config.h http-private.h http.h versioning.h
|
||||
util.64.o: util.c md5.h ipp-private.h ipp.h cups.h ppd.h array.h file.h language.h
|
||||
util.64.o: util.c i18n.h transcode.h debug.h
|
||||
util.64.o: util.c i18n.h transcode.h pwg-private.h ../cups/cups.h debug.h
|
||||
testadmin.64.o: testadmin.c adminutil.h cups.h ipp.h http.h versioning.h ppd.h array.h
|
||||
testadmin.64.o: testadmin.c file.h language.h string.h ../config.h
|
||||
testarray.64.o: testarray.c ../cups/string.h ../config.h string.h array.h versioning.h dir.h
|
||||
@@ -391,6 +448,6 @@ testoptions.64.o: testoptions.c string.h ../config.h cups.h ipp.h http.h versio
|
||||
testoptions.64.o: testoptions.c array.h file.h language.h
|
||||
testlang.64.o: testlang.c i18n.h transcode.h language.h array.h versioning.h string.h
|
||||
testlang.64.o: testlang.c ../config.h
|
||||
testppd.64.o: testppd.c ../cups/string.h ../config.h string.h cups.h ipp.h http.h
|
||||
testppd.64.o: testppd.c versioning.h ppd.h array.h file.h language.h pwgmedia.h
|
||||
testppd.64.o: testppd.c ../cups/cups.h ../cups/string.h ../config.h string.h
|
||||
testpwg.64.o: testpwg.c pwg-private.h ../cups/cups.h
|
||||
testsnmp.64.o: testsnmp.c string.h ../config.h snmp-private.h http.h versioning.h
|
||||
|
||||
+20
-29
@@ -1,9 +1,9 @@
|
||||
#
|
||||
# "$Id$"
|
||||
#
|
||||
# API library Makefile for the Common UNIX Printing System (CUPS).
|
||||
# API library Makefile for CUPS.
|
||||
#
|
||||
# Copyright 2007-2009 by Apple Inc.
|
||||
# Copyright 2007-2010 by Apple Inc.
|
||||
# Copyright 1997-2006 by Easy Software Products, all rights reserved.
|
||||
#
|
||||
# These coded instructions, statements, and computer programs are the
|
||||
@@ -56,7 +56,9 @@ LIBOBJS = \
|
||||
options.o \
|
||||
page.o \
|
||||
ppd.o \
|
||||
pwgmedia.o \
|
||||
pwg-file.o \
|
||||
pwg-media.o \
|
||||
pwg-ppd.o \
|
||||
request.o \
|
||||
sidechannel.o \
|
||||
snmp.o \
|
||||
@@ -83,8 +85,8 @@ OBJS = \
|
||||
testoptions.o \
|
||||
testlang.o \
|
||||
testppd.o \
|
||||
testsnmp.o \
|
||||
php_cups_wrap.o
|
||||
testpwg.o \
|
||||
testsnmp.o
|
||||
|
||||
|
||||
#
|
||||
@@ -130,6 +132,7 @@ UNITTARGETS = \
|
||||
testlang \
|
||||
testoptions \
|
||||
testppd \
|
||||
testpwg \
|
||||
testsnmp
|
||||
|
||||
TARGETS = \
|
||||
@@ -375,30 +378,6 @@ libcups.a: $(LIBOBJS)
|
||||
$(RANLIB) $@
|
||||
|
||||
|
||||
#
|
||||
# CUPS language bindings for various scripting languages...
|
||||
#
|
||||
# NOTE: Not currently used or functional - see the scripting/php directory
|
||||
# for the hand-written bindings...
|
||||
#
|
||||
|
||||
phpcups.so: $(LIBCUPS) php_cups_wrap.o
|
||||
echo Linking $@...
|
||||
if test `uname` = Darwin; then \
|
||||
DSOFLAGS="-bundle -flat_namespace -undefined suppress"; \
|
||||
else \
|
||||
DSOFLAGS="$(DSOFLAGS)"; \
|
||||
fi; \
|
||||
$(DSO) $$DSOFLAGS -o $@ php_cups_wrap.o $(LIBS) `php-config --ldflags --libs`
|
||||
|
||||
php_cups_wrap.o: php_cups_wrap.c
|
||||
echo Compiling $<...
|
||||
$(CC) $(CFLAGS) `php-config --includes` -c $<
|
||||
php_cups_wrap.c: cups.h
|
||||
echo Creating $< using SWIG...
|
||||
swig -php -o $@ -module cups cups.h
|
||||
|
||||
|
||||
#
|
||||
# testadmin (dependency on static CUPS library is intentional)
|
||||
#
|
||||
@@ -525,6 +504,18 @@ testppd: testppd.o libcups.a test.ppd test2.ppd
|
||||
./testppd
|
||||
|
||||
|
||||
#
|
||||
# testpwg (dependency on static CUPS library is intentional)
|
||||
#
|
||||
|
||||
testpwg: testpwg.o libcups.a test.ppd
|
||||
echo Linking $@...
|
||||
$(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testpwg.o libcups.a \
|
||||
$(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
|
||||
echo Running PWG API tests...
|
||||
./testpwg test.ppd
|
||||
|
||||
|
||||
#
|
||||
# testsnmp (dependency on static CUPS library is intentional)
|
||||
#
|
||||
|
||||
+21
-46
@@ -4,7 +4,7 @@
|
||||
* Administration utility API definitions for the Common UNIX Printing
|
||||
* System (CUPS).
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 2001-2007 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -862,25 +862,6 @@ cupsAdminGetServerSettings(
|
||||
http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
|
||||
int *num_settings, /* O - Number of settings */
|
||||
cups_option_t **settings) /* O - Settings */
|
||||
{
|
||||
return (_cupsAdminGetServerSettings(http, num_settings, settings));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_cupsAdminGetServerSettings()' - Get settings from the server.
|
||||
*
|
||||
* The returned settings should be freed with cupsFreeOptions() when
|
||||
* you are done with them.
|
||||
*
|
||||
* @since CUPS 1.2@
|
||||
*/
|
||||
|
||||
int /* O - 1 on success, 0 on failure */
|
||||
_cupsAdminGetServerSettings(
|
||||
http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
|
||||
int *num_settings, /* O - Number of settings */
|
||||
cups_option_t **settings) /* O - Settings */
|
||||
{
|
||||
int i; /* Looping var */
|
||||
cups_file_t *cupsd; /* cupsd.conf file */
|
||||
@@ -1213,22 +1194,6 @@ cupsAdminSetServerSettings(
|
||||
http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
|
||||
int num_settings, /* I - Number of settings */
|
||||
cups_option_t *settings) /* I - Settings */
|
||||
{
|
||||
return (_cupsAdminSetServerSettings(http, num_settings, settings));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_cupsAdminSetServerSettings()' - Set settings on the server.
|
||||
*
|
||||
* @since CUPS 1.2@
|
||||
*/
|
||||
|
||||
int /* O - 1 on success, 0 on failure */
|
||||
_cupsAdminSetServerSettings(
|
||||
http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
|
||||
int num_settings, /* I - Number of settings */
|
||||
cups_option_t *settings) /* I - Settings */
|
||||
{
|
||||
int i; /* Looping var */
|
||||
http_status_t status; /* GET/PUT status */
|
||||
@@ -1309,8 +1274,8 @@ _cupsAdminSetServerSettings(
|
||||
* Get current settings...
|
||||
*/
|
||||
|
||||
if (!_cupsAdminGetServerSettings(http, &cupsd_num_settings,
|
||||
&cupsd_settings))
|
||||
if (!cupsAdminGetServerSettings(http, &cupsd_num_settings,
|
||||
&cupsd_settings))
|
||||
return (0);
|
||||
|
||||
if ((val = cupsGetOption(CUPS_SERVER_DEBUG_LOGGING, cupsd_num_settings,
|
||||
@@ -1331,6 +1296,9 @@ _cupsAdminSetServerSettings(
|
||||
else
|
||||
remote_any = 0;
|
||||
|
||||
DEBUG_printf(("1cupsAdminSetServerSettings: old remote_any=%d",
|
||||
remote_any));
|
||||
|
||||
if ((val = cupsGetOption(CUPS_SERVER_REMOTE_PRINTERS, cupsd_num_settings,
|
||||
cupsd_settings)) != NULL)
|
||||
old_remote_printers = atoi(val);
|
||||
@@ -1495,13 +1463,13 @@ _cupsAdminSetServerSettings(
|
||||
while (cupsFileGetConf(cupsd, line, sizeof(line), &value, &linenum))
|
||||
{
|
||||
if ((!strcasecmp(line, "Port") || !strcasecmp(line, "Listen")) &&
|
||||
(share_printers >= 0 || remote_admin >= 0))
|
||||
(remote_admin >= 0 || remote_any > 0 || share_printers >= 0))
|
||||
{
|
||||
if (!wrote_port_listen)
|
||||
{
|
||||
wrote_port_listen = 1;
|
||||
|
||||
if (share_printers > 0 || remote_admin > 0)
|
||||
if (remote_admin > 0 || remote_any > 0 || share_printers > 0)
|
||||
{
|
||||
cupsFilePuts(temp, "# Allow remote access\n");
|
||||
cupsFilePrintf(temp, "Port %d\n", server_port);
|
||||
@@ -1709,7 +1677,8 @@ _cupsAdminSetServerSettings(
|
||||
cupsFilePrintf(temp, " Allow %s\n",
|
||||
remote_any > 0 ? "all" : "@LOCAL");
|
||||
}
|
||||
else if (in_root_location && (remote_admin >= 0 || share_printers >= 0))
|
||||
else if (in_root_location &&
|
||||
(remote_admin >= 0 || remote_any >= 0 || share_printers >= 0))
|
||||
{
|
||||
wrote_root_location = 1;
|
||||
|
||||
@@ -1720,12 +1689,14 @@ _cupsAdminSetServerSettings(
|
||||
cupsFilePuts(temp, " # Allow remote administration...\n");
|
||||
else if (share_printers > 0)
|
||||
cupsFilePuts(temp, " # Allow shared printing...\n");
|
||||
else if (remote_any > 0)
|
||||
cupsFilePuts(temp, " # Allow remote access...\n");
|
||||
else
|
||||
cupsFilePuts(temp, " # Restrict access to the server...\n");
|
||||
|
||||
cupsFilePuts(temp, " Order allow,deny\n");
|
||||
|
||||
if (remote_admin > 0 || share_printers > 0)
|
||||
if (remote_admin > 0 || remote_any > 0 || share_printers > 0)
|
||||
cupsFilePrintf(temp, " Allow %s\n",
|
||||
remote_any > 0 ? "all" : "@LOCAL");
|
||||
}
|
||||
@@ -1910,9 +1881,10 @@ _cupsAdminSetServerSettings(
|
||||
}
|
||||
}
|
||||
|
||||
if (!wrote_port_listen && (share_printers >= 0 || remote_admin >= 0))
|
||||
if (!wrote_port_listen &&
|
||||
(remote_admin >= 0 || remote_any >= 0 || share_printers >= 0))
|
||||
{
|
||||
if (share_printers > 0 || remote_admin > 0)
|
||||
if (remote_admin > 0 || remote_any > 0 || share_printers > 0)
|
||||
{
|
||||
cupsFilePuts(temp, "# Allow remote access\n");
|
||||
cupsFilePrintf(temp, "Port %d\n", ippPort());
|
||||
@@ -1930,7 +1902,8 @@ _cupsAdminSetServerSettings(
|
||||
#endif /* CUPS_DEFAULT_DOMAINSOCKET */
|
||||
}
|
||||
|
||||
if (!wrote_root_location && (remote_admin >= 0 || share_printers >= 0))
|
||||
if (!wrote_root_location &&
|
||||
(remote_admin >= 0 || remote_any >= 0 || share_printers >= 0))
|
||||
{
|
||||
if (remote_admin > 0 && share_printers > 0)
|
||||
cupsFilePuts(temp,
|
||||
@@ -1939,13 +1912,15 @@ _cupsAdminSetServerSettings(
|
||||
cupsFilePuts(temp, "# Allow remote administration...\n");
|
||||
else if (share_printers > 0)
|
||||
cupsFilePuts(temp, "# Allow shared printing...\n");
|
||||
else if (remote_any > 0)
|
||||
cupsFilePuts(temp, "# Allow remote access...\n");
|
||||
else
|
||||
cupsFilePuts(temp, "# Restrict access to the server...\n");
|
||||
|
||||
cupsFilePuts(temp, "<Location />\n"
|
||||
" Order allow,deny\n");
|
||||
|
||||
if (remote_admin > 0 || share_printers > 0)
|
||||
if (remote_admin > 0 || remote_any > 0 || share_printers > 0)
|
||||
cupsFilePrintf(temp, " Allow %s\n", remote_any > 0 ? "all" : "@LOCAL");
|
||||
|
||||
cupsFilePuts(temp, "</Location>\n");
|
||||
|
||||
+2
-6
@@ -1,13 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* Administration utility API definitions for the Common UNIX Printing
|
||||
* System (CUPS).
|
||||
* Administration utility API definitions for CUPS.
|
||||
*
|
||||
* MANY OF THE FUNCTIONS IN THIS HEADER ARE PRIVATE AND SUBJECT TO
|
||||
* CHANGE AT ANY TIME. USE AT YOUR OWN RISK.
|
||||
*
|
||||
* Copyright 2007 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 2001-2007 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!--
|
||||
"$Id: api-cups.shtml 7337 2008-02-22 04:44:04Z mike $"
|
||||
"$Id: api-cups.shtml 9061 2010-03-30 22:07:33Z mike $"
|
||||
|
||||
CUPS API introduction for the Common UNIX Printing System (CUPS).
|
||||
|
||||
Copyright 2007-2008 by Apple Inc.
|
||||
Copyright 2007-2010 by Apple Inc.
|
||||
Copyright 1997-2006 by Easy Software Products, all rights reserved.
|
||||
|
||||
These coded instructions, statements, and computer programs are the
|
||||
@@ -82,12 +82,13 @@ instance will return the default instance for that destination.</p>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>"printer-is-accepting-jobs"</td>
|
||||
<td>"1" if the destination is accepting new jobs, "0" if not.</td>
|
||||
<td>"true" if the destination is accepting new jobs, "false" if
|
||||
not.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>"printer-is-shared"</td>
|
||||
<td>"1" if the destination is being shared with other computers, "0" if
|
||||
not.</td>
|
||||
<td>"true" if the destination is being shared with other computers,
|
||||
"false" if not.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>"printer-location"</td>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id: api-filter.shtml 8718 2009-06-18 17:41:03Z mike $"
|
||||
"$Id: api-filter.shtml 9120 2010-04-23 18:56:34Z mike $"
|
||||
|
||||
Filter and backend programming introduction for the Common UNIX Printing
|
||||
System (CUPS).
|
||||
@@ -67,7 +67,7 @@ specify an arbitrary file path to a separator page, template, or other file
|
||||
used by the filter since that can lead to an unauthorized disclosure of
|
||||
information. <em>Always</em> treat input as suspect and validate it!</p>
|
||||
|
||||
<p>If you are developing a backend that runs as root , make sure to check for
|
||||
<p>If you are developing a backend that runs as root, make sure to check for
|
||||
potential buffer overflows, integer under/overflow conditions, and file
|
||||
accesses since these can lead to privilege escalations. When writing files,
|
||||
always validate the file path and <em>never</em> allow a user to determine
|
||||
@@ -88,15 +88,15 @@ Mac OS X, for example, no backend may write to a user's home directory.</p>
|
||||
<h3><a name="PERMISSIONS">File Permissions</a></h3>
|
||||
|
||||
<p>For security reasons, CUPS will only run filters and backends that are owned
|
||||
by root and do not have world write permissions. The recommended permissions for
|
||||
filters and backends are 0555 - read and execute but no write. Backends that
|
||||
must run as root should use permissions of 0500 - read and execute by root, no
|
||||
access for other users. Write permissions can be enabled for the root user
|
||||
only.</p>
|
||||
by root and do not have world or group write permissions. The recommended
|
||||
permissions for filters and backends are 0555 - read and execute but no write.
|
||||
Backends that must run as root should use permissions of 0500 - read and execute
|
||||
by root, no access for other users. Write permissions can be enabled for the
|
||||
root user only.</p>
|
||||
|
||||
<p>To avoid a warning message, the directory containing your filter(s) must also
|
||||
be owned by root and have world write disabled - permissions of 0755 or 0555 are
|
||||
strongly encouraged.</p>
|
||||
be owned by root and have world and group write disabled - permissions of 0755
|
||||
or 0555 are strongly encouraged.</p>
|
||||
|
||||
<h3><a name="TEMPFILES">Temporary Files</a></h3>
|
||||
|
||||
|
||||
+15
-14
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* Authentication functions for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products.
|
||||
*
|
||||
* This file contains Kerberos support code, copyright 2006 by
|
||||
@@ -98,10 +98,6 @@ cupsDoAuthentication(
|
||||
|
||||
DEBUG_printf(("cupsDoAuthentication(http=%p, method=\"%s\", resource=\"%s\")",
|
||||
http, method, resource));
|
||||
DEBUG_printf(("2cupsDoAuthentication: digest_tries=%d, userpass=\"%s\"",
|
||||
http->digest_tries, http->userpass));
|
||||
DEBUG_printf(("2cupsDoAuthentication: WWW-Authenticate=\"%s\"",
|
||||
httpGetField(http, HTTP_FIELD_WWW_AUTHENTICATE)));
|
||||
|
||||
if (!http)
|
||||
http = _cupsConnect();
|
||||
@@ -109,6 +105,11 @@ cupsDoAuthentication(
|
||||
if (!http || !method || !resource)
|
||||
return (-1);
|
||||
|
||||
DEBUG_printf(("2cupsDoAuthentication: digest_tries=%d, userpass=\"%s\"",
|
||||
http->digest_tries, http->userpass));
|
||||
DEBUG_printf(("2cupsDoAuthentication: WWW-Authenticate=\"%s\"",
|
||||
httpGetField(http, HTTP_FIELD_WWW_AUTHENTICATE)));
|
||||
|
||||
/*
|
||||
* Clear the current authentication string...
|
||||
*/
|
||||
@@ -181,6 +182,15 @@ cupsDoAuthentication(
|
||||
else if (http->status == HTTP_UNAUTHORIZED)
|
||||
http->digest_tries ++;
|
||||
|
||||
if (http->status == HTTP_UNAUTHORIZED && http->digest_tries >= 3)
|
||||
{
|
||||
DEBUG_printf(("1cupsDoAuthentication: Too many authentication tries (%d)",
|
||||
http->digest_tries));
|
||||
|
||||
http->status = HTTP_AUTHORIZATION_CANCELED;
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/*
|
||||
* Got a password; encode it for the server...
|
||||
*/
|
||||
@@ -222,15 +232,6 @@ cupsDoAuthentication(
|
||||
}
|
||||
# endif /* __APPLE__ */
|
||||
|
||||
if (http->status == HTTP_UNAUTHORIZED && http->digest_tries >= 3)
|
||||
{
|
||||
DEBUG_printf(("1cupsDoAuthentication: too many Negotiate tries (%d)",
|
||||
http->digest_tries));
|
||||
http->status = HTTP_AUTHORIZATION_CANCELED;
|
||||
|
||||
return (-1);
|
||||
}
|
||||
|
||||
if (http->gssname == GSS_C_NO_NAME)
|
||||
{
|
||||
if ((gss_service_name = getenv("CUPS_GSSSERVICENAME")) == NULL)
|
||||
|
||||
+6
-4
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* API definitions for the Common UNIX Printing System (CUPS).
|
||||
* API definitions for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -25,10 +25,12 @@
|
||||
# include <sys/types.h>
|
||||
# if defined(WIN32) && !defined(__CUPS_SSIZE_T_DEFINED)
|
||||
# define __CUPS_SSIZE_T_DEFINED
|
||||
# include <stddef.h>
|
||||
/* Windows does not support the ssize_t type, so map it to off_t... */
|
||||
typedef off_t ssize_t; /* @private@ */
|
||||
# endif /* WIN32 && !__CUPS_SSIZE_T_DEFINED */
|
||||
|
||||
# include "file.h"
|
||||
# include "ipp.h"
|
||||
# include "ppd.h"
|
||||
# include "language.h"
|
||||
@@ -59,10 +61,10 @@ extern "C" {
|
||||
* Constants...
|
||||
*/
|
||||
|
||||
# define CUPS_VERSION 1.0403
|
||||
# define CUPS_VERSION 1.0404
|
||||
# define CUPS_VERSION_MAJOR 1
|
||||
# define CUPS_VERSION_MINOR 4
|
||||
# define CUPS_VERSION_PATCH 3
|
||||
# define CUPS_VERSION_PATCH 4
|
||||
|
||||
# define CUPS_BC_FD 3 /* Back-channel file descriptor for select/poll */
|
||||
# define CUPS_DATE_ANY (time_t)-1
|
||||
|
||||
+5
-5
@@ -53,7 +53,7 @@
|
||||
|
||||
#include "debug.h"
|
||||
#include "globals.h"
|
||||
#include "pwgmedia.h"
|
||||
#include "pwg-private.h"
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
#include <sys/stat.h>
|
||||
@@ -553,7 +553,7 @@ cupsGetNamedDest(http_t *http, /* I - Connection to server or @code CUPS_HTT
|
||||
|
||||
if (!cups_get_sdests(http, op, name, 0, &dest))
|
||||
{
|
||||
if (op == CUPS_GET_DEFAULT || name)
|
||||
if (op == CUPS_GET_DEFAULT || (name && !set_as_default))
|
||||
return (NULL);
|
||||
|
||||
/*
|
||||
@@ -1113,8 +1113,8 @@ static char * /* O - Default paper size */
|
||||
appleGetPaperSize(char *name, /* I - Paper size name buffer */
|
||||
int namesize) /* I - Size of buffer */
|
||||
{
|
||||
CFStringRef defaultPaperID; /* Default paper ID */
|
||||
_cups_pwg_media_t *pwgmedia; /* PWG media size */
|
||||
CFStringRef defaultPaperID; /* Default paper ID */
|
||||
_pwg_media_t *pwgmedia; /* PWG media size */
|
||||
|
||||
|
||||
defaultPaperID = CFPreferencesCopyAppValue(kDefaultPaperIDKey,
|
||||
@@ -1124,7 +1124,7 @@ appleGetPaperSize(char *name, /* I - Paper size name buffer */
|
||||
!CFStringGetCString(defaultPaperID, name, namesize,
|
||||
kCFStringEncodingUTF8))
|
||||
name[0] = '\0';
|
||||
else if ((pwgmedia = _cupsPWGMediaByLegacy(name)) != NULL)
|
||||
else if ((pwgmedia = _pwgMediaForLegacy(name)) != NULL)
|
||||
strlcpy(name, pwgmedia->pwg, namesize);
|
||||
|
||||
if (defaultPaperID)
|
||||
|
||||
+109
-3
@@ -8,7 +8,7 @@
|
||||
* our own file functions allows us to provide transparent support of
|
||||
* gzip'd print files, PPD files, etc.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -59,6 +59,8 @@
|
||||
*/
|
||||
|
||||
#include "file-private.h"
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
|
||||
/*
|
||||
@@ -69,6 +71,7 @@
|
||||
static ssize_t cups_compress(cups_file_t *fp, const char *buf, size_t bytes);
|
||||
#endif /* HAVE_LIBZ */
|
||||
static ssize_t cups_fill(cups_file_t *fp);
|
||||
static int cups_open(const char *filename, int mode);
|
||||
static ssize_t cups_read(cups_file_t *fp, char *buf, size_t bytes);
|
||||
static ssize_t cups_write(cups_file_t *fp, const char *buf, size_t bytes);
|
||||
|
||||
@@ -827,7 +830,8 @@ cupsFileOpen(const char *filename, /* I - Name of file */
|
||||
switch (*mode)
|
||||
{
|
||||
case 'a' : /* Append file */
|
||||
fd = open(filename, O_RDWR | O_CREAT | O_APPEND | O_LARGEFILE | O_BINARY, 0666);
|
||||
fd = cups_open(filename,
|
||||
O_RDWR | O_CREAT | O_APPEND | O_LARGEFILE | O_BINARY);
|
||||
break;
|
||||
|
||||
case 'r' : /* Read file */
|
||||
@@ -835,7 +839,21 @@ cupsFileOpen(const char *filename, /* I - Name of file */
|
||||
break;
|
||||
|
||||
case 'w' : /* Write file */
|
||||
fd = open(filename, O_WRONLY | O_TRUNC | O_CREAT | O_LARGEFILE | O_BINARY, 0666);
|
||||
fd = cups_open(filename, O_WRONLY | O_LARGEFILE | O_BINARY);
|
||||
if (fd < 0 && errno == ENOENT)
|
||||
{
|
||||
fd = cups_open(filename,
|
||||
O_WRONLY | O_CREAT | O_EXCL | O_LARGEFILE | O_BINARY);
|
||||
if (fd < 0 && errno == EEXIST)
|
||||
fd = cups_open(filename, O_WRONLY | O_LARGEFILE | O_BINARY);
|
||||
}
|
||||
|
||||
if (fd >= 0)
|
||||
#ifdef WIN32
|
||||
_chsize(fd, 0);
|
||||
#else
|
||||
ftruncate(fd, 0);
|
||||
#endif /* WIN32 */
|
||||
break;
|
||||
|
||||
case 's' : /* Read/write socket */
|
||||
@@ -2208,6 +2226,94 @@ cups_fill(cups_file_t *fp) /* I - CUPS file */
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'cups_open()' - Safely open a file for writing.
|
||||
*
|
||||
* We don't allow appending to directories or files that are hard-linked or
|
||||
* symlinked.
|
||||
*/
|
||||
|
||||
static int /* O - File descriptor or -1 otherwise */
|
||||
cups_open(const char *filename, /* I - Filename */
|
||||
int mode) /* I - Open mode */
|
||||
{
|
||||
int fd; /* File descriptor */
|
||||
struct stat fileinfo; /* File information */
|
||||
#ifndef WIN32
|
||||
struct stat linkinfo; /* Link information */
|
||||
#endif /* !WIN32 */
|
||||
|
||||
|
||||
/*
|
||||
* Open the file...
|
||||
*/
|
||||
|
||||
if ((fd = open(filename, mode, 0666)) < 0)
|
||||
return (-1);
|
||||
|
||||
/*
|
||||
* Then verify that the file descriptor doesn't point to a directory or hard-
|
||||
* linked file.
|
||||
*/
|
||||
|
||||
if (fstat(fd, &fileinfo))
|
||||
{
|
||||
close(fd);
|
||||
return (-1);
|
||||
}
|
||||
|
||||
if (fileinfo.st_nlink != 1)
|
||||
{
|
||||
close(fd);
|
||||
errno = EPERM;
|
||||
return (-1);
|
||||
}
|
||||
|
||||
#ifdef WIN32
|
||||
if (fileinfo.st_mode & _S_IFDIR)
|
||||
#else
|
||||
if (S_ISDIR(fileinfo.st_mode))
|
||||
#endif /* WIN32 */
|
||||
{
|
||||
close(fd);
|
||||
errno = EISDIR;
|
||||
return (-1);
|
||||
}
|
||||
|
||||
#ifndef WIN32
|
||||
/*
|
||||
* Then use lstat to determine whether the filename is a symlink...
|
||||
*/
|
||||
|
||||
if (lstat(filename, &linkinfo))
|
||||
{
|
||||
close(fd);
|
||||
return (-1);
|
||||
}
|
||||
|
||||
if (S_ISLNK(linkinfo.st_mode) ||
|
||||
fileinfo.st_dev != linkinfo.st_dev ||
|
||||
fileinfo.st_ino != linkinfo.st_ino ||
|
||||
#ifdef HAVE_ST_GEN
|
||||
fileinfo.st_gen != linkinfo.st_gen ||
|
||||
#endif /* HAVE_ST_GEN */
|
||||
fileinfo.st_nlink != linkinfo.st_nlink ||
|
||||
fileinfo.st_mode != linkinfo.st_mode)
|
||||
{
|
||||
/*
|
||||
* Yes, don't allow!
|
||||
*/
|
||||
|
||||
close(fd);
|
||||
errno = EPERM;
|
||||
return (-1);
|
||||
}
|
||||
#endif /* !WIN32 */
|
||||
|
||||
return (fd);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'cups_read()' - Read from a file descriptor.
|
||||
*/
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
*/
|
||||
|
||||
# include "versioning.h"
|
||||
# include <stddef.h>
|
||||
# include <sys/types.h>
|
||||
# if defined(WIN32) && !defined(__CUPS_SSIZE_T_DEFINED)
|
||||
# define __CUPS_SSIZE_T_DEFINED
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* cupsGetDevices implementation for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2008-2009 by Apple Inc.
|
||||
* Copyright 2008-2010 by Apple Inc.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
* property of Apple Inc. and are protected by Federal copyright
|
||||
@@ -258,7 +258,7 @@ cupsGetDevices(
|
||||
httpBlocking(http, blocking);
|
||||
httpFlush(http);
|
||||
|
||||
if (status == IPP_ERROR)
|
||||
if (status == HTTP_ERROR)
|
||||
_cupsSetError(IPP_ERROR, NULL, 0);
|
||||
else
|
||||
{
|
||||
|
||||
+7
-3
@@ -38,11 +38,12 @@
|
||||
static void
|
||||
cups_env_init(_cups_globals_t *g) /* I - Global data */
|
||||
{
|
||||
#ifdef HAVE_GETEUID
|
||||
#ifndef WIN32
|
||||
# ifdef HAVE_GETEUID
|
||||
if ((geteuid() != getuid() && getuid()) || getegid() != getgid())
|
||||
#else
|
||||
# else
|
||||
if (!getuid())
|
||||
#endif /* HAVE_GETEUID */
|
||||
# endif /* HAVE_GETEUID */
|
||||
{
|
||||
/*
|
||||
* When running setuid/setgid, don't allow environment variables to override
|
||||
@@ -56,6 +57,7 @@ cups_env_init(_cups_globals_t *g) /* I - Global data */
|
||||
g->localedir = CUPS_LOCALEDIR;
|
||||
}
|
||||
else
|
||||
#endif /* !WIN32 */
|
||||
{
|
||||
/*
|
||||
* Allow directories to be overridden by environment variables.
|
||||
@@ -183,7 +185,9 @@ globals_destructor(void *value) /* I - Data to free */
|
||||
if (cg->last_status_message)
|
||||
_cupsStrFree(cg->last_status_message);
|
||||
|
||||
# ifndef CUPS_LITE
|
||||
cupsFreeOptions(cg->cupsd_num_settings, cg->cupsd_settings);
|
||||
# endif /* !CUPS_LITE */
|
||||
|
||||
for (buffer = cg->ipp_buffers; buffer; buffer = next)
|
||||
{
|
||||
|
||||
+7
-3
@@ -26,6 +26,7 @@
|
||||
# include "http-private.h"
|
||||
# include "cups.h"
|
||||
# include "i18n.h"
|
||||
# include "pwg-private.h"
|
||||
|
||||
# ifdef HAVE_PTHREAD_H
|
||||
# include <pthread.h>
|
||||
@@ -103,9 +104,12 @@ typedef struct _cups_globals_s /**** CUPS global state data ****/
|
||||
int ppd_line; /* Current line number */
|
||||
ppd_conform_t ppd_conform; /* Level of conformance required */
|
||||
|
||||
/* pwgmedia.c */
|
||||
cups_array_t *pwg_size_lut, /* Lookup table for PWG names */
|
||||
*leg_size_lut; /* Lookup table for legacy names */
|
||||
/* pwg-media.c */
|
||||
cups_array_t *leg_size_lut, /* Lookup table for legacy names */
|
||||
*ppd_size_lut, /* Lookup table for PPD names */
|
||||
*pwg_size_lut; /* Lookup table for PWG names */
|
||||
_pwg_media_t pwg_media; /* PWG media data for custom size */
|
||||
char pwg_name[65]; /* PWG media name for custom size */
|
||||
|
||||
/* snmp.c */
|
||||
char snmp_community[255];
|
||||
|
||||
@@ -98,6 +98,7 @@ extern BIO_METHOD *_httpBIOMethods(void);
|
||||
* The GNU TLS library is more of a "bare metal" SSL/TLS library...
|
||||
*/
|
||||
# include <gnutls/gnutls.h>
|
||||
# include <gcrypt.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
||||
+110
-30
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* HTTP routines for the Common UNIX Printing System (CUPS).
|
||||
* HTTP routines for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
*
|
||||
* This file contains Kerberos support code, copyright 2006 by
|
||||
@@ -25,7 +25,8 @@
|
||||
* server.
|
||||
* httpClearCookie() - Clear the cookie value(s).
|
||||
* httpClearFields() - Clear HTTP request fields.
|
||||
* httpClose() - Close an HTTP connection...
|
||||
* httpClose() - Close an HTTP connection.
|
||||
* httpConnect() - Connect to a HTTP server.
|
||||
* httpConnectEncrypt() - Connect to a HTTP server using encryption.
|
||||
* _httpCreate() - Create an unconnected HTTP connection.
|
||||
* httpDelete() - Send a DELETE request to the server.
|
||||
@@ -61,7 +62,7 @@
|
||||
* _httpReadGNUTLS() - Read function for the GNU TLS library.
|
||||
* httpReconnect() - Reconnect to a HTTP server.
|
||||
* httpSetAuthString() - Set the current authorization string.
|
||||
* httpSetCookie() - Set the cookie value(s)...
|
||||
* httpSetCookie() - Set the cookie value(s).
|
||||
* httpSetExpect() - Set the Expect: header in a request.
|
||||
* httpSetField() - Set the value of an HTTP header.
|
||||
* httpSetLength() - Set the content-length and content-encoding.
|
||||
@@ -82,10 +83,12 @@
|
||||
* http_debug_hex() - Do a hex dump of a buffer.
|
||||
* http_field() - Return the field index for a field name.
|
||||
* http_read_ssl() - Read from a SSL/TLS connection.
|
||||
* http_locking_cb() - Lock/unlock a thread's mutex.
|
||||
* http_send() - Send a request with all fields and the trailing
|
||||
* blank line.
|
||||
* http_setup_ssl() - Set up SSL/TLS support on a connection.
|
||||
* http_shutdown_ssl() - Shut down SSL/TLS on a connection.
|
||||
* http_threadid_cb() - Return the current thread ID.
|
||||
* http_upgrade() - Force upgrade to TLS encryption.
|
||||
* http_write() - Write a buffer to a HTTP connection.
|
||||
* http_write_chunk() - Write a chunked buffer.
|
||||
@@ -143,6 +146,19 @@ static int http_setup_ssl(http_t *http);
|
||||
static void http_shutdown_ssl(http_t *http);
|
||||
static int http_upgrade(http_t *http);
|
||||
static int http_write_ssl(http_t *http, const char *buf, int len);
|
||||
|
||||
# ifdef HAVE_GNUTLS
|
||||
# ifdef HAVE_PTHREAD_H
|
||||
GCRY_THREAD_OPTION_PTHREAD_IMPL;
|
||||
# endif /* HAVE_PTHREAD_H */
|
||||
|
||||
# elif defined(HAVE_LIBSSL) && defined(HAVE_PTHREAD_H)
|
||||
static pthread_mutex_t *http_locks; /* OpenSSL lock mutexes */
|
||||
|
||||
static void http_locking_cb(int mode, int type, const char *file,
|
||||
int line);
|
||||
static unsigned long http_threadid_cb(void);
|
||||
# endif /* HAVE_GNUTLS */
|
||||
#endif /* HAVE_SSL */
|
||||
|
||||
|
||||
@@ -311,7 +327,7 @@ httpClearFields(http_t *http) /* I - Connection to server */
|
||||
|
||||
|
||||
/*
|
||||
* 'httpClose()' - Close an HTTP connection...
|
||||
* 'httpClose()' - Close an HTTP connection.
|
||||
*/
|
||||
|
||||
void
|
||||
@@ -559,8 +575,9 @@ httpError(http_t *http) /* I - Connection to server */
|
||||
void
|
||||
httpFlush(http_t *http) /* I - Connection to server */
|
||||
{
|
||||
char buffer[8192]; /* Junk buffer */
|
||||
int blocking; /* To block or not to block */
|
||||
char buffer[8192]; /* Junk buffer */
|
||||
int blocking; /* To block or not to block */
|
||||
http_state_t oldstate; /* Old state */
|
||||
|
||||
|
||||
DEBUG_printf(("httpFlush(http=%p), state=%s", http,
|
||||
@@ -577,6 +594,7 @@ httpFlush(http_t *http) /* I - Connection to server */
|
||||
* Read any data we can...
|
||||
*/
|
||||
|
||||
oldstate = http->state;
|
||||
while (httpRead2(http, buffer, sizeof(buffer)) > 0);
|
||||
|
||||
/*
|
||||
@@ -586,7 +604,7 @@ httpFlush(http_t *http) /* I - Connection to server */
|
||||
|
||||
http->blocking = blocking;
|
||||
|
||||
if (http->state != HTTP_WAITING && http->fd >= 0)
|
||||
if (http->state == oldstate && http->state != HTTP_WAITING && http->fd >= 0)
|
||||
{
|
||||
/*
|
||||
* Didn't get the data back, so close the current connection.
|
||||
@@ -1170,21 +1188,22 @@ httpHead(http_t *http, /* I - Connection to server */
|
||||
void
|
||||
httpInitialize(void)
|
||||
{
|
||||
#ifdef HAVE_LIBSSL
|
||||
# ifndef WIN32
|
||||
struct timeval curtime; /* Current time in microseconds */
|
||||
# endif /* !WIN32 */
|
||||
int i; /* Looping var */
|
||||
unsigned char data[1024]; /* Seed data */
|
||||
#endif /* HAVE_LIBSSL */
|
||||
|
||||
static int initialized = 0; /* Have we been called before? */
|
||||
#ifdef WIN32
|
||||
WSADATA winsockdata; /* WinSock data */
|
||||
static int initialized = 0; /* Has WinSock been initialized? */
|
||||
#endif /* WIN32 */
|
||||
#ifdef HAVE_LIBSSL
|
||||
int i; /* Looping var */
|
||||
unsigned char data[1024]; /* Seed data */
|
||||
#endif /* HAVE_LIBSSL */
|
||||
|
||||
|
||||
if (!initialized)
|
||||
WSAStartup(MAKEWORD(1,1), &winsockdata);
|
||||
if (initialized)
|
||||
return;
|
||||
|
||||
#ifdef WIN32
|
||||
WSAStartup(MAKEWORD(2,2), &winsockdata);
|
||||
|
||||
#elif !defined(SO_NOSIGPIPE)
|
||||
/*
|
||||
* Ignore SIGPIPE signals...
|
||||
@@ -1192,6 +1211,7 @@ httpInitialize(void)
|
||||
|
||||
# ifdef HAVE_SIGSET
|
||||
sigset(SIGPIPE, SIG_IGN);
|
||||
|
||||
# elif defined(HAVE_SIGACTION)
|
||||
struct sigaction action; /* POSIX sigaction data */
|
||||
|
||||
@@ -1199,35 +1219,63 @@ httpInitialize(void)
|
||||
memset(&action, 0, sizeof(action));
|
||||
action.sa_handler = SIG_IGN;
|
||||
sigaction(SIGPIPE, &action, NULL);
|
||||
|
||||
# else
|
||||
signal(SIGPIPE, SIG_IGN);
|
||||
# endif /* !SO_NOSIGPIPE */
|
||||
#endif /* WIN32 */
|
||||
|
||||
#ifdef HAVE_GNUTLS
|
||||
gnutls_global_init();
|
||||
#endif /* HAVE_GNUTLS */
|
||||
/*
|
||||
* Make sure we handle threading properly...
|
||||
*/
|
||||
|
||||
# ifdef HAVE_PTHREAD_H
|
||||
gcry_control(GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
|
||||
# endif /* HAVE_PTHREAD_H */
|
||||
|
||||
/*
|
||||
* Initialize GNU TLS...
|
||||
*/
|
||||
|
||||
gnutls_global_init();
|
||||
|
||||
#elif defined(HAVE_LIBSSL)
|
||||
/*
|
||||
* Initialize OpenSSL...
|
||||
*/
|
||||
|
||||
#ifdef HAVE_LIBSSL
|
||||
SSL_load_error_strings();
|
||||
SSL_library_init();
|
||||
|
||||
/*
|
||||
* Set the threading callbacks...
|
||||
*/
|
||||
|
||||
# ifdef HAVE_PTHREAD_H
|
||||
http_locks = calloc(CRYPTO_num_locks(), sizeof(pthread_mutex_t));
|
||||
|
||||
for (i = 0; i < CRYPTO_num_locks(); i ++)
|
||||
pthread_mutex_init(http_locks + i, NULL);
|
||||
|
||||
CRYPTO_set_id_callback(http_threadid_cb);
|
||||
CRYPTO_set_locking_callback(http_locking_cb);
|
||||
# endif /* HAVE_PTHREAD_H */
|
||||
|
||||
/*
|
||||
* Using the current time is a dubious random seed, but on some systems
|
||||
* it is the best we can do (on others, this seed isn't even used...)
|
||||
*/
|
||||
|
||||
# ifdef WIN32
|
||||
# else
|
||||
gettimeofday(&curtime, NULL);
|
||||
srand(curtime.tv_sec + curtime.tv_usec);
|
||||
# endif /* WIN32 */
|
||||
CUPS_SRAND(time(NULL));
|
||||
|
||||
for (i = 0; i < sizeof(data); i ++)
|
||||
data[i] = rand();
|
||||
data[i] = CUPS_RAND();
|
||||
|
||||
RAND_seed(data, sizeof(data));
|
||||
#endif /* HAVE_LIBSSL */
|
||||
#endif /* HAVE_GNUTLS */
|
||||
|
||||
initialized = 1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1815,7 +1863,7 @@ httpSetAuthString(http_t *http, /* I - Connection to server */
|
||||
|
||||
|
||||
/*
|
||||
* 'httpSetCookie()' - Set the cookie value(s)...
|
||||
* 'httpSetCookie()' - Set the cookie value(s).
|
||||
*
|
||||
* @since CUPS 1.1.19/Mac OS X 10.3@
|
||||
*/
|
||||
@@ -2786,6 +2834,25 @@ http_read_ssl(http_t *http, /* I - Connection to server */
|
||||
#endif /* HAVE_SSL */
|
||||
|
||||
|
||||
#if defined(HAVE_LIBSSL) && defined(HAVE_PTHREAD_H)
|
||||
/*
|
||||
* 'http_locking_cb()' - Lock/unlock a thread's mutex.
|
||||
*/
|
||||
|
||||
static void
|
||||
http_locking_cb(int mode, /* I - Lock mode */
|
||||
int type, /* I - Lock type */
|
||||
const char *file, /* I - Source file */
|
||||
int line) /* I - Line number */
|
||||
{
|
||||
if (mode & CRYPTO_LOCK)
|
||||
pthread_mutex_lock(http_locks + type);
|
||||
else
|
||||
pthread_mutex_unlock(http_locks + type);
|
||||
}
|
||||
#endif /* HAVE_LIBSSL && HAVE_PTHREAD_H */
|
||||
|
||||
|
||||
/*
|
||||
* 'http_send()' - Send a request with all fields and the trailing blank line.
|
||||
*/
|
||||
@@ -3157,6 +3224,19 @@ http_shutdown_ssl(http_t *http) /* I - Connection to server */
|
||||
#endif /* HAVE_SSL */
|
||||
|
||||
|
||||
#if defined(HAVE_LIBSSL) && defined(HAVE_PTHREAD_H)
|
||||
/*
|
||||
* 'http_threadid_cb()' - Return the current thread ID.
|
||||
*/
|
||||
|
||||
static unsigned long /* O - Thread ID */
|
||||
http_threadid_cb(void)
|
||||
{
|
||||
return ((unsigned long)pthread_self());
|
||||
}
|
||||
#endif /* HAVE_LIBSSL && HAVE_PTHREAD_H */
|
||||
|
||||
|
||||
#ifdef HAVE_SSL
|
||||
/*
|
||||
* 'http_upgrade()' - Force upgrade to TLS encryption.
|
||||
|
||||
+1
-1
@@ -250,7 +250,7 @@ typedef enum http_status_e /**** HTTP status codes ****/
|
||||
HTTP_GATEWAY_TIMEOUT, /* Gateway connection timed out */
|
||||
HTTP_NOT_SUPPORTED, /* HTTP version not supported */
|
||||
|
||||
HTTP_AUTHORIZATION_CANCELED = 1000 /* User cancelled authorization */
|
||||
HTTP_AUTHORIZATION_CANCELED = 1000 /* User canceled authorization */
|
||||
|
||||
} http_status_t;
|
||||
|
||||
|
||||
+81
-35
@@ -1,10 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* Internet Printing Protocol support functions for the Common UNIX
|
||||
* Printing System (CUPS).
|
||||
* Internet Printing Protocol functions for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -186,6 +185,8 @@ ippAddCollection(ipp_t *ipp, /* I - IPP message */
|
||||
attr->value_tag = IPP_TAG_BEGIN_COLLECTION;
|
||||
attr->values[0].collection = value;
|
||||
|
||||
value->use ++;
|
||||
|
||||
return (attr);
|
||||
}
|
||||
|
||||
@@ -224,10 +225,15 @@ ippAddCollections(
|
||||
attr->value_tag = IPP_TAG_BEGIN_COLLECTION;
|
||||
|
||||
if (values != NULL)
|
||||
{
|
||||
for (i = 0, value = attr->values;
|
||||
i < num_values;
|
||||
i ++, value ++)
|
||||
{
|
||||
value->collection = (ipp_t *)values[i];
|
||||
value->collection->use ++;
|
||||
}
|
||||
}
|
||||
|
||||
return (attr);
|
||||
}
|
||||
@@ -425,7 +431,8 @@ ippAddString(ipp_t *ipp, /* I - IPP message */
|
||||
value = "en";
|
||||
|
||||
/*
|
||||
* Convert language values to lowercase and change _ to - as needed...
|
||||
* Convert language and charset values to lowercase and change _ to - as
|
||||
* needed...
|
||||
*/
|
||||
|
||||
if ((type == IPP_TAG_LANGUAGE || type == IPP_TAG_CHARSET) && value)
|
||||
@@ -473,6 +480,8 @@ ippAddStrings(
|
||||
int i; /* Looping var */
|
||||
ipp_attribute_t *attr; /* New attribute */
|
||||
ipp_value_t *value; /* Current value */
|
||||
char buffer[1024], /* Language/charset value buffer */
|
||||
*bufptr; /* Pointer into buffer */
|
||||
|
||||
|
||||
DEBUG_printf(("ippAddStrings(ipp=%p, group=%02x(%s), type=%02x(%s), "
|
||||
@@ -506,16 +515,36 @@ ippAddStrings(
|
||||
|
||||
if (values != NULL)
|
||||
{
|
||||
/*
|
||||
* Force language to be English for the POSIX locale...
|
||||
*/
|
||||
if ((int)type & IPP_TAG_COPY)
|
||||
value->string.text = (char *)values[i];
|
||||
else if (type == IPP_TAG_LANGUAGE && !strcasecmp(values[i], "C"))
|
||||
{
|
||||
/*
|
||||
* Force language to be English for the POSIX locale...
|
||||
*/
|
||||
|
||||
if (type == IPP_TAG_LANGUAGE && !strcasecmp(values[i], "C"))
|
||||
value->string.text = ((int)type & IPP_TAG_COPY) ? "en" :
|
||||
_cupsStrAlloc("en");
|
||||
}
|
||||
else if (type == IPP_TAG_LANGUAGE || type == IPP_TAG_CHARSET)
|
||||
{
|
||||
/*
|
||||
* Convert language values to lowercase and change _ to - as needed...
|
||||
*/
|
||||
|
||||
strlcpy(buffer, values[i], sizeof(buffer));
|
||||
|
||||
for (bufptr = buffer; *bufptr; bufptr ++)
|
||||
if (*bufptr == '_')
|
||||
*bufptr = '-';
|
||||
else
|
||||
*bufptr = tolower(*bufptr & 255);
|
||||
|
||||
value->string.text = _cupsStrAlloc(buffer);
|
||||
}
|
||||
else
|
||||
value->string.text = ((int)type & IPP_TAG_COPY) ? (char *)values[i] :
|
||||
_cupsStrAlloc(values[i]);
|
||||
value->string.text = _cupsStrAlloc(values[i]);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -776,6 +805,10 @@ ippDelete(ipp_t *ipp) /* I - IPP message */
|
||||
if (!ipp)
|
||||
return;
|
||||
|
||||
ipp->use --;
|
||||
if (ipp->use > 0)
|
||||
return;
|
||||
|
||||
for (attr = ipp->attrs; attr != NULL; attr = next)
|
||||
{
|
||||
next = attr->next;
|
||||
@@ -950,6 +983,7 @@ ippNew(void)
|
||||
|
||||
temp->request.any.version[0] = 1;
|
||||
temp->request.any.version[1] = 1;
|
||||
temp->use = 1;
|
||||
}
|
||||
|
||||
DEBUG_printf(("1ippNew: Returning %p", temp));
|
||||
@@ -1871,6 +1905,12 @@ ippWriteIO(void *dst, /* I - Destination */
|
||||
*bufptr++ = ipp->request.any.request_id >> 8;
|
||||
*bufptr++ = ipp->request.any.request_id;
|
||||
|
||||
DEBUG_printf(("2ippWriteIO: version=%d.%d", buffer[0], buffer[1]));
|
||||
DEBUG_printf(("2ippWriteIO: op_status=%04x",
|
||||
ipp->request.any.op_status));
|
||||
DEBUG_printf(("2ippWriteIO: request_id=%d",
|
||||
ipp->request.any.request_id));
|
||||
|
||||
if ((*cb)(dst, buffer, (int)(bufptr - buffer)) < 0)
|
||||
{
|
||||
DEBUG_puts("1ippWriteIO: Could not write IPP header...");
|
||||
@@ -1888,11 +1928,7 @@ ippWriteIO(void *dst, /* I - Destination */
|
||||
ipp->current = ipp->attrs;
|
||||
ipp->curtag = IPP_TAG_ZERO;
|
||||
|
||||
DEBUG_printf(("2ippWriteIO: version=%d.%d", buffer[0], buffer[1]));
|
||||
DEBUG_printf(("2ippWriteIO: op_status=%04x",
|
||||
ipp->request.any.op_status));
|
||||
DEBUG_printf(("2ippWriteIO: request_id=%d",
|
||||
ipp->request.any.request_id));
|
||||
DEBUG_printf(("1ippWriteIO: ipp->current=%p", ipp->current));
|
||||
|
||||
/*
|
||||
* If blocking is disabled, stop here...
|
||||
@@ -1913,23 +1949,30 @@ ippWriteIO(void *dst, /* I - Destination */
|
||||
|
||||
ipp->current = ipp->current->next;
|
||||
|
||||
if (ipp->curtag != attr->group_tag && parent == NULL)
|
||||
if (!parent)
|
||||
{
|
||||
/*
|
||||
* Send a group tag byte...
|
||||
*/
|
||||
if (ipp->curtag != attr->group_tag)
|
||||
{
|
||||
/*
|
||||
* Send a group tag byte...
|
||||
*/
|
||||
|
||||
ipp->curtag = attr->group_tag;
|
||||
ipp->curtag = attr->group_tag;
|
||||
|
||||
if (attr->group_tag == IPP_TAG_ZERO)
|
||||
if (attr->group_tag == IPP_TAG_ZERO)
|
||||
continue;
|
||||
|
||||
DEBUG_printf(("2ippWriteIO: wrote group tag=%x(%s)",
|
||||
attr->group_tag, ippTagString(attr->group_tag)));
|
||||
*bufptr++ = attr->group_tag;
|
||||
}
|
||||
else if (attr->group_tag == IPP_TAG_ZERO)
|
||||
continue;
|
||||
|
||||
DEBUG_printf(("2ippWriteIO: wrote group tag=%x(%s)",
|
||||
attr->group_tag, ippTagString(attr->group_tag)));
|
||||
*bufptr++ = attr->group_tag;
|
||||
}
|
||||
else if (attr->group_tag == IPP_TAG_ZERO)
|
||||
continue;
|
||||
|
||||
DEBUG_printf(("1ippWriteIO: %s (%s%s)", attr->name,
|
||||
attr->num_values > 1 ? "1setOf " : "",
|
||||
ippTagString(attr->value_tag)));
|
||||
|
||||
/*
|
||||
* Write the attribute tag and name. The current implementation
|
||||
@@ -2602,15 +2645,18 @@ ippWriteIO(void *dst, /* I - Destination */
|
||||
* Write the data out...
|
||||
*/
|
||||
|
||||
if ((*cb)(dst, buffer, (int)(bufptr - buffer)) < 0)
|
||||
if (bufptr > buffer)
|
||||
{
|
||||
DEBUG_puts("1ippWriteIO: Could not write IPP attribute...");
|
||||
ipp_buffer_release(buffer);
|
||||
return (IPP_ERROR);
|
||||
}
|
||||
if ((*cb)(dst, buffer, (int)(bufptr - buffer)) < 0)
|
||||
{
|
||||
DEBUG_puts("1ippWriteIO: Could not write IPP attribute...");
|
||||
ipp_buffer_release(buffer);
|
||||
return (IPP_ERROR);
|
||||
}
|
||||
|
||||
DEBUG_printf(("2ippWriteIO: wrote %d bytes",
|
||||
(int)(bufptr - buffer)));
|
||||
DEBUG_printf(("2ippWriteIO: wrote %d bytes",
|
||||
(int)(bufptr - buffer)));
|
||||
}
|
||||
|
||||
/*
|
||||
* If blocking is disabled, stop here...
|
||||
@@ -2979,7 +3025,7 @@ ipp_read_http(http_t *http, /* I - Client connection */
|
||||
int tbytes, /* Total bytes read */
|
||||
bytes; /* Bytes read this pass */
|
||||
char len[32]; /* Length string */
|
||||
|
||||
|
||||
|
||||
DEBUG_printf(("7ipp_read_http(http=%p, buffer=%p, length=%d)",
|
||||
http, buffer, (int)length));
|
||||
|
||||
+15
-13
@@ -1,10 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* Internet Printing Protocol definitions for the Common UNIX Printing
|
||||
* System (CUPS).
|
||||
* Internet Printing Protocol definitions for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2006 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -64,7 +63,7 @@ extern "C" {
|
||||
* Types and structures...
|
||||
*/
|
||||
|
||||
typedef enum ipp_tag_e /**** Format tags for attributes... ****/
|
||||
typedef enum ipp_tag_e /**** Format tags for attributes ****/
|
||||
{
|
||||
IPP_TAG_ZERO = 0x00, /* Zero tag - used for separators */
|
||||
IPP_TAG_OPERATION, /* Operation group */
|
||||
@@ -105,13 +104,13 @@ typedef enum ipp_tag_e /**** Format tags for attributes... ****/
|
||||
IPP_TAG_COPY = -0x7fffffff-1 /* Bitflag for copied attribute values */
|
||||
} ipp_tag_t;
|
||||
|
||||
typedef enum ipp_res_e /**** Resolution units... ****/
|
||||
typedef enum ipp_res_e /**** Resolution units ****/
|
||||
{
|
||||
IPP_RES_PER_INCH = 3, /* Pixels per inch */
|
||||
IPP_RES_PER_CM /* Pixels per centimeter */
|
||||
} ipp_res_t;
|
||||
|
||||
typedef enum ipp_finish_e /**** Finishings... ****/
|
||||
typedef enum ipp_finish_e /**** Finishings ****/
|
||||
{
|
||||
IPP_FINISHINGS_NONE = 3, /* No finishing */
|
||||
IPP_FINISHINGS_STAPLE, /* Staple (any location) */
|
||||
@@ -143,7 +142,7 @@ typedef enum ipp_finish_e /**** Finishings... ****/
|
||||
IPP_FINISHINGS_BIND_BOTTOM /* Bind on bottom */
|
||||
} ipp_finish_t;
|
||||
|
||||
typedef enum ipp_orient_e /**** Orientation... ****/
|
||||
typedef enum ipp_orient_e /**** Orientation values ****/
|
||||
{
|
||||
IPP_PORTRAIT = 3, /* No rotation */
|
||||
IPP_LANDSCAPE, /* 90 degrees counter-clockwise */
|
||||
@@ -151,14 +150,14 @@ typedef enum ipp_orient_e /**** Orientation... ****/
|
||||
IPP_REVERSE_PORTRAIT /* 180 degrees */
|
||||
} ipp_orient_t;
|
||||
|
||||
typedef enum ipp_quality_e /**** Qualities... ****/
|
||||
typedef enum ipp_quality_e /**** Qualities ****/
|
||||
{
|
||||
IPP_QUALITY_DRAFT = 3, /* Draft quality */
|
||||
IPP_QUALITY_NORMAL, /* Normal quality */
|
||||
IPP_QUALITY_HIGH /* High quality */
|
||||
} ipp_quality_t;
|
||||
|
||||
typedef enum ipp_jstate_e /**** Job States.... */
|
||||
typedef enum ipp_jstate_e /**** Job states ****/
|
||||
{
|
||||
IPP_JOB_PENDING = 3, /* Job is waiting to be printed */
|
||||
IPP_JOB_HELD, /* Job is held for printing */
|
||||
@@ -170,14 +169,14 @@ typedef enum ipp_jstate_e /**** Job States.... */
|
||||
} ipp_jstate_t;
|
||||
#define IPP_JOB_CANCELLED IPP_JOB_CANCELED
|
||||
|
||||
typedef enum ipp_pstate_e /**** Printer States.... */
|
||||
typedef enum ipp_pstate_e /**** Printer states ****/
|
||||
{
|
||||
IPP_PRINTER_IDLE = 3, /* Printer is idle */
|
||||
IPP_PRINTER_PROCESSING, /* Printer is working */
|
||||
IPP_PRINTER_STOPPED /* Printer is stopped */
|
||||
} ipp_pstate_t;
|
||||
|
||||
typedef enum ipp_state_e /**** IPP states... ****/
|
||||
typedef enum ipp_state_e /**** IPP states ****/
|
||||
{
|
||||
IPP_ERROR = -1, /* An error occurred */
|
||||
IPP_IDLE, /* Nothing is happening/request completed */
|
||||
@@ -186,7 +185,7 @@ typedef enum ipp_state_e /**** IPP states... ****/
|
||||
IPP_DATA /* IPP request data needs to be sent/received */
|
||||
} ipp_state_t;
|
||||
|
||||
typedef enum ipp_op_e /**** IPP operations... ****/
|
||||
typedef enum ipp_op_e /**** IPP operations ****/
|
||||
{
|
||||
IPP_PRINT_JOB = 0x0002, /* Print a single file */
|
||||
IPP_PRINT_URI, /* Print a single URL @private@ */
|
||||
@@ -255,7 +254,7 @@ typedef enum ipp_op_e /**** IPP operations... ****/
|
||||
#define CUPS_ADD_PRINTER CUPS_ADD_MODIFY_PRINTER
|
||||
#define CUPS_ADD_CLASS CUPS_ADD_MODIFY_CLASS
|
||||
|
||||
typedef enum ipp_status_e /**** IPP status codes... ****/
|
||||
typedef enum ipp_status_e /**** IPP status codes ****/
|
||||
{
|
||||
IPP_OK = 0x0000, /* successful-ok */
|
||||
IPP_OK_SUBST, /* successful-ok-ignored-or-substituted-attributes */
|
||||
@@ -405,6 +404,9 @@ struct ipp_s /**** IPP Request/Response/Notification ****/
|
||||
|
||||
/**** New in CUPS 1.2 ****/
|
||||
ipp_attribute_t *prev; /* Previous attribute (for read) @since CUPS 1.2/Mac OS X 10.5@ */
|
||||
|
||||
/**** New in CUPS 1.5 ****/
|
||||
int use; /* Use count */
|
||||
};
|
||||
|
||||
|
||||
|
||||
+19
-5
@@ -2,8 +2,6 @@ __cups_debug_fd
|
||||
__cups_debug_printf
|
||||
__cups_debug_puts
|
||||
__cups_strcpy
|
||||
__cupsAdminGetServerSettings
|
||||
__cupsAdminSetServerSettings
|
||||
__cupsAppleLanguage
|
||||
__cupsCharmapFlush
|
||||
__cupsCharmapFree
|
||||
@@ -21,9 +19,6 @@ __cupsMD5Init
|
||||
__cupsMessageFree
|
||||
__cupsMessageLoad
|
||||
__cupsMessageLookup
|
||||
__cupsPWGMediaByName
|
||||
__cupsPWGMediaByLegacy
|
||||
__cupsPWGMediaBySize
|
||||
__cupsSetError
|
||||
__cupsSetLocale
|
||||
__cupsSNMPClose
|
||||
@@ -62,6 +57,25 @@ __ppdHashName
|
||||
__ppdLocalizedAttr
|
||||
__ppdNormalizeMakeAndModel
|
||||
__ppdParseOptions
|
||||
__pwgCreateWithFile
|
||||
__pwgDestroy
|
||||
__pwgWriteFile
|
||||
__pwgGenerateSize
|
||||
__pwgInitSize
|
||||
__pwgMediaForLegacy
|
||||
__pwgMediaForPPD
|
||||
__pwgMediaForPWG
|
||||
__pwgMediaForSize
|
||||
__pwgCreateWithPPD
|
||||
__pwgGetInputSlot
|
||||
__pwgGetMediaType
|
||||
__pwgGetPageSize
|
||||
__pwgGetSize
|
||||
__pwgGetSource
|
||||
__pwgGetType
|
||||
__pwgInputSlotForSource
|
||||
__pwgMediaTypeForType
|
||||
__pwgPageSizeForMedia
|
||||
_cupsAddDest
|
||||
_cupsAddOption
|
||||
_cupsAdminCreateWindowsPPD
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
LIBRARY libcups2
|
||||
VERSION 2.7
|
||||
EXPORTS
|
||||
_cupsAdminGetServerSettings
|
||||
_cupsAdminSetServerSettings
|
||||
_cupsCharmapFlush
|
||||
_cupsCharmapFree
|
||||
_cupsCharmapGet
|
||||
|
||||
+24
-6
@@ -1,12 +1,11 @@
|
||||
_cups_debug_fd
|
||||
_cupsAdminGetServerSettings
|
||||
_cupsAdminSetServerSettings
|
||||
_cupsCharmapFlush
|
||||
_cupsCharmapFree
|
||||
_cupsCharmapGet
|
||||
_cupsEncodingName
|
||||
_cupsGetPassword
|
||||
_cupsGlobals
|
||||
_cupsLangPrintError
|
||||
_cupsLangPrintf
|
||||
_cupsLangPuts
|
||||
_cupsLangString
|
||||
@@ -16,9 +15,6 @@ _cupsMD5Init
|
||||
_cupsMessageFree
|
||||
_cupsMessageLoad
|
||||
_cupsMessageLookup
|
||||
_cupsPWGMediaByName
|
||||
_cupsPWGMediaByLegacy
|
||||
_cupsPWGMediaBySize
|
||||
_cupsSetError
|
||||
_cupsSetLocale
|
||||
_cupsSNMPClose
|
||||
@@ -50,6 +46,7 @@ _httpBIOMethods
|
||||
_httpCreate
|
||||
_httpEncodeURI
|
||||
_httpResolveURI
|
||||
_httpWait
|
||||
_ippAddAttr
|
||||
_ippFreeAttr
|
||||
_ppdFreeLanguages
|
||||
@@ -59,4 +56,25 @@ _ppdGetLanguages
|
||||
_ppdHashName
|
||||
_ppdLocalizedAttr
|
||||
_ppdNormalizeMakeAndModel
|
||||
_ppdParseOptions
|
||||
_ppdParseOptions
|
||||
_pwgCreateWithFile
|
||||
_pwgDestroy
|
||||
_pwgWriteFile
|
||||
_pwgGenerateSize
|
||||
_pwgInitSize
|
||||
_pwgMediaForLegacy
|
||||
_pwgMediaForPPD
|
||||
_pwgMediaForPWG
|
||||
_pwgMediaForSize
|
||||
_pwgCreateWithPPD
|
||||
_pwgGetBin
|
||||
_pwgGetInputSlot
|
||||
_pwgGetMediaType
|
||||
_pwgGetOutputBin
|
||||
_pwgGetPageSize
|
||||
_pwgGetSize
|
||||
_pwgGetSource
|
||||
_pwgGetType
|
||||
_pwgInputSlotForSource
|
||||
_pwgMediaTypeForType
|
||||
_pwgPageSizeForMedia
|
||||
|
||||
+92
-190
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* Option marking routines for the Common UNIX Printing System (CUPS).
|
||||
* Option marking routines for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -29,13 +29,11 @@
|
||||
* ppdFirstOption() - Return the first option in the PPD file.
|
||||
* ppdNextOption() - Return the next option in the PPD file.
|
||||
* _ppdParseOptions() - Parse options from a PPD file.
|
||||
* debug_marked() - Output the marked array to stdout...
|
||||
* ppd_debug_marked() - Output the marked array to stdout...
|
||||
* ppd_defaults() - Set the defaults for this group and all sub-groups.
|
||||
* ppd_mark_choices() - Mark one or more option choices from a string.
|
||||
* ppd_mark_option() - Quickly mark an option without checking for
|
||||
* conflicts.
|
||||
* ppd_mark_size() - Quickly mark a page size without checking for
|
||||
* conflicts.
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -45,7 +43,7 @@
|
||||
#include "cups.h"
|
||||
#include "string.h"
|
||||
#include "debug.h"
|
||||
#include "pwgmedia.h"
|
||||
#include "pwg-private.h"
|
||||
|
||||
|
||||
/*
|
||||
@@ -53,15 +51,14 @@
|
||||
*/
|
||||
|
||||
#ifdef DEBUG
|
||||
static void debug_marked(ppd_file_t *ppd, const char *title);
|
||||
static void ppd_debug_marked(ppd_file_t *ppd, const char *title);
|
||||
#else
|
||||
# define debug_marked(ppd,title)
|
||||
# define ppd_debug_marked(ppd,title)
|
||||
#endif /* DEBUG */
|
||||
static void ppd_defaults(ppd_file_t *ppd, ppd_group_t *g);
|
||||
static void ppd_mark_choices(ppd_file_t *ppd, const char *s);
|
||||
static void ppd_mark_option(ppd_file_t *ppd, const char *option,
|
||||
const char *choice);
|
||||
static void ppd_mark_size(ppd_file_t *ppd, const char *size);
|
||||
|
||||
|
||||
/*
|
||||
@@ -83,8 +80,8 @@ cupsMarkOptions(
|
||||
s[255]; /* Temporary string */
|
||||
const char *val, /* Pointer into value */
|
||||
*media, /* media option */
|
||||
*media_col, /* media-col option */
|
||||
*page_size; /* PageSize option */
|
||||
*page_size, /* PageSize option */
|
||||
*ppd_keyword; /* PPD keyword */
|
||||
cups_option_t *optptr; /* Current option */
|
||||
ppd_option_t *option; /* PPD option */
|
||||
ppd_attr_t *attr; /* PPD attribute */
|
||||
@@ -122,71 +119,24 @@ cupsMarkOptions(
|
||||
if (!ppd || num_options <= 0 || !options)
|
||||
return (0);
|
||||
|
||||
debug_marked(ppd, "Before...");
|
||||
ppd_debug_marked(ppd, "Before...");
|
||||
|
||||
/*
|
||||
* Do special handling for media, media-col, and PageSize...
|
||||
* Do special handling for media and PageSize...
|
||||
*/
|
||||
|
||||
media = cupsGetOption("media", num_options, options);
|
||||
media_col = cupsGetOption("media-col", num_options, options);
|
||||
page_size = cupsGetOption("PageSize", num_options, options);
|
||||
|
||||
if (media_col && (!page_size || !page_size[0]))
|
||||
{
|
||||
/*
|
||||
* Pull out the corresponding media size from the media-col value...
|
||||
*/
|
||||
|
||||
int num_media_cols, /* Number of media-col values */
|
||||
num_media_sizes;/* Number of media-size values */
|
||||
cups_option_t *media_cols, /* media-col values */
|
||||
*media_sizes; /* media-size values */
|
||||
|
||||
|
||||
num_media_cols = cupsParseOptions(media_col, 0, &media_cols);
|
||||
|
||||
if ((val = cupsGetOption("media-key", num_media_cols, media_cols)) != NULL)
|
||||
media = val;
|
||||
else if ((val = cupsGetOption("media-size", num_media_cols,
|
||||
media_cols)) != NULL)
|
||||
{
|
||||
/*
|
||||
* Lookup by dimensions...
|
||||
*/
|
||||
|
||||
double width, /* Width in points */
|
||||
length; /* Length in points */
|
||||
struct lconv *loc; /* Locale data */
|
||||
_cups_pwg_media_t *pwgmedia; /* PWG media name */
|
||||
|
||||
|
||||
num_media_sizes = cupsParseOptions(val, 0, &media_sizes);
|
||||
loc = localeconv();
|
||||
|
||||
if ((val = cupsGetOption("x-dimension", num_media_sizes,
|
||||
media_sizes)) != NULL)
|
||||
width = _cupsStrScand(val, NULL, loc) * 2540.0 / 72.0;
|
||||
else
|
||||
width = 0.0;
|
||||
|
||||
if ((val = cupsGetOption("y-dimension", num_media_sizes,
|
||||
media_sizes)) != NULL)
|
||||
length = _cupsStrScand(val, NULL, loc) * 2540.0 / 72.0;
|
||||
else
|
||||
length = 0.0;
|
||||
|
||||
if ((pwgmedia = _cupsPWGMediaBySize(width, length)) != NULL)
|
||||
media = pwgmedia->pwg;
|
||||
|
||||
cupsFreeOptions(num_media_sizes, media_sizes);
|
||||
}
|
||||
|
||||
cupsFreeOptions(num_media_cols, media_cols);
|
||||
}
|
||||
|
||||
if (media)
|
||||
{
|
||||
/*
|
||||
* Load PWG mapping data as needed...
|
||||
*/
|
||||
|
||||
if (!ppd->pwg)
|
||||
ppd->pwg = _pwgCreateWithPPD(ppd);
|
||||
|
||||
/*
|
||||
* Loop through the option string, separating it at commas and
|
||||
* marking each individual option as long as the corresponding
|
||||
@@ -215,23 +165,21 @@ cupsMarkOptions(
|
||||
*/
|
||||
|
||||
if (!page_size || !page_size[0])
|
||||
ppd_mark_size(ppd, s);
|
||||
{
|
||||
if (!strncasecmp(s, "Custom.", 7) || ppdPageSize(ppd, s))
|
||||
ppd_mark_option(ppd, "PageSize", s);
|
||||
else if ((ppd_keyword = _pwgGetPageSize((_pwg_t *)ppd->pwg, NULL, s,
|
||||
NULL)) != NULL)
|
||||
ppd_mark_option(ppd, "PageSize", ppd_keyword);
|
||||
}
|
||||
|
||||
if (cupsGetOption("InputSlot", num_options, options) == NULL)
|
||||
ppd_mark_option(ppd, "InputSlot", s);
|
||||
if (!cupsGetOption("InputSlot", num_options, options) &&
|
||||
(ppd_keyword = _pwgGetInputSlot((_pwg_t *)ppd->pwg, NULL, s)) != NULL)
|
||||
ppd_mark_option(ppd, "InputSlot", ppd_keyword);
|
||||
|
||||
if (cupsGetOption("MediaType", num_options, options) == NULL)
|
||||
ppd_mark_option(ppd, "MediaType", s);
|
||||
|
||||
if (cupsGetOption("EFMediaType", num_options, options) == NULL)
|
||||
ppd_mark_option(ppd, "EFMediaType", s); /* EFI */
|
||||
|
||||
if (cupsGetOption("EFMediaQualityMode", num_options, options) == NULL)
|
||||
ppd_mark_option(ppd, "EFMediaQualityMode", s); /* EFI */
|
||||
|
||||
if (!strcasecmp(s, "manual") &&
|
||||
!cupsGetOption("ManualFeed", num_options, options))
|
||||
ppd_mark_option(ppd, "ManualFeed", "True");
|
||||
if (!cupsGetOption("MediaType", num_options, options) &&
|
||||
(ppd_keyword = _pwgGetMediaType((_pwg_t *)ppd->pwg, NULL, s)) != NULL)
|
||||
ppd_mark_option(ppd, "MediaType", ppd_keyword);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -240,8 +188,7 @@ cupsMarkOptions(
|
||||
*/
|
||||
|
||||
for (i = num_options, optptr = options; i > 0; i --, optptr ++)
|
||||
if (!strcasecmp(optptr->name, "media") ||
|
||||
!strcasecmp(optptr->name, "media-col"))
|
||||
if (!strcasecmp(optptr->name, "media"))
|
||||
continue;
|
||||
else if (!strcasecmp(optptr->name, "sides"))
|
||||
{
|
||||
@@ -346,8 +293,10 @@ cupsMarkOptions(
|
||||
}
|
||||
else if (!strcasecmp(optptr->name, "output-bin"))
|
||||
{
|
||||
if (!cupsGetOption("OutputBin", num_options, options))
|
||||
ppd_mark_option(ppd, "OutputBin", optptr->value);
|
||||
if (!cupsGetOption("OutputBin", num_options, options) &&
|
||||
(ppd_keyword = _pwgGetOutputBin((_pwg_t *)ppd->pwg,
|
||||
optptr->value)) != NULL)
|
||||
ppd_mark_option(ppd, "OutputBin", ppd_keyword);
|
||||
}
|
||||
else if (!strcasecmp(optptr->name, "multiple-document-handling"))
|
||||
{
|
||||
@@ -401,6 +350,60 @@ cupsMarkOptions(
|
||||
ppd_mark_choices(ppd, attr->value);
|
||||
}
|
||||
}
|
||||
else if (!strcasecmp(optptr->name, "print-quality"))
|
||||
{
|
||||
ppd_option_t *output_mode = ppdFindOption(ppd, "OutputMode");
|
||||
/* OutputMode option */
|
||||
|
||||
if (!strcmp(optptr->value, "3"))
|
||||
{
|
||||
/*
|
||||
* Draft quality...
|
||||
*/
|
||||
|
||||
if (ppdFindChoice(output_mode, "Draft"))
|
||||
ppd_mark_option(ppd, "OutputMode", "Draft");
|
||||
else if (ppdFindChoice(output_mode, "Fast"))
|
||||
ppd_mark_option(ppd, "OutputMode", "Fast");
|
||||
|
||||
if ((attr = ppdFindAttr(ppd, "APPrinterPreset",
|
||||
"DraftGray_with_Paper_Auto-Detect")) != NULL)
|
||||
ppd_mark_choices(ppd, attr->value);
|
||||
}
|
||||
else if (!strcmp(optptr->value, "4"))
|
||||
{
|
||||
/*
|
||||
* Normal quality...
|
||||
*/
|
||||
|
||||
if (ppdFindChoice(output_mode, "Normal"))
|
||||
ppd_mark_option(ppd, "OutputMode", "Normal");
|
||||
else if (ppdFindChoice(output_mode, "Good"))
|
||||
ppd_mark_option(ppd, "OutputMode", "Good");
|
||||
|
||||
if ((attr = ppdFindAttr(ppd, "APPrinterPreset",
|
||||
"Color_with_Paper_Auto-Detect")) != NULL)
|
||||
ppd_mark_choices(ppd, attr->value);
|
||||
else if ((attr = ppdFindAttr(ppd, "APPrinterPreset",
|
||||
"Gray_with_Paper_Auto-Detect")) != NULL)
|
||||
ppd_mark_choices(ppd, attr->value);
|
||||
}
|
||||
else if (!strcmp(optptr->value, "5"))
|
||||
{
|
||||
/*
|
||||
* High/best/photo quality...
|
||||
*/
|
||||
|
||||
if (ppdFindChoice(output_mode, "Best"))
|
||||
ppd_mark_option(ppd, "OutputMode", "Best");
|
||||
else if (ppdFindChoice(output_mode, "High"))
|
||||
ppd_mark_option(ppd, "OutputMode", "High");
|
||||
|
||||
if ((attr = ppdFindAttr(ppd, "APPrinterPreset",
|
||||
"Photo_on_Photo_Paper")) != NULL)
|
||||
ppd_mark_choices(ppd, attr->value);
|
||||
}
|
||||
}
|
||||
else if (!strcasecmp(optptr->name, "APPrinterPreset"))
|
||||
{
|
||||
/*
|
||||
@@ -421,7 +424,7 @@ cupsMarkOptions(
|
||||
else
|
||||
ppd_mark_option(ppd, optptr->name, optptr->value);
|
||||
|
||||
debug_marked(ppd, "After...");
|
||||
ppd_debug_marked(ppd, "After...");
|
||||
|
||||
return (ppdConflicts(ppd) > 0);
|
||||
}
|
||||
@@ -746,11 +749,11 @@ _ppdParseOptions(
|
||||
|
||||
#ifdef DEBUG
|
||||
/*
|
||||
* 'debug_marked()' - Output the marked array to stdout...
|
||||
* 'ppd_debug_marked()' - Output the marked array to stdout...
|
||||
*/
|
||||
|
||||
static void
|
||||
debug_marked(ppd_file_t *ppd, /* I - PPD file data */
|
||||
ppd_debug_marked(ppd_file_t *ppd, /* I - PPD file data */
|
||||
const char *title) /* I - Title for list */
|
||||
{
|
||||
ppd_choice_t *c; /* Current choice */
|
||||
@@ -1148,107 +1151,6 @@ ppd_mark_option(ppd_file_t *ppd, /* I - PPD file */
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'ppd_mark_size()' - Quickly mark a page size without checking for conflicts.
|
||||
*
|
||||
* This function is also responsible for mapping PWG/ISO/IPP size names to the
|
||||
* PPD file...
|
||||
*/
|
||||
|
||||
static void
|
||||
ppd_mark_size(ppd_file_t *ppd, /* I - PPD file */
|
||||
const char *size) /* I - Size name */
|
||||
{
|
||||
int i; /* Looping var */
|
||||
_cups_pwg_media_t *pwgmedia; /* PWG media information */
|
||||
ppd_size_t *ppdsize; /* Current PPD size */
|
||||
double dw, dl; /* Difference in width and height */
|
||||
double width, /* Width to find */
|
||||
length; /* Length to find */
|
||||
char width_str[256], /* Width in size name */
|
||||
length_str[256],/* Length in size name */
|
||||
units[256], /* Units in size name */
|
||||
custom[256]; /* Custom size */
|
||||
struct lconv *loc; /* Localization data */
|
||||
|
||||
|
||||
/*
|
||||
* See if this is a PPD size...
|
||||
*/
|
||||
|
||||
if (!strncasecmp(size, "Custom.", 7) || ppdPageSize(ppd, size))
|
||||
{
|
||||
ppd_mark_option(ppd, "PageSize", size);
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* Nope, try looking up the PWG or legacy (IPP/ISO) size name...
|
||||
*/
|
||||
|
||||
if ((pwgmedia = _cupsPWGMediaByName(size)) == NULL)
|
||||
pwgmedia = _cupsPWGMediaByLegacy(size);
|
||||
|
||||
if (pwgmedia)
|
||||
{
|
||||
width = pwgmedia->width;
|
||||
length = pwgmedia->length;
|
||||
}
|
||||
else if (sscanf(size, "%*[^_]_%*[^_]_%255[0-9.]x%255[0-9.]%s", width_str,
|
||||
length_str, units) == 3)
|
||||
{
|
||||
/*
|
||||
* Got a "self-describing" name that isn't in our table...
|
||||
*/
|
||||
|
||||
loc = localeconv();
|
||||
width = _cupsStrScand(width_str, NULL, loc);
|
||||
length = _cupsStrScand(length_str, NULL, loc);
|
||||
|
||||
if (!strcmp(units, "in"))
|
||||
{
|
||||
width *= 72.0;
|
||||
length *= 72.0;
|
||||
}
|
||||
else if (!strcmp(units, "mm"))
|
||||
{
|
||||
width *= 25.4 / 72.0;
|
||||
length *= 25.4 / 72.0;
|
||||
}
|
||||
else
|
||||
return;
|
||||
}
|
||||
else
|
||||
return;
|
||||
|
||||
/*
|
||||
* Search the PPD file for a matching size...
|
||||
*/
|
||||
|
||||
for (i = ppd->num_sizes, ppdsize = ppd->sizes; i > 0; i --, ppdsize ++)
|
||||
{
|
||||
dw = ppdsize->width - width;
|
||||
dl = ppdsize->length - length;
|
||||
|
||||
if (dw > -5.0 && dw < 5.0 && dl > -5.0 && dl < 5.0)
|
||||
{
|
||||
ppd_mark_option(ppd, "PageSize", ppdsize->name);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* No match found; if custom sizes are supported, set a custom size...
|
||||
*/
|
||||
|
||||
if (ppd->variable_sizes)
|
||||
{
|
||||
snprintf(custom, sizeof(custom), "Custom.%dx%d", (int)width, (int)length);
|
||||
ppd_mark_option(ppd, "PageSize", custom);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* End of "$Id$".
|
||||
*/
|
||||
|
||||
+19
-17
@@ -44,7 +44,7 @@ ppdPageSize(ppd_file_t *ppd, /* I - PPD file record */
|
||||
{
|
||||
int i; /* Looping var */
|
||||
ppd_size_t *size; /* Current page size */
|
||||
float w, l; /* Width and length of page */
|
||||
double w, l; /* Width and length of page */
|
||||
char *nameptr; /* Pointer into name */
|
||||
struct lconv *loc; /* Locale data */
|
||||
ppd_coption_t *coption; /* Custom option for page size */
|
||||
@@ -81,52 +81,54 @@ ppdPageSize(ppd_file_t *ppd, /* I - PPD file record */
|
||||
* Variable size; size name can be one of the following:
|
||||
*
|
||||
* Custom.WIDTHxLENGTHin - Size in inches
|
||||
* Custom.WIDTHxLENGTHft - Size in feet
|
||||
* Custom.WIDTHxLENGTHcm - Size in centimeters
|
||||
* Custom.WIDTHxLENGTHmm - Size in millimeters
|
||||
* Custom.WIDTHxLENGTHm - Size in meters
|
||||
* Custom.WIDTHxLENGTH[pt] - Size in points
|
||||
*/
|
||||
|
||||
loc = localeconv();
|
||||
w = (float)_cupsStrScand(name + 7, &nameptr, loc);
|
||||
w = _cupsStrScand(name + 7, &nameptr, loc);
|
||||
if (!nameptr || *nameptr != 'x')
|
||||
return (NULL);
|
||||
|
||||
l = (float)_cupsStrScand(nameptr + 1, &nameptr, loc);
|
||||
l = _cupsStrScand(nameptr + 1, &nameptr, loc);
|
||||
if (!nameptr)
|
||||
return (NULL);
|
||||
|
||||
if (!strcasecmp(nameptr, "in"))
|
||||
{
|
||||
w *= 72.0f;
|
||||
l *= 72.0f;
|
||||
w *= 72.0;
|
||||
l *= 72.0;
|
||||
}
|
||||
else if (!strcasecmp(nameptr, "ft"))
|
||||
{
|
||||
w *= 12.0f * 72.0f;
|
||||
l *= 12.0f * 72.0f;
|
||||
w *= 12.0 * 72.0;
|
||||
l *= 12.0 * 72.0;
|
||||
}
|
||||
else if (!strcasecmp(nameptr, "mm"))
|
||||
{
|
||||
w *= 72.0f / 25.4f;
|
||||
l *= 72.0f / 25.4f;
|
||||
w *= 72.0 / 25.4;
|
||||
l *= 72.0 / 25.4;
|
||||
}
|
||||
else if (!strcasecmp(nameptr, "cm"))
|
||||
{
|
||||
w *= 72.0f / 2.54f;
|
||||
l *= 72.0f / 2.54f;
|
||||
w *= 72.0 / 2.54;
|
||||
l *= 72.0 / 2.54;
|
||||
}
|
||||
else if (!strcasecmp(nameptr, "m"))
|
||||
{
|
||||
w *= 72.0f / 0.0254f;
|
||||
l *= 72.0f / 0.0254f;
|
||||
w *= 72.0 / 0.0254;
|
||||
l *= 72.0 / 0.0254;
|
||||
}
|
||||
|
||||
size->width = w;
|
||||
size->length = l;
|
||||
size->width = (float)w;
|
||||
size->length = (float)l;
|
||||
size->left = ppd->custom_margins[0];
|
||||
size->bottom = ppd->custom_margins[1];
|
||||
size->right = w - ppd->custom_margins[2];
|
||||
size->top = l - ppd->custom_margins[3];
|
||||
size->right = (float)(w - ppd->custom_margins[2]);
|
||||
size->top = (float)(l - ppd->custom_margins[3]);
|
||||
|
||||
/*
|
||||
* Update the custom option records for the page size, too...
|
||||
|
||||
+10
-2
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* PPD file routines for the Common UNIX Printing System (CUPS).
|
||||
* PPD file routines for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -60,6 +60,7 @@
|
||||
*/
|
||||
|
||||
#include "ppd-private.h"
|
||||
#include "pwg-private.h"
|
||||
#include "globals.h"
|
||||
#include "debug.h"
|
||||
#include <stdlib.h>
|
||||
@@ -313,6 +314,13 @@ ppdClose(ppd_file_t *ppd) /* I - PPD file record */
|
||||
cupsArrayDelete(ppd->cups_uiconstraints);
|
||||
}
|
||||
|
||||
/*
|
||||
* Free any PWG mapping data...
|
||||
*/
|
||||
|
||||
if (ppd->pwg)
|
||||
_pwgDestroy((_pwg_t *)ppd->pwg);
|
||||
|
||||
/*
|
||||
* Free the whole record...
|
||||
*/
|
||||
|
||||
+10
-7
@@ -1,10 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* PostScript Printer Description definitions for the Common UNIX Printing
|
||||
* System (CUPS).
|
||||
* PostScript Printer Description definitions for CUPS.
|
||||
*
|
||||
* Copyright 2007-2008 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -334,6 +333,9 @@ typedef struct ppd_file_s /**** PPD File ****/
|
||||
|
||||
/**** New in CUPS 1.4/Mac OS X 10.6 ****/
|
||||
cups_array_t *cups_uiconstraints; /* cupsUIConstraints @since CUPS 1.4/Mac OS X 10.6@ @private@ */
|
||||
|
||||
/**** New in CUPS 1.5 ****/
|
||||
void *pwg; /* PWG to/from PPD mappings */
|
||||
} ppd_file_t;
|
||||
|
||||
|
||||
@@ -397,19 +399,20 @@ extern ppd_option_t *ppdNextOption(ppd_file_t *ppd) _CUPS_API_1_2;
|
||||
extern int ppdLocalize(ppd_file_t *ppd) _CUPS_API_1_2;
|
||||
extern ppd_file_t *ppdOpen2(cups_file_t *fp) _CUPS_API_1_2;
|
||||
|
||||
/**** New in CUPS 1.3 ****/
|
||||
/**** New in CUPS 1.3/Mac OS X 10.5 ****/
|
||||
extern const char *ppdLocalizeIPPReason(ppd_file_t *ppd,
|
||||
const char *reason,
|
||||
const char *scheme,
|
||||
char *buffer,
|
||||
size_t bufsize) _CUPS_API_1_3;
|
||||
|
||||
/**** New in CUPS 1.4 ****/
|
||||
/**** New in CUPS 1.4/Mac OS X 10.6 ****/
|
||||
extern int ppdInstallableConflict(ppd_file_t *ppd,
|
||||
const char *option,
|
||||
const char *choice);
|
||||
const char *choice)
|
||||
_CUPS_API_1_4;
|
||||
extern ppd_attr_t *ppdLocalizeAttr(ppd_file_t *ppd, const char *keyword,
|
||||
const char *spec);
|
||||
const char *spec) _CUPS_API_1_4;
|
||||
extern const char *ppdLocalizeMarkerName(ppd_file_t *ppd,
|
||||
const char *name) _CUPS_API_1_4;
|
||||
extern int ppdPageSizeLimits(ppd_file_t *ppd,
|
||||
|
||||
@@ -0,0 +1,561 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* PWG load/save API implementation for CUPS.
|
||||
*
|
||||
* Copyright 2010 by Apple Inc.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
* property of Apple Inc. and are protected by Federal copyright
|
||||
* law. Distribution and use rights are outlined in the file "LICENSE.txt"
|
||||
* which should have been included with this file. If this file is
|
||||
* file is missing or damaged, see the license at "http://www.cups.org/".
|
||||
*
|
||||
* This file is subject to the Apple OS-Developed Software exception.
|
||||
*
|
||||
* Contents:
|
||||
*
|
||||
* _pwgCreateWithFile() - Create PWG mapping data from a written file.
|
||||
* _pwgDestroy() - Free all memory used for PWG mapping data.
|
||||
* _pwgWriteFile() - Write PWG mapping data to a file.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Include necessary headers...
|
||||
*/
|
||||
|
||||
#include "globals.h"
|
||||
#include "debug.h"
|
||||
#include <math.h>
|
||||
|
||||
|
||||
/*
|
||||
* '_pwgCreateWithFile()' - Create PWG mapping data from a written file.
|
||||
*
|
||||
* Use the @link _pwgWriteFile@ function to write PWG mapping data to a file.
|
||||
*/
|
||||
|
||||
_pwg_t * /* O - PWG mapping data */
|
||||
_pwgCreateWithFile(const char *filename)/* I - File to read */
|
||||
{
|
||||
cups_file_t *fp; /* File */
|
||||
_pwg_t *pwg; /* PWG mapping data */
|
||||
_pwg_size_t *size; /* Current size */
|
||||
_pwg_map_t *map; /* Current map */
|
||||
int linenum, /* Current line number */
|
||||
num_bins, /* Number of bins in file */
|
||||
num_sizes, /* Number of sizes in file */
|
||||
num_sources, /* Number of sources in file */
|
||||
num_types; /* Number of types in file */
|
||||
char line[512], /* Current line */
|
||||
*value, /* Pointer to value in line */
|
||||
pwg_keyword[128], /* PWG keyword */
|
||||
ppd_keyword[PPD_MAX_NAME];
|
||||
/* PPD keyword */
|
||||
|
||||
|
||||
DEBUG_printf(("_pwgCreateWithFile(filename=\"%s\")", filename));
|
||||
|
||||
/*
|
||||
* Range check input...
|
||||
*/
|
||||
|
||||
if (!filename)
|
||||
{
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, strerror(EINVAL), 0);
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
/*
|
||||
* Open the file...
|
||||
*/
|
||||
|
||||
if ((fp = cupsFileOpen(filename, "r")) == NULL)
|
||||
{
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, strerror(errno), 0);
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
/*
|
||||
* Allocate the mapping data structure...
|
||||
*/
|
||||
|
||||
if ((pwg = calloc(1, sizeof(_pwg_t))) == NULL)
|
||||
{
|
||||
DEBUG_puts("_pwgCreateWithFile: Unable to allocate pwg_t.");
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, strerror(errno), 0);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
/*
|
||||
* Read the file...
|
||||
*/
|
||||
|
||||
linenum = 0;
|
||||
num_bins = 0;
|
||||
num_sizes = 0;
|
||||
num_sources = 0;
|
||||
num_types = 0;
|
||||
|
||||
while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: line=\"%s\", value=\"%s\", linenum=%d",
|
||||
line, value, linenum));
|
||||
|
||||
if (!value)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Missing value on line %d.", linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
else if (!strcasecmp(line, "NumBins"))
|
||||
{
|
||||
if (num_bins > 0)
|
||||
{
|
||||
DEBUG_puts("_pwgCreateWithFile: NumBins listed multiple times.");
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if ((num_bins = atoi(value)) <= 0 || num_bins > 65536)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Bad NumBins value %d on line %d.",
|
||||
num_sizes, linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if ((pwg->bins = calloc(num_bins, sizeof(_pwg_map_t))) == NULL)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Unable to allocate %d bins.",
|
||||
num_sizes));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, strerror(errno), 0);
|
||||
goto create_error;
|
||||
}
|
||||
}
|
||||
else if (!strcasecmp(line, "Bin"))
|
||||
{
|
||||
if (sscanf(value, "%127s%40s", pwg_keyword, ppd_keyword) != 2)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Bad Bin on line %d.", linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if (pwg->num_bins >= num_bins)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Too many Bin's on line %d.",
|
||||
linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
map = pwg->bins + pwg->num_bins;
|
||||
map->pwg = _cupsStrAlloc(pwg_keyword);
|
||||
map->ppd = _cupsStrAlloc(ppd_keyword);
|
||||
|
||||
pwg->num_bins ++;
|
||||
}
|
||||
else if (!strcasecmp(line, "NumSizes"))
|
||||
{
|
||||
if (num_sizes > 0)
|
||||
{
|
||||
DEBUG_puts("_pwgCreateWithFile: NumSizes listed multiple times.");
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if ((num_sizes = atoi(value)) <= 0 || num_sizes > 65536)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Bad NumSizes value %d on line %d.",
|
||||
num_sizes, linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if ((pwg->sizes = calloc(num_sizes, sizeof(_pwg_size_t))) == NULL)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Unable to allocate %d sizes.",
|
||||
num_sizes));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, strerror(errno), 0);
|
||||
goto create_error;
|
||||
}
|
||||
}
|
||||
else if (!strcasecmp(line, "Size"))
|
||||
{
|
||||
if (pwg->num_sizes >= num_sizes)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Too many Size's on line %d.",
|
||||
linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
size = pwg->sizes + pwg->num_sizes;
|
||||
|
||||
if (sscanf(value, "%127s%40s%d%d%d%d%d%d", pwg_keyword, ppd_keyword,
|
||||
&(size->width), &(size->length), &(size->left),
|
||||
&(size->bottom), &(size->right), &(size->top)) != 8)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Bad Size on line %d.", linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
size->map.pwg = _cupsStrAlloc(pwg_keyword);
|
||||
size->map.ppd = _cupsStrAlloc(ppd_keyword);
|
||||
|
||||
pwg->num_sizes ++;
|
||||
}
|
||||
else if (!strcasecmp(line, "CustomSize"))
|
||||
{
|
||||
if (pwg->custom_max_width > 0)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Too many CustomSize's on line %d.",
|
||||
linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if (sscanf(value, "%d%d%d%d%d%d%d%d", &(pwg->custom_max_width),
|
||||
&(pwg->custom_max_length), &(pwg->custom_min_width),
|
||||
&(pwg->custom_min_length), &(pwg->custom_size.left),
|
||||
&(pwg->custom_size.bottom), &(pwg->custom_size.right),
|
||||
&(pwg->custom_size.top)) != 8)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Bad CustomSize on line %d.", linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
_pwgGenerateSize(pwg_keyword, sizeof(pwg_keyword), "custom", "max",
|
||||
pwg->custom_max_width, pwg->custom_max_length);
|
||||
pwg->custom_max_keyword = _cupsStrAlloc(pwg_keyword);
|
||||
|
||||
_pwgGenerateSize(pwg_keyword, sizeof(pwg_keyword), "custom", "min",
|
||||
pwg->custom_min_width, pwg->custom_min_length);
|
||||
pwg->custom_min_keyword = _cupsStrAlloc(pwg_keyword);
|
||||
}
|
||||
else if (!strcasecmp(line, "NumSources"))
|
||||
{
|
||||
if (num_sources > 0)
|
||||
{
|
||||
DEBUG_puts("_pwgCreateWithFile: NumSources listed multiple times.");
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if ((num_sources = atoi(value)) <= 0 || num_sources > 65536)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Bad NumSources value %d on line %d.",
|
||||
num_sources, linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if ((pwg->sources = calloc(num_sources, sizeof(_pwg_map_t))) == NULL)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Unable to allocate %d sources.",
|
||||
num_sources));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, strerror(errno), 0);
|
||||
goto create_error;
|
||||
}
|
||||
}
|
||||
else if (!strcasecmp(line, "Source"))
|
||||
{
|
||||
if (sscanf(value, "%127s%40s", pwg_keyword, ppd_keyword) != 2)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Bad Source on line %d.", linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if (pwg->num_sources >= num_sources)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Too many Source's on line %d.",
|
||||
linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
map = pwg->sources + pwg->num_sources;
|
||||
map->pwg = _cupsStrAlloc(pwg_keyword);
|
||||
map->ppd = _cupsStrAlloc(ppd_keyword);
|
||||
|
||||
pwg->num_sources ++;
|
||||
}
|
||||
else if (!strcasecmp(line, "NumTypes"))
|
||||
{
|
||||
if (num_types > 0)
|
||||
{
|
||||
DEBUG_puts("_pwgCreateWithFile: NumTypes listed multiple times.");
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if ((num_types = atoi(value)) <= 0 || num_types > 65536)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Bad NumTypes value %d on line %d.",
|
||||
num_types, linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if ((pwg->types = calloc(num_types, sizeof(_pwg_map_t))) == NULL)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Unable to allocate %d types.",
|
||||
num_types));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, strerror(errno), 0);
|
||||
goto create_error;
|
||||
}
|
||||
}
|
||||
else if (!strcasecmp(line, "Type"))
|
||||
{
|
||||
if (sscanf(value, "%127s%40s", pwg_keyword, ppd_keyword) != 2)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Bad Type on line %d.", linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if (pwg->num_types >= num_types)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Too many Type's on line %d.",
|
||||
linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
map = pwg->types + pwg->num_types;
|
||||
map->pwg = _cupsStrAlloc(pwg_keyword);
|
||||
map->ppd = _cupsStrAlloc(ppd_keyword);
|
||||
|
||||
pwg->num_types ++;
|
||||
}
|
||||
else
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Unknown %s on line %d.", line,
|
||||
linenum));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
}
|
||||
|
||||
if (pwg->num_sizes < num_sizes)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Not enough sizes (%d < %d).",
|
||||
pwg->num_sizes, num_sizes));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if (pwg->num_sources < num_sources)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Not enough sources (%d < %d).",
|
||||
pwg->num_sources, num_sources));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
if (pwg->num_types < num_types)
|
||||
{
|
||||
DEBUG_printf(("_pwgCreateWithFile: Not enough types (%d < %d).",
|
||||
pwg->num_types, num_types));
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Bad PWG mapping file."), 1);
|
||||
goto create_error;
|
||||
}
|
||||
|
||||
cupsFileClose(fp);
|
||||
|
||||
return (pwg);
|
||||
|
||||
/*
|
||||
* If we get here the file was bad - free any data and return...
|
||||
*/
|
||||
|
||||
create_error:
|
||||
|
||||
cupsFileClose(fp);
|
||||
_pwgDestroy(pwg);
|
||||
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_pwgDestroy()' - Free all memory used for PWG mapping data.
|
||||
*/
|
||||
|
||||
void
|
||||
_pwgDestroy(_pwg_t *pwg) /* I - PWG mapping data */
|
||||
{
|
||||
int i; /* Looping var */
|
||||
_pwg_map_t *map; /* Current map */
|
||||
_pwg_size_t *size; /* Current size */
|
||||
|
||||
|
||||
/*
|
||||
* Range check input...
|
||||
*/
|
||||
|
||||
if (!pwg)
|
||||
return;
|
||||
|
||||
/*
|
||||
* Free memory as needed...
|
||||
*/
|
||||
|
||||
if (pwg->bins)
|
||||
{
|
||||
for (i = pwg->num_bins, map = pwg->bins; i > 0; i --, map ++)
|
||||
{
|
||||
_cupsStrFree(map->pwg);
|
||||
_cupsStrFree(map->ppd);
|
||||
}
|
||||
|
||||
free(pwg->bins);
|
||||
}
|
||||
|
||||
if (pwg->sizes)
|
||||
{
|
||||
for (i = pwg->num_sizes, size = pwg->sizes; i > 0; i --, size ++)
|
||||
{
|
||||
_cupsStrFree(size->map.pwg);
|
||||
_cupsStrFree(size->map.ppd);
|
||||
}
|
||||
|
||||
free(pwg->sizes);
|
||||
}
|
||||
|
||||
if (pwg->sources)
|
||||
{
|
||||
for (i = pwg->num_sources, map = pwg->sources; i > 0; i --, map ++)
|
||||
{
|
||||
_cupsStrFree(map->pwg);
|
||||
_cupsStrFree(map->ppd);
|
||||
}
|
||||
|
||||
free(pwg->sources);
|
||||
}
|
||||
|
||||
if (pwg->types)
|
||||
{
|
||||
for (i = pwg->num_types, map = pwg->types; i > 0; i --, map ++)
|
||||
{
|
||||
_cupsStrFree(map->pwg);
|
||||
_cupsStrFree(map->ppd);
|
||||
}
|
||||
|
||||
free(pwg->types);
|
||||
}
|
||||
|
||||
if (pwg->custom_max_keyword)
|
||||
_cupsStrFree(pwg->custom_max_keyword);
|
||||
|
||||
if (pwg->custom_min_keyword)
|
||||
_cupsStrFree(pwg->custom_min_keyword);
|
||||
|
||||
free(pwg);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_pwgWriteFile()' - Write PWG mapping data to a file.
|
||||
*/
|
||||
|
||||
int /* O - 1 on success, 0 on failure */
|
||||
_pwgWriteFile(_pwg_t *pwg, /* I - PWG mapping data */
|
||||
const char *filename) /* I - File to write */
|
||||
{
|
||||
int i; /* Looping var */
|
||||
cups_file_t *fp; /* Output file */
|
||||
_pwg_size_t *size; /* Current size */
|
||||
_pwg_map_t *map; /* Current map */
|
||||
|
||||
|
||||
/*
|
||||
* Range check input...
|
||||
*/
|
||||
|
||||
if (!pwg || !filename)
|
||||
{
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, strerror(EINVAL), 0);
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* Open the file and write with compression...
|
||||
*/
|
||||
|
||||
if ((fp = cupsFileOpen(filename, "w9")) == NULL)
|
||||
{
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, strerror(errno), 0);
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* Standard header...
|
||||
*/
|
||||
|
||||
cupsFilePuts(fp, "#CUPS-PWGPPD\n");
|
||||
|
||||
/*
|
||||
* Output bins...
|
||||
*/
|
||||
|
||||
if (pwg->num_bins > 0)
|
||||
{
|
||||
cupsFilePrintf(fp, "NumBins %d\n", pwg->num_bins);
|
||||
for (i = pwg->num_bins, map = pwg->bins; i > 0; i --, map ++)
|
||||
cupsFilePrintf(fp, "Bin %s %s\n", map->pwg, map->ppd);
|
||||
}
|
||||
|
||||
/*
|
||||
* Media sizes...
|
||||
*/
|
||||
|
||||
cupsFilePrintf(fp, "NumSizes %d\n", pwg->num_sizes);
|
||||
for (i = pwg->num_sizes, size = pwg->sizes; i > 0; i --, size ++)
|
||||
cupsFilePrintf(fp, "Size %s %s %d %d %d %d %d %d\n", size->map.pwg,
|
||||
size->map.ppd, size->width, size->length, size->left,
|
||||
size->bottom, size->right, size->top);
|
||||
if (pwg->custom_max_width > 0)
|
||||
cupsFilePrintf(fp, "CustomSize %d %d %d %d %d %d %d %d\n",
|
||||
pwg->custom_max_width, pwg->custom_max_length,
|
||||
pwg->custom_min_width, pwg->custom_min_length,
|
||||
pwg->custom_size.left, pwg->custom_size.bottom,
|
||||
pwg->custom_size.right, pwg->custom_size.top);
|
||||
|
||||
/*
|
||||
* Media sources...
|
||||
*/
|
||||
|
||||
if (pwg->num_sources > 0)
|
||||
{
|
||||
cupsFilePrintf(fp, "NumSources %d\n", pwg->num_sources);
|
||||
for (i = pwg->num_sources, map = pwg->sources; i > 0; i --, map ++)
|
||||
cupsFilePrintf(fp, "Source %s %s\n", map->pwg, map->ppd);
|
||||
}
|
||||
|
||||
/*
|
||||
* Media types...
|
||||
*/
|
||||
|
||||
if (pwg->num_types > 0)
|
||||
{
|
||||
cupsFilePrintf(fp, "NumTypes %d\n", pwg->num_types);
|
||||
for (i = pwg->num_types, map = pwg->types; i > 0; i --, map ++)
|
||||
cupsFilePrintf(fp, "Type %s %s\n", map->pwg, map->ppd);
|
||||
}
|
||||
|
||||
/*
|
||||
* Close and return...
|
||||
*/
|
||||
|
||||
return (!cupsFileClose(fp));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* End of "$Id$".
|
||||
*/
|
||||
@@ -0,0 +1,686 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* PWG media name API implementation for CUPS.
|
||||
*
|
||||
* Copyright 2009-2010 by Apple Inc.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
* property of Apple Inc. and are protected by Federal copyright
|
||||
* law. Distribution and use rights are outlined in the file "LICENSE.txt"
|
||||
* which should have been included with this file. If this file is
|
||||
* file is missing or damaged, see the license at "http://www.cups.org/".
|
||||
*
|
||||
* This file is subject to the Apple OS-Developed Software exception.
|
||||
*
|
||||
* Contents:
|
||||
*
|
||||
* _pwgGenerateSize() - Generate a PWG size keyword.
|
||||
* _pwgInitSize() - Initialize a PWG size using IPP job template
|
||||
* attributes.
|
||||
* _pwgMediaForLegacy() - Find a PWG media size by ISO/IPP legacy name.
|
||||
* _pwgMediaForPPD() - Find a PWG media size by Adobe PPD name.
|
||||
* _pwgMediaForPWG() - Find a PWG media size by 5101.1 self-describing
|
||||
* name.
|
||||
* _pwgMediaForSize() - Get the PWG media name for a given size.
|
||||
* pwg_compare_legacy() - Compare two sizes using the legacy names.
|
||||
* pwg_compare_ppd() - Compare two sizes using the PPD names.
|
||||
* pwg_compare_pwg() - Compare two sizes using the PWG names.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Include necessary headers...
|
||||
*/
|
||||
|
||||
#include "globals.h"
|
||||
#include "debug.h"
|
||||
#include <math.h>
|
||||
|
||||
|
||||
/*
|
||||
* Local macros...
|
||||
*/
|
||||
|
||||
#define _PWG_MEDIA_IN(p,l,a,x,y) {p, l, a, (int)(x * 2540), (int)(y * 2540)}
|
||||
#define _PWG_MEDIA_MM(p,l,a,x,y) {p, l, a, (int)(x * 100), (int)(y * 100)}
|
||||
|
||||
|
||||
/*
|
||||
* Local functions...
|
||||
*/
|
||||
|
||||
static int pwg_compare_legacy(_pwg_media_t *a, _pwg_media_t *b);
|
||||
static int pwg_compare_pwg(_pwg_media_t *a, _pwg_media_t *b);
|
||||
static int pwg_compare_ppd(_pwg_media_t *a, _pwg_media_t *b);
|
||||
|
||||
|
||||
/*
|
||||
* Local globals...
|
||||
*/
|
||||
|
||||
static _pwg_media_t const cups_pwg_media[] =
|
||||
{ /* Media size lookup table */
|
||||
/* North American Standard Sheet Media Sizes */
|
||||
_PWG_MEDIA_IN("na_index-3x5_3x5in", NULL, NULL, 3, 5),
|
||||
_PWG_MEDIA_IN("na_personal_3.625x6.5in", NULL, "EnvPersonal", 3.625, 6.5),
|
||||
_PWG_MEDIA_IN("na_monarch_3.875x7.5in", "monarch-envelope", "EnvMonarch", 3.875, 7.5),
|
||||
_PWG_MEDIA_IN("na_number-9_3.875x8.875in", "na-number-9-envelope", "Env9", 3.875, 8.875),
|
||||
_PWG_MEDIA_IN("na_index-4x6_4x6in", NULL, NULL, 4, 6),
|
||||
_PWG_MEDIA_IN("na_number-10_4.125x9.5in", "na-number-10-envelope", "Env10", 4.125, 9.5),
|
||||
_PWG_MEDIA_IN("na_a2_4.375x5.75in", NULL, NULL, 4.375, 5.75),
|
||||
_PWG_MEDIA_IN("na_number-11_4.5x10.375in", NULL, "Env11", 4.5, 10.375),
|
||||
_PWG_MEDIA_IN("na_number-12_4.75x11in", NULL, "Env12", 4.75, 11),
|
||||
_PWG_MEDIA_IN("na_5x7_5x7in", NULL, NULL, 5, 7),
|
||||
_PWG_MEDIA_IN("na_index-5x8_5x8in", NULL, NULL, 5, 8),
|
||||
_PWG_MEDIA_IN("na_number-14_5x11.5in", NULL, "Env14", 5, 11.5),
|
||||
_PWG_MEDIA_IN("na_invoice_5.5x8.5in", "invoice", "Statement", 5.5, 8.5),
|
||||
_PWG_MEDIA_IN("na_index-4x6-ext_6x8in", NULL, NULL, 6, 8),
|
||||
_PWG_MEDIA_IN("na_6x9_6x9in", "na-6x9-envelope", NULL, 6, 9),
|
||||
_PWG_MEDIA_IN("na_c5_6.5x9.5in", NULL, NULL, 6.5, 9.5),
|
||||
_PWG_MEDIA_IN("na_7x9_7x9in", "na-7x9-envelope", "7x9", 7, 9),
|
||||
_PWG_MEDIA_IN("na_executive_7.25x10.5in", "executive", "Executive", 7.25, 10.5),
|
||||
_PWG_MEDIA_IN("na_govt-letter_8x10in", "na-8x10", "8x10", 8, 10),
|
||||
_PWG_MEDIA_IN("na_govt-legal_8x13in", NULL, NULL, 8, 13),
|
||||
_PWG_MEDIA_IN("na_quarto_8.5x10.83in", "quarto", "Quarto", 8.5, 10.83),
|
||||
_PWG_MEDIA_IN("na_letter_8.5x11in", "na-letter", "Letter", 8.5, 11),
|
||||
_PWG_MEDIA_IN("na_fanfold-eur_8.5x12in", NULL, "FanFoldGerman", 8.5, 12),
|
||||
_PWG_MEDIA_IN("na_letter-plus_8.5x12.69in", NULL, "LetterPlus", 8.5, 12.69),
|
||||
_PWG_MEDIA_IN("na_foolscap_8.5x13in", NULL, "FanFoldGermanLegal", 8.5, 13),
|
||||
_PWG_MEDIA_IN("na_legal_8.5x14in", "na-legal", "Legal", 8.5, 14),
|
||||
_PWG_MEDIA_IN("na_super-a_8.94x14in", NULL, "SuperA", 8.94, 14),
|
||||
_PWG_MEDIA_IN("na_9x11_9x11in", "na-9x11-envelope", "9x11", 9, 11),
|
||||
_PWG_MEDIA_IN("na_arch-a_9x12in", "arch-a", "ARCHA", 9, 12),
|
||||
_PWG_MEDIA_IN("na_letter-extra_9.5x12in", NULL, "LetterExtra", 9.5, 12),
|
||||
_PWG_MEDIA_IN("na_legal-extra_9.5x15in", NULL, "LegalExtra", 9.5, 15),
|
||||
_PWG_MEDIA_IN("na_10x11_10x11in", NULL, "10x11", 10, 11),
|
||||
_PWG_MEDIA_IN("na_10x13_10x13in", "na-10x13-envelope", "10x13", 10, 13),
|
||||
_PWG_MEDIA_IN("na_10x14_10x14in", "na-10x14-envelope", "10x14", 10, 14),
|
||||
_PWG_MEDIA_IN("na_10x15_10x15in", "na-10x15-envelope", NULL, 10, 15),
|
||||
_PWG_MEDIA_IN("na_11x12_11x12in", NULL, NULL, 11, 12),
|
||||
_PWG_MEDIA_IN("na_edp_11x14in", NULL, NULL, 11, 14),
|
||||
_PWG_MEDIA_IN("na_fanfold-us_11x14.875in", NULL, NULL, 11, 14.875),
|
||||
_PWG_MEDIA_IN("na_11x15_11x15in", NULL, NULL, 11, 15),
|
||||
_PWG_MEDIA_IN("na_ledger_11x17in", "tabloid", "Tabloid", 11, 17),
|
||||
_PWG_MEDIA_IN("na_eur-edp_12x14in", NULL, NULL, 12, 14),
|
||||
_PWG_MEDIA_IN("na_arch-b_12x18in", "arch-b", "ARCHB", 12, 18),
|
||||
_PWG_MEDIA_IN("na_12x19_12x19in", NULL, NULL, 12, 19),
|
||||
_PWG_MEDIA_IN("na_b-plus_12x19.17in", NULL, "SuperB", 12, 19.17),
|
||||
_PWG_MEDIA_IN("na_super-b_13x19in", "super-b", NULL, 13, 19),
|
||||
_PWG_MEDIA_IN("na_c_17x22in", "c", "AnsiC", 17, 22),
|
||||
_PWG_MEDIA_IN("na_arch-c_18x24in", "arch-c", "ARCHC", 18, 24),
|
||||
_PWG_MEDIA_IN("na_d_22x34in", "d", "AnsiD", 22, 34),
|
||||
_PWG_MEDIA_IN("na_arch-d_24x36in", "arch-d", "ARCHD", 24, 36),
|
||||
_PWG_MEDIA_IN("asme_f_28x40in", "f", NULL, 28, 40),
|
||||
_PWG_MEDIA_IN("na_wide-format_30x42in", NULL, NULL, 30, 42),
|
||||
_PWG_MEDIA_IN("na_e_34x44in", "e", "AnsiE", 34, 44),
|
||||
_PWG_MEDIA_IN("na_arch-e_36x48in", "arch-e", "ARCHE", 36, 48),
|
||||
_PWG_MEDIA_IN("na_f_44x68in", NULL, NULL, 44, 68),
|
||||
|
||||
/* Chinese Standard Sheet Media Inch Sizes */
|
||||
_PWG_MEDIA_IN("roc_16k_7.75x10.75in", NULL, NULL, 7.75, 10.75),
|
||||
_PWG_MEDIA_IN("roc_8k_10.75x15.5in", NULL, NULL, 10.75, 15.5),
|
||||
|
||||
/* ISO Standard Sheet Media Sizes */
|
||||
_PWG_MEDIA_MM("iso_a10_26x37mm", "iso-a10", "A10", 26, 37),
|
||||
_PWG_MEDIA_MM("iso_a9_37x52mm", "iso-a9", "A9", 37, 52),
|
||||
_PWG_MEDIA_MM("iso_a8_52x74mm", "iso-a8", "A8", 52, 74),
|
||||
_PWG_MEDIA_MM("iso_a7_74x105mm", "iso-a7", "A7", 74, 105),
|
||||
_PWG_MEDIA_MM("iso_a6_105x148mm", "iso-a6", "A6", 105, 148),
|
||||
_PWG_MEDIA_MM("iso_a5_148x210mm", "iso-a5", "A5", 148, 210),
|
||||
_PWG_MEDIA_MM("iso_a5-extra_174x235mm", NULL, "A5Extra", 174, 235),
|
||||
_PWG_MEDIA_MM("iso_a4_210x297mm", "iso-a4", "A4", 210, 297),
|
||||
_PWG_MEDIA_MM("iso_a4-tab_225x297mm", NULL, NULL, 225, 297),
|
||||
_PWG_MEDIA_MM("iso_a4-extra_235.5x322.3mm", NULL, "A4Extra", 235.5, 322.3),
|
||||
_PWG_MEDIA_MM("iso_a3_297x420mm", "iso-a3", "A3", 297, 420),
|
||||
_PWG_MEDIA_MM("iso_a4x3_297x630mm", "iso-a4x3", NULL, 297, 630),
|
||||
_PWG_MEDIA_MM("iso_a4x4_297x841mm", "iso-a4x4", NULL, 297, 841),
|
||||
_PWG_MEDIA_MM("iso_a4x5_297x1051mm", "iso-a4x5", NULL, 297, 1051),
|
||||
_PWG_MEDIA_MM("iso_a4x6_297x1261mm", "iso-a4x6", NULL, 297, 1261),
|
||||
_PWG_MEDIA_MM("iso_a4x7_297x1471mm", "iso-a4x7", NULL, 297, 1471),
|
||||
_PWG_MEDIA_MM("iso_a4x8_297x1682mm", "iso-a4x8", NULL, 297, 1682),
|
||||
_PWG_MEDIA_MM("iso_a4x9_297x1892mm", "iso-a4x9", NULL, 297, 1892),
|
||||
_PWG_MEDIA_MM("iso_a3-extra_322x445mm", "iso-a3-extra", "A3Extra", 322, 445),
|
||||
_PWG_MEDIA_MM("iso_a2_420x594mm", "iso-a2", "A2", 420, 594),
|
||||
_PWG_MEDIA_MM("iso_a3x3_420x891mm", "iso-a3x3", NULL, 420, 891),
|
||||
_PWG_MEDIA_MM("iso_a3x4_420x1189mm", "iso-a3x4", NULL, 420, 1189),
|
||||
_PWG_MEDIA_MM("iso_a3x5_420x1486mm", "iso-a3x5", NULL, 420, 1486),
|
||||
_PWG_MEDIA_MM("iso_a3x6_420x1783mm", "iso-a3x6", NULL, 420, 1783),
|
||||
_PWG_MEDIA_MM("iso_a3x7_420x2080mm", "iso-a3x7", NULL, 420, 2080),
|
||||
_PWG_MEDIA_MM("iso_a1_594x841mm", "iso-a1", "A1", 594, 841),
|
||||
_PWG_MEDIA_MM("iso_a2x3_594x1261mm", "iso-a2x3", NULL, 594, 1261),
|
||||
_PWG_MEDIA_MM("iso_a2x4_594x1682mm", "iso-a2x4", NULL, 594, 1682),
|
||||
_PWG_MEDIA_MM("iso_a2x5_594x2102mm", "iso-a2x5", NULL, 594, 2102),
|
||||
_PWG_MEDIA_MM("iso_a0_841x1189mm", "iso-a0", "A0", 841, 1189),
|
||||
_PWG_MEDIA_MM("iso_a1x3_841x1783mm", "iso-a1x3", NULL, 841, 1783),
|
||||
_PWG_MEDIA_MM("iso_a1x4_841x2378mm", "iso-a1x4", NULL, 841, 2378),
|
||||
_PWG_MEDIA_MM("iso_2a0_1189x1682mm", NULL, NULL, 1189, 1682),
|
||||
_PWG_MEDIA_MM("iso_a0x3_1189x2523mm", NULL, NULL, 1189, 2523),
|
||||
_PWG_MEDIA_MM("iso_b10_31x44mm", "iso-b10", "ISOB10", 31, 44),
|
||||
_PWG_MEDIA_MM("iso_b9_44x62mm", "iso-b9", "ISOB9", 44, 62),
|
||||
_PWG_MEDIA_MM("iso_b8_62x88mm", "iso-b8", "ISOB8", 62, 88),
|
||||
_PWG_MEDIA_MM("iso_b7_88x125mm", "iso-b7", "ISOB7", 88, 125),
|
||||
_PWG_MEDIA_MM("iso_b6_125x176mm", "iso-b6", "ISOB6", 125, 176),
|
||||
_PWG_MEDIA_MM("iso_b6c4_125x324mm", NULL, NULL, 125, 324),
|
||||
_PWG_MEDIA_MM("iso_b5_176x250mm", "iso-b5", "ISOB5", 176, 250),
|
||||
_PWG_MEDIA_MM("iso_b5-extra_201x276mm", NULL, "ISOB5Extra", 201, 276),
|
||||
_PWG_MEDIA_MM("iso_b4_250x353mm", "iso-b4", "ISOB4", 250, 353),
|
||||
_PWG_MEDIA_MM("iso_b3_353x500mm", "iso-b3", "ISOB3", 353, 500),
|
||||
_PWG_MEDIA_MM("iso_b2_500x707mm", "iso-b2", "ISOB2", 500, 707),
|
||||
_PWG_MEDIA_MM("iso_b1_707x1000mm", "iso-b1", "ISOB1", 707, 1000),
|
||||
_PWG_MEDIA_MM("iso_b0_1000x1414mm", "iso-b0", "ISOB0", 1000, 1414),
|
||||
_PWG_MEDIA_MM("iso_c10_28x40mm", "iso-c10", NULL, 28, 40),
|
||||
_PWG_MEDIA_MM("iso_c9_40x57mm", "iso-c9", NULL, 40, 57),
|
||||
_PWG_MEDIA_MM("iso_c8_57x81mm", "iso-c8", NULL, 57, 81),
|
||||
_PWG_MEDIA_MM("iso_c7_81x114mm", "iso-c7", "EnvC7", 81, 114),
|
||||
_PWG_MEDIA_MM("iso_c7c6_81x162mm", NULL, NULL, 81, 162),
|
||||
_PWG_MEDIA_MM("iso_c6_114x162mm", "iso-c6", "EnvC6", 114, 162),
|
||||
_PWG_MEDIA_MM("iso_c6c5_114x229mm", NULL, "EnvC65", 114, 229),
|
||||
_PWG_MEDIA_MM("iso_c5_162x229mm", "iso-c5", "EnvC5", 162, 229),
|
||||
_PWG_MEDIA_MM("iso_c4_229x324mm", "iso-c4", "EnvC4", 229, 324),
|
||||
_PWG_MEDIA_MM("iso_c3_324x458mm", "iso-c3", "EnvC3", 324, 458),
|
||||
_PWG_MEDIA_MM("iso_c2_458x648mm", "iso-c2", "EnvC2", 458, 648),
|
||||
_PWG_MEDIA_MM("iso_c1_648x917mm", "iso-c1", "EnvC1", 648, 917),
|
||||
_PWG_MEDIA_MM("iso_c0_917x1297mm", "iso-c0", "EnvC0", 917, 1297),
|
||||
_PWG_MEDIA_MM("iso_dl_110x220mm", "iso-designated", "EnvDL", 110, 220),
|
||||
_PWG_MEDIA_MM("iso_ra2_430x610mm", "iso-ra2", NULL, 430, 610),
|
||||
_PWG_MEDIA_MM("iso_sra2_450x640mm", "iso-sra2", NULL, 450, 640),
|
||||
_PWG_MEDIA_MM("iso_ra1_610x860mm", "iso-ra1", NULL, 610, 860),
|
||||
_PWG_MEDIA_MM("iso_sra1_640x900mm", "iso-sra1", NULL, 640, 900),
|
||||
_PWG_MEDIA_MM("iso_ra0_860x1220mm", "iso-ra0", NULL, 860, 1220),
|
||||
_PWG_MEDIA_MM("iso_sra0_900x1280mm", "iso-sra0", NULL, 900, 1280),
|
||||
|
||||
/* Japanese Standard Sheet Media Sizes */
|
||||
_PWG_MEDIA_MM("jis_b10_32x45mm", "jis-b10", "B10", 32, 45),
|
||||
_PWG_MEDIA_MM("jis_b9_45x64mm", "jis-b9", "B9", 45, 64),
|
||||
_PWG_MEDIA_MM("jis_b8_64x91mm", "jis-b8", "B8", 64, 91),
|
||||
_PWG_MEDIA_MM("jis_b7_91x128mm", "jis-b7", "B7", 91, 128),
|
||||
_PWG_MEDIA_MM("jis_b6_128x182mm", "jis-b6", "B6", 128, 182),
|
||||
_PWG_MEDIA_MM("jis_b5_182x257mm", "jis-b5", "B5", 182, 257),
|
||||
_PWG_MEDIA_MM("jis_b4_257x364mm", "jis-b4", "B4", 257, 364),
|
||||
_PWG_MEDIA_MM("jis_b3_364x515mm", "jis-b3", "B3", 364, 515),
|
||||
_PWG_MEDIA_MM("jis_b2_515x728mm", "jis-b2", "B2", 515, 728),
|
||||
_PWG_MEDIA_MM("jis_b1_728x1030mm", "jis-b1", "B1", 728, 1030),
|
||||
_PWG_MEDIA_MM("jis_b0_1030x1456mm", "jis-b0", "B0", 1030, 1456),
|
||||
_PWG_MEDIA_MM("jis_exec_216x330mm", NULL, NULL, 216, 330),
|
||||
_PWG_MEDIA_MM("jpn_chou4_90x205mm", NULL, "EnvChou4", 90, 205),
|
||||
_PWG_MEDIA_MM("jpn_hagaki_100x148mm", NULL, "Postcard", 100, 148),
|
||||
_PWG_MEDIA_MM("jpn_you4_105x235mm", NULL, "EnvYou4", 105, 235),
|
||||
_PWG_MEDIA_MM("jpn_chou2_111.1x146mm", NULL, NULL, 111.1, 146),
|
||||
_PWG_MEDIA_MM("jpn_chou3_120x235mm", NULL, "EnvChou3", 120, 235),
|
||||
_PWG_MEDIA_MM("jpn_oufuku_148x200mm", NULL, "DoublePostcardRotated", 148, 200),
|
||||
_PWG_MEDIA_MM("jpn_kahu_240x322.1mm", NULL, NULL, 240, 322.1),
|
||||
_PWG_MEDIA_MM("jpn_kaku2_240x332mm", NULL, "EnvKaku2", 240, 332),
|
||||
|
||||
/* Chinese Standard Sheet Media Sizes */
|
||||
_PWG_MEDIA_MM("prc_32k_97x151mm", NULL, "PRC32K", 97, 151),
|
||||
_PWG_MEDIA_MM("prc_1_102x165mm", NULL, "EnvPRC1", 102, 165),
|
||||
_PWG_MEDIA_MM("prc_2_102x176mm", NULL, "EnvPRC2", 102, 176),
|
||||
_PWG_MEDIA_MM("prc_4_110x208mm", NULL, "EnvPRC4", 110, 208),
|
||||
_PWG_MEDIA_MM("prc_5_110x220mm", NULL, "EnvPRC5", 110, 220),
|
||||
_PWG_MEDIA_MM("prc_8_120x309mm", NULL, "EnvPRC8", 120, 309),
|
||||
_PWG_MEDIA_MM("prc_6_120x320mm", NULL, NULL, 120, 320),
|
||||
_PWG_MEDIA_MM("prc_3_125x176mm", NULL, "EnvPRC3", 125, 176),
|
||||
_PWG_MEDIA_MM("prc_16k_146x215mm", NULL, "PRC16K", 146, 215),
|
||||
_PWG_MEDIA_MM("prc_7_160x230mm", NULL, "EnvPRC7", 160, 230),
|
||||
_PWG_MEDIA_MM("om_juuro-ku-kai_198x275mm", NULL, NULL, 198, 275),
|
||||
_PWG_MEDIA_MM("om_pa-kai_267x389mm", NULL, NULL, 267, 389),
|
||||
_PWG_MEDIA_MM("om_dai-pa-kai_275x395mm", NULL, NULL, 275, 395),
|
||||
_PWG_MEDIA_MM("prc_10_324x458mm", NULL, "EnvPRC10", 324, 458),
|
||||
|
||||
/* Other Metric Standard Sheet Media Sizes */
|
||||
_PWG_MEDIA_MM("om_small-photo_100x150mm", NULL, NULL, 100, 150),
|
||||
_PWG_MEDIA_MM("om_italian_110x230mm", NULL, "EnvItalian", 110, 230),
|
||||
_PWG_MEDIA_MM("om_postfix_114x229mm", NULL, NULL, 114, 229),
|
||||
_PWG_MEDIA_MM("om_large-photo_200x300", NULL, NULL, 200, 300),
|
||||
_PWG_MEDIA_MM("om_folio_210x330mm", "folio", "Folio", 210, 330),
|
||||
_PWG_MEDIA_MM("om_folio-sp_215x315mm", NULL, NULL, 215, 315),
|
||||
_PWG_MEDIA_MM("om_invite_220x220mm", NULL, "EnvInvite", 220, 220)
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
* '_pwgGenerateSize()' - Generate a PWG size keyword.
|
||||
*/
|
||||
|
||||
void
|
||||
_pwgGenerateSize(char *keyword, /* I - Keyword buffer */
|
||||
size_t keysize, /* I - Size of keyword buffer */
|
||||
const char *prefix, /* I - Prefix for PWG size or NULL */
|
||||
const char *name, /* I - Size name or NULL */
|
||||
int width, /* I - Width of page in 2540ths */
|
||||
int length) /* I - Length of page in 2540ths */
|
||||
{
|
||||
struct lconv *loc; /* Locale conversion data */
|
||||
double uwidth, /* Width in inches or millimeters */
|
||||
ulength; /* Height in inches or millimeters */
|
||||
const char *units; /* Units to report */
|
||||
char usize[12 + 1 + 12 + 3], /* Unit size: NNNNNNNNNNNNxNNNNNNNNNNNNuu */
|
||||
*uptr; /* Pointer into unit size */
|
||||
|
||||
|
||||
loc = localeconv();
|
||||
|
||||
if ((width % 635) == 0 && (length % 635) == 0)
|
||||
{
|
||||
/*
|
||||
* Use inches since the size is a multiple of 1/4 inch.
|
||||
*/
|
||||
|
||||
uwidth = width / 2540.0;
|
||||
ulength = length / 2540.0;
|
||||
units = "in";
|
||||
|
||||
if (!prefix)
|
||||
prefix = "oe";
|
||||
}
|
||||
else
|
||||
{
|
||||
/*
|
||||
* Use millimeters since the size is not a multiple of 1/4 inch.
|
||||
*/
|
||||
|
||||
uwidth = width * 0.01;
|
||||
ulength = length * 0.01;
|
||||
units = "mm";
|
||||
|
||||
if (!prefix)
|
||||
prefix = "om";
|
||||
}
|
||||
|
||||
uptr = usize;
|
||||
_cupsStrFormatd(uptr, uptr + 12, uwidth, loc);
|
||||
uptr += strlen(uptr);
|
||||
*uptr++ = 'x';
|
||||
_cupsStrFormatd(uptr, uptr + 12, ulength, loc);
|
||||
uptr += strlen(uptr);
|
||||
|
||||
/*
|
||||
* Safe because usize can hold up to 12 + 1 + 12 + 4 bytes.
|
||||
*/
|
||||
|
||||
strcpy(uptr, units);
|
||||
|
||||
if (!name)
|
||||
name = usize;
|
||||
|
||||
/*
|
||||
* Format the name...
|
||||
*/
|
||||
|
||||
snprintf(keyword, keysize, "%s_%s_%s", prefix, name, usize);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_pwgInitSize()' - Initialize a PWG size using IPP job template attributes.
|
||||
*/
|
||||
|
||||
int /* O - 1 if size was initialize, 0 otherwise */
|
||||
_pwgInitSize(_pwg_size_t *size, /* I - Size to initialize */
|
||||
ipp_t *job, /* I - Job template attributes */
|
||||
int *margins_set) /* O - 1 if margins were set, 0 otherwise */
|
||||
{
|
||||
ipp_attribute_t *media, /* media attribute */
|
||||
*media_bottom_margin, /* media-bottom-margin member attribute */
|
||||
*media_col, /* media-col attribute */
|
||||
*media_left_margin, /* media-left-margin member attribute */
|
||||
*media_right_margin, /* media-right-margin member attribute */
|
||||
*media_size, /* media-size member attribute */
|
||||
*media_top_margin, /* media-top-margin member attribute */
|
||||
*x_dimension, /* x-dimension member attribute */
|
||||
*y_dimension; /* y-dimension member attribute */
|
||||
_pwg_media_t *pwg; /* PWG media value */
|
||||
|
||||
|
||||
/*
|
||||
* Range check input...
|
||||
*/
|
||||
|
||||
if (!size || !job || !margins_set)
|
||||
return (0);
|
||||
|
||||
/*
|
||||
* Look for media-col and then media...
|
||||
*/
|
||||
|
||||
memset(size, 0, sizeof(_pwg_size_t));
|
||||
*margins_set = 0;
|
||||
|
||||
if ((media_col = ippFindAttribute(job, "media-col",
|
||||
IPP_TAG_BEGIN_COLLECTION)) != NULL)
|
||||
{
|
||||
/*
|
||||
* Got media-col, look for media-size member attribute...
|
||||
*/
|
||||
|
||||
if ((media_size = ippFindAttribute(media_col->values[0].collection,
|
||||
"media-size",
|
||||
IPP_TAG_BEGIN_COLLECTION)) != NULL)
|
||||
{
|
||||
/*
|
||||
* Got media-size, look for x-dimension and y-dimension member
|
||||
* attributes...
|
||||
*/
|
||||
|
||||
x_dimension = ippFindAttribute(media_size->values[0].collection,
|
||||
"x-dimension", IPP_TAG_INTEGER);
|
||||
y_dimension = ippFindAttribute(media_size->values[0].collection,
|
||||
"y-dimension", IPP_TAG_INTEGER);
|
||||
|
||||
if (x_dimension && y_dimension)
|
||||
{
|
||||
size->width = x_dimension->values[0].integer;
|
||||
size->length = y_dimension->values[0].integer;
|
||||
}
|
||||
else if (!x_dimension)
|
||||
{
|
||||
_cupsSetError(IPP_INTERNAL_ERROR,
|
||||
_("Missing x-dimension in media-size."), 1);
|
||||
return (0);
|
||||
}
|
||||
else if (!y_dimension)
|
||||
{
|
||||
_cupsSetError(IPP_INTERNAL_ERROR,
|
||||
_("Missing y-dimension in media-size."), 1);
|
||||
return (0);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Missing media-size in media-col."),
|
||||
1);
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* media-*-margin */
|
||||
media_bottom_margin = ippFindAttribute(media_col->values[0].collection,
|
||||
"media-bottom-margin",
|
||||
IPP_TAG_INTEGER);
|
||||
media_left_margin = ippFindAttribute(media_col->values[0].collection,
|
||||
"media-left-margin",
|
||||
IPP_TAG_INTEGER);
|
||||
media_right_margin = ippFindAttribute(media_col->values[0].collection,
|
||||
"media-right-margin",
|
||||
IPP_TAG_INTEGER);
|
||||
media_top_margin = ippFindAttribute(media_col->values[0].collection,
|
||||
"media-top-margin",
|
||||
IPP_TAG_INTEGER);
|
||||
if (media_bottom_margin && media_left_margin && media_right_margin &&
|
||||
media_top_margin)
|
||||
{
|
||||
*margins_set = 1;
|
||||
size->bottom = media_bottom_margin->values[0].integer;
|
||||
size->left = media_left_margin->values[0].integer;
|
||||
size->right = media_right_margin->values[0].integer;
|
||||
size->top = media_top_margin->values[0].integer;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if ((media = ippFindAttribute(job, "media", IPP_TAG_NAME)) == NULL)
|
||||
media = ippFindAttribute(job, "media", IPP_TAG_KEYWORD);
|
||||
|
||||
if (media)
|
||||
{
|
||||
if ((pwg = _pwgMediaForPWG(media->values[0].string.text)) == NULL)
|
||||
pwg = _pwgMediaForLegacy(media->values[0].string.text);
|
||||
|
||||
if (pwg)
|
||||
{
|
||||
size->width = pwg->width;
|
||||
size->length = pwg->length;
|
||||
}
|
||||
else
|
||||
{
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Unsupported media value."), 1);
|
||||
return (0);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
_cupsSetError(IPP_INTERNAL_ERROR, _("Missing media or media-col."), 1);
|
||||
return (0);
|
||||
}
|
||||
}
|
||||
|
||||
return (1);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_pwgMediaForLegacy()' - Find a PWG media size by ISO/IPP legacy name.
|
||||
*/
|
||||
|
||||
_pwg_media_t * /* O - Matching size or NULL */
|
||||
_pwgMediaForLegacy(
|
||||
const char *legacy) /* I - Legacy size name */
|
||||
{
|
||||
_pwg_media_t key; /* Search key */
|
||||
_cups_globals_t *cg = _cupsGlobals(); /* Global data */
|
||||
|
||||
|
||||
/*
|
||||
* Range check input...
|
||||
*/
|
||||
|
||||
if (!legacy)
|
||||
return (NULL);
|
||||
|
||||
/*
|
||||
* Build the lookup table for PWG names as needed...
|
||||
*/
|
||||
|
||||
if (!cg->leg_size_lut)
|
||||
{
|
||||
int i; /* Looping var */
|
||||
_pwg_media_t *size; /* Current size */
|
||||
|
||||
cg->leg_size_lut = cupsArrayNew((cups_array_func_t)pwg_compare_legacy,
|
||||
NULL);
|
||||
|
||||
for (i = (int)(sizeof(cups_pwg_media) / sizeof(cups_pwg_media[0])),
|
||||
size = (_pwg_media_t *)cups_pwg_media;
|
||||
i > 0;
|
||||
i --, size ++)
|
||||
if (size->legacy)
|
||||
cupsArrayAdd(cg->leg_size_lut, size);
|
||||
}
|
||||
|
||||
/*
|
||||
* Lookup the name...
|
||||
*/
|
||||
|
||||
key.legacy = legacy;
|
||||
return ((_pwg_media_t *)cupsArrayFind(cg->leg_size_lut, &key));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_pwgMediaForPPD()' - Find a PWG media size by Adobe PPD name.
|
||||
*/
|
||||
|
||||
_pwg_media_t * /* O - Matching size or NULL */
|
||||
_pwgMediaForPPD(const char *ppd) /* I - PPD size name */
|
||||
{
|
||||
_pwg_media_t key; /* Search key */
|
||||
_cups_globals_t *cg = _cupsGlobals(); /* Global data */
|
||||
|
||||
|
||||
/*
|
||||
* Range check input...
|
||||
*/
|
||||
|
||||
if (!ppd)
|
||||
return (NULL);
|
||||
|
||||
/*
|
||||
* Build the lookup table for PWG names as needed...
|
||||
*/
|
||||
|
||||
if (!cg->ppd_size_lut)
|
||||
{
|
||||
int i; /* Looping var */
|
||||
_pwg_media_t *size; /* Current size */
|
||||
|
||||
cg->ppd_size_lut = cupsArrayNew((cups_array_func_t)pwg_compare_ppd, NULL);
|
||||
|
||||
for (i = (int)(sizeof(cups_pwg_media) / sizeof(cups_pwg_media[0])),
|
||||
size = (_pwg_media_t *)cups_pwg_media;
|
||||
i > 0;
|
||||
i --, size ++)
|
||||
if (size->ppd)
|
||||
cupsArrayAdd(cg->ppd_size_lut, size);
|
||||
}
|
||||
|
||||
/*
|
||||
* Lookup the name...
|
||||
*/
|
||||
|
||||
key.ppd = ppd;
|
||||
return ((_pwg_media_t *)cupsArrayFind(cg->ppd_size_lut, &key));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_pwgMediaForPWG()' - Find a PWG media size by 5101.1 self-describing name.
|
||||
*/
|
||||
|
||||
_pwg_media_t * /* O - Matching size or NULL */
|
||||
_pwgMediaForPWG(const char *pwg) /* I - PWG size name */
|
||||
{
|
||||
_pwg_media_t key; /* Search key */
|
||||
_cups_globals_t *cg = _cupsGlobals(); /* Global data */
|
||||
|
||||
|
||||
/*
|
||||
* Range check input...
|
||||
*/
|
||||
|
||||
if (!pwg)
|
||||
return (NULL);
|
||||
|
||||
/*
|
||||
* Build the lookup table for PWG names as needed...
|
||||
*/
|
||||
|
||||
if (!cg->pwg_size_lut)
|
||||
{
|
||||
int i; /* Looping var */
|
||||
_pwg_media_t *size; /* Current size */
|
||||
|
||||
cg->pwg_size_lut = cupsArrayNew((cups_array_func_t)pwg_compare_pwg, NULL);
|
||||
|
||||
for (i = (int)(sizeof(cups_pwg_media) / sizeof(cups_pwg_media[0])),
|
||||
size = (_pwg_media_t *)cups_pwg_media;
|
||||
i > 0;
|
||||
i --, size ++)
|
||||
cupsArrayAdd(cg->pwg_size_lut, size);
|
||||
}
|
||||
|
||||
/*
|
||||
* Lookup the name...
|
||||
*/
|
||||
|
||||
key.pwg = pwg;
|
||||
return ((_pwg_media_t *)cupsArrayFind(cg->pwg_size_lut, &key));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_pwgMediaForSize()' - Get the PWG media name for a given size.
|
||||
*/
|
||||
|
||||
_pwg_media_t * /* O - PWG media name */
|
||||
_pwgMediaForSize(int width, /* I - Width in 2540ths */
|
||||
int length) /* I - Length in 2540ths */
|
||||
{
|
||||
int i; /* Looping var */
|
||||
_pwg_media_t *media; /* Current media */
|
||||
int dw, dl; /* Difference in width and length */
|
||||
_cups_globals_t *cg = _cupsGlobals(); /* Global data */
|
||||
|
||||
|
||||
/*
|
||||
* Range check input...
|
||||
*/
|
||||
|
||||
if (width <= 0 || length <= 0)
|
||||
return (NULL);
|
||||
|
||||
/*
|
||||
* Look for a standard size...
|
||||
*/
|
||||
|
||||
for (i = (int)(sizeof(cups_pwg_media) / sizeof(cups_pwg_media[0])),
|
||||
media = (_pwg_media_t *)cups_pwg_media;
|
||||
i > 0;
|
||||
i --, media ++)
|
||||
{
|
||||
/*
|
||||
* Adobe uses a size matching algorithm with an epsilon of 5 points, which
|
||||
* is just about 176/2540ths...
|
||||
*/
|
||||
|
||||
dw = media->width - width;
|
||||
dl = media->length - length;
|
||||
|
||||
if (dw > -176 && dw < 176 && dl > -176 && dl < 176)
|
||||
return (media);
|
||||
}
|
||||
|
||||
/*
|
||||
* Not a standard size; convert it to a PWG custom name of the form:
|
||||
*
|
||||
* custom_WIDTHxHEIGHTuu_WIDTHxHEIGHTuu
|
||||
*/
|
||||
|
||||
_pwgGenerateSize(cg->pwg_name, sizeof(cg->pwg_name), "custom", NULL, width,
|
||||
length);
|
||||
|
||||
cg->pwg_media.pwg = cg->pwg_name;
|
||||
cg->pwg_media.width = width;
|
||||
cg->pwg_media.length = length;
|
||||
|
||||
return (&(cg->pwg_media));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'pwg_compare_legacy()' - Compare two sizes using the legacy names.
|
||||
*/
|
||||
|
||||
static int /* O - Result of comparison */
|
||||
pwg_compare_legacy(_pwg_media_t *a, /* I - First size */
|
||||
_pwg_media_t *b) /* I - Second size */
|
||||
{
|
||||
return (strcmp(a->legacy, b->legacy));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'pwg_compare_ppd()' - Compare two sizes using the PPD names.
|
||||
*/
|
||||
|
||||
static int /* O - Result of comparison */
|
||||
pwg_compare_ppd(_pwg_media_t *a, /* I - First size */
|
||||
_pwg_media_t *b) /* I - Second size */
|
||||
{
|
||||
return (strcmp(a->ppd, b->ppd));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'pwg_compare_pwg()' - Compare two sizes using the PWG names.
|
||||
*/
|
||||
|
||||
static int /* O - Result of comparison */
|
||||
pwg_compare_pwg(_pwg_media_t *a, /* I - First size */
|
||||
_pwg_media_t *b) /* I - Second size */
|
||||
{
|
||||
return (strcmp(a->pwg, b->pwg));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* End of "$Id$".
|
||||
*/
|
||||
+1071
Diferenças do arquivo suprimidas por serem muito extensas
Carregar Diff
@@ -0,0 +1,143 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* Private PWG media API definitions for CUPS.
|
||||
*
|
||||
* Copyright 2009-2010 by Apple Inc.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
* property of Apple Inc. and are protected by Federal copyright
|
||||
* law. Distribution and use rights are outlined in the file "LICENSE.txt"
|
||||
* which should have been included with this file. If this file is
|
||||
* file is missing or damaged, see the license at "http://www.cups.org/".
|
||||
*
|
||||
* This file is subject to the Apple OS-Developed Software exception.
|
||||
*/
|
||||
|
||||
#ifndef _CUPS_PWG_PRIVATE_H_
|
||||
# define _CUPS_PWG_PRIVATE_H_
|
||||
|
||||
|
||||
/*
|
||||
* Include necessary headers...
|
||||
*/
|
||||
|
||||
# include <cups/cups.h>
|
||||
|
||||
|
||||
/*
|
||||
* C++ magic...
|
||||
*/
|
||||
|
||||
# ifdef __cplusplus
|
||||
extern "C" {
|
||||
# endif /* __cplusplus */
|
||||
|
||||
|
||||
/*
|
||||
* Macros...
|
||||
*/
|
||||
|
||||
/* Convert from points to 2540ths */
|
||||
# define _PWG_FROMPTS(n) (int)((n) * 2540 / 72)
|
||||
/* Convert from 2540ths to points */
|
||||
# define _PWG_TOPTS(n) ((n) * 72.0 / 2540.0)
|
||||
|
||||
|
||||
/*
|
||||
* Types and structures...
|
||||
*/
|
||||
|
||||
typedef struct _pwg_media_s /**** Common media size data ****/
|
||||
{
|
||||
const char *pwg, /* PWG 5101.1 "self describing" name */
|
||||
*legacy, /* IPP/ISO legacy name */
|
||||
*ppd; /* Standard Adobe PPD name */
|
||||
int width, /* Width in 2540ths */
|
||||
length; /* Length in 2540ths */
|
||||
} _pwg_media_t;
|
||||
|
||||
typedef struct _pwg_map_s /**** Map element - PPD to/from PWG */
|
||||
{
|
||||
char *pwg, /* PWG media keyword */
|
||||
*ppd; /* PPD option keyword */
|
||||
} _pwg_map_t;
|
||||
|
||||
typedef struct _pwg_size_s /**** Size element - PPD to/from PWG */
|
||||
{
|
||||
_pwg_map_t map; /* Map element */
|
||||
int width, /* Width in 2540ths */
|
||||
length, /* Length in 2540ths */
|
||||
left, /* Left margin in 2540ths */
|
||||
bottom, /* Bottom margin in 2540ths */
|
||||
right, /* Right margin in 2540ths */
|
||||
top; /* Top margin in 2540ths */
|
||||
} _pwg_size_t;
|
||||
|
||||
typedef struct _pwg_s /**** PWG-PPD conversion data ****/
|
||||
{
|
||||
int num_bins; /* Number of output bins */
|
||||
_pwg_map_t *bins; /* Output bins */
|
||||
int num_sizes; /* Number of media sizes */
|
||||
_pwg_size_t *sizes; /* Media sizes */
|
||||
int custom_max_width, /* Maximum custom width in 2540ths */
|
||||
custom_max_length, /* Maximum custom length in 2540ths */
|
||||
custom_min_width, /* Minimum custom width in 2540ths */
|
||||
custom_min_length; /* Minimum custom length in 2540ths */
|
||||
char *custom_max_keyword, /* Maximum custom size PWG keyword */
|
||||
*custom_min_keyword, /* Minimum custom size PWG keyword */
|
||||
custom_ppd_size[41]; /* Custom PPD size name */
|
||||
_pwg_size_t custom_size; /* Custom size record */
|
||||
int num_sources; /* Number of media sources */
|
||||
_pwg_map_t *sources; /* Media sources */
|
||||
int num_types; /* Number of media types */
|
||||
_pwg_map_t *types; /* Media types */
|
||||
} _pwg_t;
|
||||
|
||||
|
||||
/*
|
||||
* Functions...
|
||||
*/
|
||||
|
||||
extern _pwg_t *_pwgCreateWithFile(const char *filename);
|
||||
extern _pwg_t *_pwgCreateWithPPD(ppd_file_t *ppd);
|
||||
extern void _pwgDestroy(_pwg_t *pwg);
|
||||
extern void _pwgGenerateSize(char *keyword, size_t keysize,
|
||||
const char *prefix,
|
||||
const char *ppdname,
|
||||
int width, int length);
|
||||
extern const char *_pwgGetBin(_pwg_t *pwg, const char *output_bin);
|
||||
extern const char *_pwgGetInputSlot(_pwg_t *pwg, ipp_t *job,
|
||||
const char *keyword);
|
||||
extern const char *_pwgGetMediaType(_pwg_t *pwg, ipp_t *job,
|
||||
const char *keyword);
|
||||
extern const char *_pwgGetOutputBin(_pwg_t *pwg, const char *keyword);
|
||||
extern const char *_pwgGetPageSize(_pwg_t *pwg, ipp_t *job,
|
||||
const char *keyword, int *exact);
|
||||
extern _pwg_size_t *_pwgGetSize(_pwg_t *pwg, const char *page_size);
|
||||
extern const char *_pwgGetSource(_pwg_t *pwg, const char *input_slot);
|
||||
extern const char *_pwgGetType(_pwg_t *pwg, const char *media_type);
|
||||
extern int _pwgInitSize(_pwg_size_t *size, ipp_t *job,
|
||||
int *margins_set);
|
||||
extern const char *_pwgInputSlotForSource(const char *media_source,
|
||||
char *name, size_t namesize);
|
||||
extern _pwg_media_t *_pwgMediaForLegacy(const char *legacy);
|
||||
extern _pwg_media_t *_pwgMediaForPPD(const char *ppd);
|
||||
extern _pwg_media_t *_pwgMediaForPWG(const char *pwg);
|
||||
extern _pwg_media_t *_pwgMediaForSize(int width, int length);
|
||||
extern const char *_pwgMediaTypeForType(const char *media_source,
|
||||
char *name, size_t namesize);
|
||||
extern const char *_pwgPageSizeForMedia(_pwg_media_t *media,
|
||||
char *name, size_t namesize);
|
||||
extern int _pwgWriteFile(_pwg_t *pwg, const char *filename);
|
||||
|
||||
|
||||
# ifdef __cplusplus
|
||||
}
|
||||
# endif /* __cplusplus */
|
||||
|
||||
#endif /* !_CUPS_PWG_PRIVATE_H_ */
|
||||
|
||||
/*
|
||||
* End of "$Id$".
|
||||
*/
|
||||
@@ -1,376 +0,0 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* PWG media name API implementation for the Common UNIX Printing System
|
||||
* (CUPS).
|
||||
*
|
||||
* Copyright 2009 by Apple Inc.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
* property of Apple Inc. and are protected by Federal copyright
|
||||
* law. Distribution and use rights are outlined in the file "LICENSE.txt"
|
||||
* which should have been included with this file. If this file is
|
||||
* file is missing or damaged, see the license at "http://www.cups.org/".
|
||||
*
|
||||
* Contents:
|
||||
*
|
||||
* _cupsPWGMediaByLegacy() - Find a PWG media size by ISO/IPP legacy name.
|
||||
* _cupsPWGMediaByName() - Find a PWG media size by 5101.1 self-describing
|
||||
* name.
|
||||
* _cupsPWGMediaBySize() - Find a PWG media size by size in points.
|
||||
* compare_legacy() - Compare two sizes using the legacy names.
|
||||
* compare_pwg() - Compare two sizes using the PWG names.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Include necessary headers...
|
||||
*/
|
||||
|
||||
#include "pwgmedia.h"
|
||||
#include "globals.h"
|
||||
#include "string.h"
|
||||
#include "debug.h"
|
||||
#include <math.h>
|
||||
|
||||
|
||||
/*
|
||||
* Local macros...
|
||||
*/
|
||||
|
||||
#define _CUPS_SIZE_IN(p,l,x,y) {p, l, x * 72.0, y * 72.0}
|
||||
#define _CUPS_SIZE_MM(p,l,x,y) {p, l, x / 25.4 * 72.0, y / 25.4 * 72.0}
|
||||
|
||||
|
||||
/*
|
||||
* Local functions...
|
||||
*/
|
||||
|
||||
static int compare_legacy(_cups_pwg_media_t *a, _cups_pwg_media_t *b);
|
||||
static int compare_pwg(_cups_pwg_media_t *a, _cups_pwg_media_t *b);
|
||||
|
||||
|
||||
/*
|
||||
* Local globals...
|
||||
*/
|
||||
|
||||
static _cups_pwg_media_t const cups_pwg_media[] =
|
||||
{ /* Media size lookup table */
|
||||
/* North American Standard Sheet Media Sizes */
|
||||
_CUPS_SIZE_IN("na_index-3x5_3x5in", NULL, 3, 5),
|
||||
_CUPS_SIZE_IN("na_personal_3.625x6.5in", NULL, 3.625, 6.5),
|
||||
_CUPS_SIZE_IN("na_monarch_3.875x7.5in", "monarch-envelope", 3.875, 7.5),
|
||||
_CUPS_SIZE_IN("na_number-9_3.875x8.875in", "na-number-9-envelope", 3.875, 8.875),
|
||||
_CUPS_SIZE_IN("na_index-4x6_4x6in", NULL, 4, 6),
|
||||
_CUPS_SIZE_IN("na_number-10_4.125x9.5in", "na-number-10-envelope", 4.125, 9.5),
|
||||
_CUPS_SIZE_IN("na_a2_4.375x5.75in", NULL, 4.375, 5.75),
|
||||
_CUPS_SIZE_IN("na_number-11_4.5x10.375in", NULL, 4.5, 10.375),
|
||||
_CUPS_SIZE_IN("na_number-12_4.75x11in", NULL, 4.75, 11),
|
||||
_CUPS_SIZE_IN("na_5x7_5x7in", NULL, 5, 7),
|
||||
_CUPS_SIZE_IN("na_index-5x8_5x8in", NULL, 5, 8),
|
||||
_CUPS_SIZE_IN("na_number-14_5x11.5in", NULL, 5, 11.5),
|
||||
_CUPS_SIZE_IN("na_invoice_5.5x8.5in", "invoice", 5.5, 8.5),
|
||||
_CUPS_SIZE_IN("na_index-4x6-ext_6x8in", NULL, 6, 8),
|
||||
_CUPS_SIZE_IN("na_6x9_6x9in", "na-6x9-envelope", 6, 9),
|
||||
_CUPS_SIZE_IN("na_c5_6.5x9.5in", NULL, 6.5, 9.5),
|
||||
_CUPS_SIZE_IN("na_7x9_7x9in", "na-7x9-envelope", 7, 9),
|
||||
_CUPS_SIZE_IN("na_executive_7.25x10.5in", "executive", 7.25, 10.5),
|
||||
_CUPS_SIZE_IN("na_govt-letter_8x10in", "na-8x10", 8, 10),
|
||||
_CUPS_SIZE_IN("na_govt-legal_8x13in", NULL, 8, 13),
|
||||
_CUPS_SIZE_IN("na_quarto_8.5x10.83in", "quarto", 8.5, 10.83),
|
||||
_CUPS_SIZE_IN("na_letter_8.5x11in", "na-letter", 8.5, 11),
|
||||
_CUPS_SIZE_IN("na_fanfold-eur_8.5x12in", NULL, 8.5, 12),
|
||||
_CUPS_SIZE_IN("na_letter-plus_8.5x12.69in", NULL, 8.5, 12.69),
|
||||
_CUPS_SIZE_IN("na_foolscap_8.5x13in", NULL, 8.5, 13),
|
||||
_CUPS_SIZE_IN("na_legal_8.5x14in", "na-legal", 8.5, 14),
|
||||
_CUPS_SIZE_IN("na_super-a_8.94x14in", NULL, 8.94, 14),
|
||||
_CUPS_SIZE_IN("na_9x11_9x11in", "na-9x11-envelope", 9, 11),
|
||||
_CUPS_SIZE_IN("na_arch-a_9x12in", "arch-a", 9, 12),
|
||||
_CUPS_SIZE_IN("na_letter-extra_9.5x12in", NULL, 9.5, 12),
|
||||
_CUPS_SIZE_IN("na_legal-extra_9.5x15in", NULL, 9.5, 15),
|
||||
_CUPS_SIZE_IN("na_10x11_10x11in", NULL, 10, 11),
|
||||
_CUPS_SIZE_IN("na_10x13_10x13in", "na-10x13-envelope", 10, 13),
|
||||
_CUPS_SIZE_IN("na_10x14_10x14in", "na-10x14-envelope", 10, 14),
|
||||
_CUPS_SIZE_IN("na_10x15_10x15in", "na-10x15-envelope", 10, 15),
|
||||
_CUPS_SIZE_IN("na_11x12_11x12in", NULL, 11, 12),
|
||||
_CUPS_SIZE_IN("na_edp_11x14in", NULL, 11, 14),
|
||||
_CUPS_SIZE_IN("na_fanfold-us_11x14.875in", NULL, 11, 14.875),
|
||||
_CUPS_SIZE_IN("na_11x15_11x15in", NULL, 11, 15),
|
||||
_CUPS_SIZE_IN("na_ledger_11x17in", "tabloid", 11, 17),
|
||||
_CUPS_SIZE_IN("na_eur-edp_12x14in", NULL, 12, 14),
|
||||
_CUPS_SIZE_IN("na_arch-b_12x18in", "arch-b", 12, 18),
|
||||
_CUPS_SIZE_IN("na_12x19_12x19in", NULL, 12, 19),
|
||||
_CUPS_SIZE_IN("na_b-plus_12x19.17in", NULL, 12, 19.17),
|
||||
_CUPS_SIZE_IN("na_super-b_13x19in", NULL, 13, 19),
|
||||
_CUPS_SIZE_IN("na_c_17x22in", "c", 17, 22),
|
||||
_CUPS_SIZE_IN("na_arch-c_18x24in", "arch-c", 18, 24),
|
||||
_CUPS_SIZE_IN("na_d_22x34in", "d", 22, 34),
|
||||
_CUPS_SIZE_IN("na_arch-d_24x36in", "arch-d", 24, 36),
|
||||
_CUPS_SIZE_IN("asme_f_28x40in", "f", 28, 40),
|
||||
_CUPS_SIZE_IN("na_wide-format_30x42in", NULL, 30, 42),
|
||||
_CUPS_SIZE_IN("na_e_34x44in", "e", 34, 44),
|
||||
_CUPS_SIZE_IN("na_arch-e_36x48in", "arch-e", 36, 48),
|
||||
_CUPS_SIZE_IN("na_f_44x68in", NULL, 44, 68),
|
||||
|
||||
/* Chinese Standard Sheet Media Inch Sizes */
|
||||
_CUPS_SIZE_IN("roc_16k_7.75x10.75in", NULL, 7.75, 10.75),
|
||||
_CUPS_SIZE_IN("roc_8k_10.75x15.5in", NULL, 10.75, 15.5),
|
||||
|
||||
/* ISO Standard Sheet Media Sizes */
|
||||
_CUPS_SIZE_MM("iso_a10_26x37mm", "iso-a10", 26, 37),
|
||||
_CUPS_SIZE_MM("iso_a9_37x52mm", "iso-a9", 37, 52),
|
||||
_CUPS_SIZE_MM("iso_a8_52x74mm", "iso-a8", 52, 74),
|
||||
_CUPS_SIZE_MM("iso_a7_74x105mm", "iso-a7", 74, 105),
|
||||
_CUPS_SIZE_MM("iso_a6_105x148mm", "iso-a6", 105, 148),
|
||||
_CUPS_SIZE_MM("iso_a5_148x210mm", "iso-a5", 148, 210),
|
||||
_CUPS_SIZE_MM("iso_a5-extra_174x235mm", NULL, 174, 235),
|
||||
_CUPS_SIZE_MM("iso_a4_210x297mm", "iso-a4", 210, 297),
|
||||
_CUPS_SIZE_MM("iso_a4-tab_225x297mm", NULL, 225, 297),
|
||||
_CUPS_SIZE_MM("iso_a4-extra_235.5x322.3mm", NULL, 235.5, 322.3),
|
||||
_CUPS_SIZE_MM("iso_a3_297x420mm", "iso-a3", 297, 420),
|
||||
_CUPS_SIZE_MM("iso_a4x3_297x630mm", "iso-a4x3", 297, 630),
|
||||
_CUPS_SIZE_MM("iso_a4x4_297x841mm", "iso-a4x4", 297, 841),
|
||||
_CUPS_SIZE_MM("iso_a4x5_297x1051mm", "iso-a4x5", 297, 1051),
|
||||
_CUPS_SIZE_MM("iso_a4x6_297x1261mm", "iso-a4x6", 297, 1261),
|
||||
_CUPS_SIZE_MM("iso_a4x7_297x1471mm", "iso-a4x7", 297, 1471),
|
||||
_CUPS_SIZE_MM("iso_a4x8_297x1682mm", "iso-a4x8", 297, 1682),
|
||||
_CUPS_SIZE_MM("iso_a4x9_297x1892mm", "iso-a4x9", 297, 1892),
|
||||
_CUPS_SIZE_MM("iso_a3-extra_322x445mm", "iso-a3-extra", 322, 445),
|
||||
_CUPS_SIZE_MM("iso_a2_420x594mm", "iso-a2", 420, 594),
|
||||
_CUPS_SIZE_MM("iso_a3x3_420x891mm", "iso-a3x3", 420, 891),
|
||||
_CUPS_SIZE_MM("iso_a3x4_420x1189mm", "iso-a3x4", 420, 1189),
|
||||
_CUPS_SIZE_MM("iso_a3x5_420x1486mm", "iso-a3x5", 420, 1486),
|
||||
_CUPS_SIZE_MM("iso_a3x6_420x1783mm", "iso-a3x6", 420, 1783),
|
||||
_CUPS_SIZE_MM("iso_a3x7_420x2080mm", "iso-a3x7", 420, 2080),
|
||||
_CUPS_SIZE_MM("iso_a1_594x841mm", "iso-a1", 594, 841),
|
||||
_CUPS_SIZE_MM("iso_a2x3_594x1261mm", "iso-a2x3", 594, 1261),
|
||||
_CUPS_SIZE_MM("iso_a2x4_594x1682mm", "iso-a2x4", 594, 1682),
|
||||
_CUPS_SIZE_MM("iso_a2x5_594x2102mm", "iso-a2x5", 594, 2102),
|
||||
_CUPS_SIZE_MM("iso_a0_841x1189mm", "iso-a0", 841, 1189),
|
||||
_CUPS_SIZE_MM("iso_a1x3_841x1783mm", "iso-a1x3", 841, 1783),
|
||||
_CUPS_SIZE_MM("iso_a1x4_841x2378mm", "iso-a1x4", 841, 2378),
|
||||
_CUPS_SIZE_MM("iso_2a0_1189x1682mm", NULL, 1189, 1682),
|
||||
_CUPS_SIZE_MM("iso_a0x3_1189x2523mm", NULL, 1189, 2523),
|
||||
_CUPS_SIZE_MM("iso_b10_31x44mm", "iso-b10", 31, 44),
|
||||
_CUPS_SIZE_MM("iso_b9_44x62mm", "iso-b9", 44, 62),
|
||||
_CUPS_SIZE_MM("iso_b8_62x88mm", "iso-b8", 62, 88),
|
||||
_CUPS_SIZE_MM("iso_b7_88x125mm", "iso-b7", 88, 125),
|
||||
_CUPS_SIZE_MM("iso_b6_125x176mm", "iso-b6", 125, 176),
|
||||
_CUPS_SIZE_MM("iso_b6c4_125x324mm", NULL, 125, 324),
|
||||
_CUPS_SIZE_MM("iso_b5_176x250mm", "iso-b5", 176, 250),
|
||||
_CUPS_SIZE_MM("iso_b5-extra_201x276mm", NULL, 201, 276),
|
||||
_CUPS_SIZE_MM("iso_b4_250x353mm", "iso-b4", 250, 353),
|
||||
_CUPS_SIZE_MM("iso_b3_353x500mm", "iso-b3", 353, 500),
|
||||
_CUPS_SIZE_MM("iso_b2_500x707mm", "iso-b2", 500, 707),
|
||||
_CUPS_SIZE_MM("iso_b1_707x1000mm", "iso-b1", 707, 1000),
|
||||
_CUPS_SIZE_MM("iso_b0_1000x1414mm", "iso-b0", 1000, 1414),
|
||||
_CUPS_SIZE_MM("iso_c10_28x40mm", "iso-c10", 28, 40),
|
||||
_CUPS_SIZE_MM("iso_c9_40x57mm", "iso-c9", 40, 57),
|
||||
_CUPS_SIZE_MM("iso_c8_57x81mm", "iso-c8", 57, 81),
|
||||
_CUPS_SIZE_MM("iso_c7_81x114mm", "iso-c7", 81, 114),
|
||||
_CUPS_SIZE_MM("iso_c7c6_81x162mm", NULL, 81, 162),
|
||||
_CUPS_SIZE_MM("iso_c6_114x162mm", "iso-c6", 114, 162),
|
||||
_CUPS_SIZE_MM("iso_c6c5_114x229mm", NULL, 114, 229),
|
||||
_CUPS_SIZE_MM("iso_c5_162x229mm", "iso-c5", 162, 229),
|
||||
_CUPS_SIZE_MM("iso_c4_229x324mm", "iso-c4", 229, 324),
|
||||
_CUPS_SIZE_MM("iso_c3_324x458mm", "iso-c3", 324, 458),
|
||||
_CUPS_SIZE_MM("iso_c2_458x648mm", "iso-c2", 458, 648),
|
||||
_CUPS_SIZE_MM("iso_c1_648x917mm", "iso-c1", 648, 917),
|
||||
_CUPS_SIZE_MM("iso_c0_917x1297mm", "iso-c0", 917, 1297),
|
||||
_CUPS_SIZE_MM("iso_dl_110x220mm", "iso-designated", 110, 220),
|
||||
_CUPS_SIZE_MM("iso_ra2_430x610mm", "iso-ra2", 430, 610),
|
||||
_CUPS_SIZE_MM("iso_sra2_450x640mm", "iso-sra2", 450, 640),
|
||||
_CUPS_SIZE_MM("iso_ra1_610x860mm", "iso-ra1", 610, 860),
|
||||
_CUPS_SIZE_MM("iso_sra1_640x900mm", "iso-sra1", 640, 900),
|
||||
_CUPS_SIZE_MM("iso_ra0_860x1220mm", "iso-ra0", 860, 1220),
|
||||
_CUPS_SIZE_MM("iso_sra0_900x1280mm", "iso-sra0", 900, 1280),
|
||||
|
||||
/* Japanese Standard Sheet Media Sizes */
|
||||
_CUPS_SIZE_MM("jis_b10_32x45mm", "jis-b10", 32, 45),
|
||||
_CUPS_SIZE_MM("jis_b9_45x64mm", "jis-b9", 45, 64),
|
||||
_CUPS_SIZE_MM("jis_b8_64x91mm", "jis-b8", 64, 91),
|
||||
_CUPS_SIZE_MM("jis_b7_91x128mm", "jis-b7", 91, 128),
|
||||
_CUPS_SIZE_MM("jis_b6_128x182mm", "jis-b6", 128, 182),
|
||||
_CUPS_SIZE_MM("jis_b5_182x257mm", "jis-b5", 182, 257),
|
||||
_CUPS_SIZE_MM("jis_b4_257x364mm", "jis-b4", 257, 364),
|
||||
_CUPS_SIZE_MM("jis_b3_364x515mm", "jis-b3", 364, 515),
|
||||
_CUPS_SIZE_MM("jis_b2_515x728mm", "jis-b2", 515, 728),
|
||||
_CUPS_SIZE_MM("jis_b1_728x1030mm", "jis-b1", 728, 1030),
|
||||
_CUPS_SIZE_MM("jis_b0_1030x1456mm", "jis-b0", 1030, 1456),
|
||||
_CUPS_SIZE_MM("jis_exec_216x330mm", NULL, 216, 330),
|
||||
_CUPS_SIZE_MM("jpn_chou4_90x205mm", NULL, 90, 205),
|
||||
_CUPS_SIZE_MM("jpn_hagaki_100x148mm", NULL, 100, 148),
|
||||
_CUPS_SIZE_MM("jpn_you4_105x235mm", NULL, 105, 235),
|
||||
_CUPS_SIZE_MM("jpn_chou2_111.1x146mm", NULL, 111.1, 146),
|
||||
_CUPS_SIZE_MM("jpn_chou3_120x235mm", NULL, 120, 235),
|
||||
_CUPS_SIZE_MM("jpn_oufuku_148x200mm", NULL, 148, 200),
|
||||
_CUPS_SIZE_MM("jpn_kahu_240x322.1mm", NULL, 240, 322.1),
|
||||
_CUPS_SIZE_MM("jpn_kaku2_240x332mm", NULL, 240, 332),
|
||||
|
||||
/* Chinese Standard Sheet Media Sizes */
|
||||
_CUPS_SIZE_MM("prc_32k_97x151mm", NULL, 97, 151),
|
||||
_CUPS_SIZE_MM("prc_1_102x165mm", NULL, 102, 165),
|
||||
_CUPS_SIZE_MM("prc_2_102x176mm", NULL, 102, 176),
|
||||
_CUPS_SIZE_MM("prc_4_110x208mm", NULL, 110, 208),
|
||||
_CUPS_SIZE_MM("prc_5_110x220mm", NULL, 110, 220),
|
||||
_CUPS_SIZE_MM("prc_8_120x309mm", NULL, 120, 309),
|
||||
_CUPS_SIZE_MM("prc_6_120x320mm", NULL, 120, 320),
|
||||
_CUPS_SIZE_MM("prc_3_125x176mm", NULL, 125, 176),
|
||||
_CUPS_SIZE_MM("prc_16k_146x215mm", NULL, 146, 215),
|
||||
_CUPS_SIZE_MM("prc_7_160x230mm", NULL, 160, 230),
|
||||
_CUPS_SIZE_MM("om_juuro-ku-kai_198x275mm", NULL, 198, 275),
|
||||
_CUPS_SIZE_MM("om_pa-kai_267x389mm", NULL, 267, 389),
|
||||
_CUPS_SIZE_MM("om_dai-pa-kai_275x395mm", NULL, 275, 395),
|
||||
_CUPS_SIZE_MM("prc_10_324x458mm", NULL, 324, 458),
|
||||
|
||||
/* Other Metric Standard Sheet Media Sizes */
|
||||
_CUPS_SIZE_MM("om_small-photo_100x150mm", NULL, 100, 150),
|
||||
_CUPS_SIZE_MM("om_italian_110x230mm", NULL, 110, 230),
|
||||
_CUPS_SIZE_MM("om_postfix_114x229mm", NULL, 114, 229),
|
||||
_CUPS_SIZE_MM("om_large-photo_200x300", NULL, 200, 300),
|
||||
_CUPS_SIZE_MM("om_folio_210x330mm", "folio", 210, 330),
|
||||
_CUPS_SIZE_MM("om_folio-sp_215x315mm", NULL, 215, 315),
|
||||
_CUPS_SIZE_MM("om_invite_220x220mm", NULL, 220, 220)
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
* '_cupsPWGMediaByLegacy()' - Find a PWG media size by ISO/IPP legacy name.
|
||||
*/
|
||||
|
||||
_cups_pwg_media_t * /* O - Matching size or NULL */
|
||||
_cupsPWGMediaByLegacy(
|
||||
const char *legacy) /* I - Legacy size name */
|
||||
{
|
||||
_cups_pwg_media_t key; /* Search key */
|
||||
_cups_globals_t *cg = _cupsGlobals();
|
||||
/* Global data */
|
||||
|
||||
|
||||
/*
|
||||
* Build the lookup table for PWG names as needed...
|
||||
*/
|
||||
|
||||
if (!cg->leg_size_lut)
|
||||
{
|
||||
int i; /* Looping var */
|
||||
_cups_pwg_media_t *size; /* Current size */
|
||||
|
||||
cg->leg_size_lut = cupsArrayNew((cups_array_func_t)compare_legacy, NULL);
|
||||
|
||||
for (i = (int)(sizeof(cups_pwg_media) / sizeof(cups_pwg_media[0])),
|
||||
size = (_cups_pwg_media_t *)cups_pwg_media;
|
||||
i > 0;
|
||||
i --, size ++)
|
||||
if (size->legacy)
|
||||
cupsArrayAdd(cg->leg_size_lut, size);
|
||||
}
|
||||
|
||||
/*
|
||||
* Lookup the name...
|
||||
*/
|
||||
|
||||
key.legacy = legacy;
|
||||
return ((_cups_pwg_media_t *)cupsArrayFind(cg->leg_size_lut, &key));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_cupsPWGMediaByName()' - Find a PWG media size by 5101.1 self-describing
|
||||
* name.
|
||||
*/
|
||||
|
||||
_cups_pwg_media_t * /* O - Matching size or NULL */
|
||||
_cupsPWGMediaByName(const char *pwg) /* I - PWG size name */
|
||||
{
|
||||
_cups_pwg_media_t key; /* Search key */
|
||||
_cups_globals_t *cg = _cupsGlobals();
|
||||
/* Global data */
|
||||
|
||||
|
||||
/*
|
||||
* Build the lookup table for PWG names as needed...
|
||||
*/
|
||||
|
||||
if (!cg->pwg_size_lut)
|
||||
{
|
||||
int i; /* Looping var */
|
||||
_cups_pwg_media_t *size; /* Current size */
|
||||
|
||||
cg->pwg_size_lut = cupsArrayNew((cups_array_func_t)compare_pwg, NULL);
|
||||
|
||||
for (i = (int)(sizeof(cups_pwg_media) / sizeof(cups_pwg_media[0])),
|
||||
size = (_cups_pwg_media_t *)cups_pwg_media;
|
||||
i > 0;
|
||||
i --, size ++)
|
||||
cupsArrayAdd(cg->pwg_size_lut, size);
|
||||
}
|
||||
|
||||
/*
|
||||
* Lookup the name...
|
||||
*/
|
||||
|
||||
key.pwg = pwg;
|
||||
return ((_cups_pwg_media_t *)cupsArrayFind(cg->pwg_size_lut, &key));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_cupsPWGMediaBySize()' - Find a PWG media size by size in points.
|
||||
*/
|
||||
|
||||
_cups_pwg_media_t * /* O - Matching size or NULL */
|
||||
_cupsPWGMediaBySize(double width, /* I - Width in points */
|
||||
double length) /* I - Length in points */
|
||||
{
|
||||
int i; /* Looping var */
|
||||
_cups_pwg_media_t *size; /* Current size */
|
||||
double dw, dl; /* Difference in width and length */
|
||||
|
||||
|
||||
for (i = (int)(sizeof(cups_pwg_media) / sizeof(cups_pwg_media[0])),
|
||||
size = (_cups_pwg_media_t *)cups_pwg_media;
|
||||
i > 0;
|
||||
i --, size ++)
|
||||
{
|
||||
/*
|
||||
* Adobe uses a size matching algorithm with an epsilon of 5 points...
|
||||
*/
|
||||
|
||||
dw = size->width - width;
|
||||
dl = size->length - length;
|
||||
|
||||
if (dw > -5.0 && dw < 5.0 && dl > -5.0 && dl < 5.0)
|
||||
return (size);
|
||||
}
|
||||
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'compare_legacy()' - Compare two sizes using the legacy names.
|
||||
*/
|
||||
|
||||
static int /* O - Result of comparison */
|
||||
compare_legacy(_cups_pwg_media_t *a, /* I - First size */
|
||||
_cups_pwg_media_t *b) /* I - Second size */
|
||||
{
|
||||
return (strcmp(a->legacy, b->legacy));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'compare_pwg()' - Compare two sizes using the PWG names.
|
||||
*/
|
||||
|
||||
static int /* O - Result of comparison */
|
||||
compare_pwg(_cups_pwg_media_t *a, /* I - First size */
|
||||
_cups_pwg_media_t *b) /* I - Second size */
|
||||
{
|
||||
return (strcmp(a->pwg, b->pwg));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* End of "$Id$".
|
||||
*/
|
||||
@@ -1,59 +0,0 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* PWG media name API definitions for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2009 by Apple Inc.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
* property of Apple Inc. and are protected by Federal copyright
|
||||
* law. Distribution and use rights are outlined in the file "LICENSE.txt"
|
||||
* which should have been included with this file. If this file is
|
||||
* file is missing or damaged, see the license at "http://www.cups.org/".
|
||||
*/
|
||||
|
||||
#ifndef _CUPS_PWGMEDIA_H_
|
||||
# define _CUPS_PWGMEDIA_H_
|
||||
|
||||
|
||||
/*
|
||||
* C++ magic...
|
||||
*/
|
||||
|
||||
# ifdef __cplusplus
|
||||
extern "C" {
|
||||
# endif /* __cplusplus */
|
||||
|
||||
|
||||
/*
|
||||
* Types and structures...
|
||||
*/
|
||||
|
||||
typedef struct _cups_pwg_media_s /**** Common media size data ****/
|
||||
{
|
||||
const char *pwg, /* PWG 5101.1 "self describing" name */
|
||||
*legacy; /* IPP/ISO legacy name */
|
||||
double width, /* Width in points */
|
||||
length; /* Length in points */
|
||||
} _cups_pwg_media_t;
|
||||
|
||||
|
||||
/*
|
||||
* Functions...
|
||||
*/
|
||||
|
||||
extern _cups_pwg_media_t *_cupsPWGMediaByLegacy(const char *legacy);
|
||||
extern _cups_pwg_media_t *_cupsPWGMediaByName(const char *pwg);
|
||||
extern _cups_pwg_media_t *_cupsPWGMediaBySize(double width,
|
||||
double length);
|
||||
|
||||
|
||||
# ifdef __cplusplus
|
||||
}
|
||||
# endif /* __cplusplus */
|
||||
|
||||
#endif /* !_CUPS_PWGMEDIA_H_ */
|
||||
|
||||
/*
|
||||
* End of "$Id$".
|
||||
*/
|
||||
+31
-20
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* IPP utilities for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -263,14 +263,15 @@ cupsDoIORequest(http_t *http, /* I - Connection to server or @code CUPS_HTTP
|
||||
response = cupsGetResponse(http, resource);
|
||||
status = http->status;
|
||||
}
|
||||
else
|
||||
httpFlush(http);
|
||||
|
||||
DEBUG_printf(("2cupsDoIORequest: status=%d", status));
|
||||
|
||||
if (status >= HTTP_BAD_REQUEST &&
|
||||
status != HTTP_UNAUTHORIZED &&
|
||||
status != HTTP_UPGRADE_REQUIRED)
|
||||
if (status == HTTP_ERROR ||
|
||||
(status >= HTTP_BAD_REQUEST && status != HTTP_UNAUTHORIZED &&
|
||||
status != HTTP_UPGRADE_REQUIRED))
|
||||
{
|
||||
httpFlush(http);
|
||||
_cupsSetHTTPError(status);
|
||||
break;
|
||||
}
|
||||
@@ -678,6 +679,9 @@ cupsSendRequest(http_t *http, /* I - Connection to server or @code CUPS_HTTP
|
||||
* Process the current HTTP status...
|
||||
*/
|
||||
|
||||
if (status >= HTTP_BAD_REQUEST)
|
||||
httpFlush(http);
|
||||
|
||||
switch (status)
|
||||
{
|
||||
case HTTP_ERROR :
|
||||
@@ -686,18 +690,15 @@ cupsSendRequest(http_t *http, /* I - Connection to server or @code CUPS_HTTP
|
||||
return (status);
|
||||
|
||||
case HTTP_UNAUTHORIZED :
|
||||
if (!cupsDoAuthentication(http, "POST", resource))
|
||||
{
|
||||
if (httpReconnect(http))
|
||||
{
|
||||
_cupsSetError(IPP_SERVICE_UNAVAILABLE, NULL, 0);
|
||||
return (HTTP_SERVICE_UNAVAILABLE);
|
||||
}
|
||||
}
|
||||
else
|
||||
status = HTTP_AUTHORIZATION_CANCELED;
|
||||
if (cupsDoAuthentication(http, "POST", resource))
|
||||
return (HTTP_AUTHORIZATION_CANCELED);
|
||||
|
||||
return (status);
|
||||
if (httpReconnect(http))
|
||||
{
|
||||
_cupsSetError(IPP_SERVICE_UNAVAILABLE, NULL, 0);
|
||||
return (HTTP_SERVICE_UNAVAILABLE);
|
||||
}
|
||||
break;
|
||||
|
||||
#ifdef HAVE_SSL
|
||||
case HTTP_UPGRADE_REQUIRED :
|
||||
@@ -712,9 +713,12 @@ cupsSendRequest(http_t *http, /* I - Connection to server or @code CUPS_HTTP
|
||||
return (HTTP_SERVICE_UNAVAILABLE);
|
||||
}
|
||||
|
||||
httpEncryption(http, HTTP_ENCRYPT_REQUIRED);
|
||||
|
||||
return (status);
|
||||
if (httpEncryption(http, HTTP_ENCRYPT_REQUIRED))
|
||||
{
|
||||
_cupsSetError(IPP_SERVICE_UNAVAILABLE, NULL, 0);
|
||||
return (HTTP_SERVICE_UNAVAILABLE);
|
||||
}
|
||||
break;
|
||||
#endif /* HAVE_SSL */
|
||||
|
||||
case HTTP_EXPECTATION_FAILED :
|
||||
@@ -801,7 +805,14 @@ cupsWriteRequestData(
|
||||
*/
|
||||
|
||||
if (_httpWait(http, 0, 1))
|
||||
return (httpUpdate(http));
|
||||
{
|
||||
http_status_t status; /* Status from httpUpdate */
|
||||
|
||||
if ((status = httpUpdate(http)) >= HTTP_BAD_REQUEST)
|
||||
httpFlush(http);
|
||||
|
||||
return (status);
|
||||
}
|
||||
}
|
||||
|
||||
return (HTTP_CONTINUE);
|
||||
|
||||
+3
-2
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* String definitions for the Common UNIX Printing System (CUPS).
|
||||
* String definitions for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2006 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -27,6 +27,7 @@
|
||||
# include <stdarg.h>
|
||||
# include <ctype.h>
|
||||
# include <locale.h>
|
||||
# include <errno.h>
|
||||
|
||||
# include <config.h>
|
||||
|
||||
|
||||
+19
-2
@@ -2,7 +2,7 @@
|
||||
*%
|
||||
*% "$Id$"
|
||||
*%
|
||||
*% Test PPD file for the Common UNIX Printing System (CUPS).
|
||||
*% Test PPD file for CUPS.
|
||||
*%
|
||||
*% This file is used to test the CUPS PPD API functions and cannot be
|
||||
*% used with any known printers. Look on the CUPS web site for working PPD
|
||||
@@ -12,7 +12,7 @@
|
||||
*% to create your PPD files - not only will it save you time, it produces
|
||||
*% consistently high-quality files.
|
||||
*%
|
||||
*% Copyright 2007-2009 by Apple Inc.
|
||||
*% Copyright 2007-2010 by Apple Inc.
|
||||
*% Copyright 2002-2006 by Easy Software Products.
|
||||
*%
|
||||
*% These coded instructions, statements, and computer programs are the
|
||||
@@ -65,6 +65,9 @@
|
||||
*PageSize Letter/US Letter: "PageSize=Letter"
|
||||
*fr.PageSize Letter/French US Letter: ""
|
||||
*fr_CA.PageSize Letter/French Canadian US Letter: ""
|
||||
*PageSize Letter.Fullbleed/US Letter Borderless: "PageSize=Letter.Fullbleed"
|
||||
*fr.PageSize Letter.Fullbleed/French US Letter Borderless: ""
|
||||
*fr_CA.PageSize Letter.Fullbleed/French Canadian US Letter Borderless: ""
|
||||
*PageSize A4/A4: "PageSize=A4"
|
||||
*fr.PageSize A4/French A4: ""
|
||||
*fr_CA.PageSize A4/French Canadian A4: ""
|
||||
@@ -78,27 +81,32 @@
|
||||
*OrderDependency: 10 AnySetup *PageRegion
|
||||
*DefaultPageRegion: Letter
|
||||
*PageRegion Letter/US Letter: "PageRegion=Letter"
|
||||
*PageRegion Letter.Fullbleed/US Letter Borderless: "PageRegion=Letter.Fullbleed"
|
||||
*PageRegion A4/A4: "PageRegion=A4"
|
||||
*PageRegion Env10/#10 Envelope: "PageRegion=Env10"
|
||||
*CloseUI: *PageRegion
|
||||
|
||||
*fr.Translation PageRegion/French Page Region: ""
|
||||
*fr.PageRegion Letter/French US Letter: ""
|
||||
*fr.PageRegion Letter.Fullbleed/French US Letter Borderless: ""
|
||||
*fr.PageRegion A4/French A4: ""
|
||||
*fr.PageRegion Env10/French #10 Envelope: ""
|
||||
|
||||
*fr_CA.Translation PageRegion/French Canadian Page Region: ""
|
||||
*fr_CA.PageRegion Letter/French Canadian US Letter: ""
|
||||
*fr_CA.PageRegion Letter.Fullbleed/French Canadian US Letter Borderless: ""
|
||||
*fr_CA.PageRegion A4/French Canadian A4: ""
|
||||
*fr_CA.PageRegion Env10/French Canadian #10 Envelope: ""
|
||||
|
||||
*DefaultImageableArea: Letter
|
||||
*ImageableArea Letter: "18 36 594 756"
|
||||
*ImageableArea Letter.Fullbleed: "0 0 612 792"
|
||||
*ImageableArea A4: "18 36 577 806"
|
||||
*ImageableArea Env10: "18 36 279 648"
|
||||
|
||||
*DefaultPaperDimension: Letter
|
||||
*PaperDimension Letter: "612 792"
|
||||
*PaperDimension Letter.Fullbleed: "612 792"
|
||||
*PaperDimension A4: "595 842"
|
||||
*PaperDimension Env10: "297 684"
|
||||
|
||||
@@ -120,6 +128,15 @@
|
||||
*InputSlot Envelope/Envelope Feed: "InputSlot=Envelope"
|
||||
*CloseUI: *InputSlot
|
||||
|
||||
*OpenUI *MediaType/Media Type: PickOne
|
||||
*OrderDependency: 25 AnySetup *MediaType
|
||||
*DefaultMediaType: Plain
|
||||
*MediaType Plain/Plain Paper: "MediaType=Plain"
|
||||
*MediaType Matte/Matte Photo: "MediaType=Matte"
|
||||
*MediaType Glossy/Glossy Photo: "MediaType=Glossy"
|
||||
*MediaType Transparency/Transparency Film: "MediaType=Transparency"
|
||||
*CloseUI: *MediaType
|
||||
|
||||
*OpenUI *Duplex/2-Sided Printing: PickOne
|
||||
*OrderDependency: 10 DocumentSetup *Duplex
|
||||
*DefaultDuplex: None
|
||||
|
||||
+239
-15
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* IPP test program for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2005 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -16,7 +16,11 @@
|
||||
*
|
||||
* Contents:
|
||||
*
|
||||
* main() - Main entry.
|
||||
* main() - Main entry.
|
||||
* hex_dump() - Produce a hex dump of a buffer.
|
||||
* print_attributes() - Print the attributes in a request...
|
||||
* read_cb() - Read data from a buffer.
|
||||
* write_cb() - Write data into a buffer.
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -25,6 +29,7 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <cups/file.h>
|
||||
#include <cups/string.h>
|
||||
#include <errno.h>
|
||||
#include "ipp-private.h"
|
||||
@@ -80,6 +85,32 @@ ipp_uchar_t collection[] = /* Collection buffer */
|
||||
0x00, 0x09, /* Name length + name */
|
||||
'm', 'e', 'd', 'i', 'a', '-', 'c', 'o', 'l',
|
||||
0x00, 0x00, /* No value */
|
||||
IPP_TAG_MEMBERNAME, /* memberAttrName tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x0a, /* Value length + value */
|
||||
'm', 'e', 'd', 'i', 'a', '-', 's', 'i', 'z', 'e',
|
||||
IPP_TAG_BEGIN_COLLECTION, /* begCollection tag */
|
||||
0x00, 0x00, /* Name length + name */
|
||||
0x00, 0x00, /* No value */
|
||||
IPP_TAG_MEMBERNAME, /* memberAttrName tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x0b, /* Value length + value */
|
||||
'x', '-', 'd', 'i', 'm', 'e', 'n', 's', 'i', 'o', 'n',
|
||||
IPP_TAG_INTEGER, /* integer tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x04, /* Value length + value */
|
||||
0x00, 0x00, 0x54, 0x56,
|
||||
IPP_TAG_MEMBERNAME, /* memberAttrName tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x0b, /* Value length + value */
|
||||
'y', '-', 'd', 'i', 'm', 'e', 'n', 's', 'i', 'o', 'n',
|
||||
IPP_TAG_INTEGER, /* integer tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x04, /* Value length + value */
|
||||
0x00, 0x00, 0x6d, 0x24,
|
||||
IPP_TAG_END_COLLECTION, /* endCollection tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x00, /* No value */
|
||||
IPP_TAG_MEMBERNAME, /* memberAttrName tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x0b, /* Value length + value */
|
||||
@@ -104,6 +135,32 @@ ipp_uchar_t collection[] = /* Collection buffer */
|
||||
IPP_TAG_BEGIN_COLLECTION, /* begCollection tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x00, /* No value */
|
||||
IPP_TAG_MEMBERNAME, /* memberAttrName tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x0a, /* Value length + value */
|
||||
'm', 'e', 'd', 'i', 'a', '-', 's', 'i', 'z', 'e',
|
||||
IPP_TAG_BEGIN_COLLECTION, /* begCollection tag */
|
||||
0x00, 0x00, /* Name length + name */
|
||||
0x00, 0x00, /* No value */
|
||||
IPP_TAG_MEMBERNAME, /* memberAttrName tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x0b, /* Value length + value */
|
||||
'x', '-', 'd', 'i', 'm', 'e', 'n', 's', 'i', 'o', 'n',
|
||||
IPP_TAG_INTEGER, /* integer tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x04, /* Value length + value */
|
||||
0x00, 0x00, 0x52, 0x08,
|
||||
IPP_TAG_MEMBERNAME, /* memberAttrName tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x0b, /* Value length + value */
|
||||
'y', '-', 'd', 'i', 'm', 'e', 'n', 's', 'i', 'o', 'n',
|
||||
IPP_TAG_INTEGER, /* integer tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x04, /* Value length + value */
|
||||
0x00, 0x00, 0x74, 0x04,
|
||||
IPP_TAG_END_COLLECTION, /* endCollection tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x00, /* No value */
|
||||
IPP_TAG_MEMBERNAME, /* memberAttrName tag */
|
||||
0x00, 0x00, /* No name */
|
||||
0x00, 0x0b, /* Value length + value */
|
||||
@@ -147,11 +204,15 @@ int /* O - Exit status */
|
||||
main(int argc, /* I - Number of command-line arguments */
|
||||
char *argv[]) /* I - Command-line arguments */
|
||||
{
|
||||
ipp_t *cols[2]; /* Collections */
|
||||
ipp_t *cols[2], /* Collections */
|
||||
*size; /* media-size collection */
|
||||
ipp_t *request; /* Request */
|
||||
ipp_attribute_t *media_col, /* media-col attribute */
|
||||
*media_size, /* media-size attribute */
|
||||
*attr; /* Other attribute */
|
||||
ipp_state_t state; /* State */
|
||||
int length; /* Length of data */
|
||||
int fd; /* File descriptor */
|
||||
cups_file_t *fp; /* File pointer */
|
||||
int i; /* Looping var */
|
||||
int status; /* Status of tests (0 = success, 1 = fail) */
|
||||
|
||||
@@ -180,14 +241,31 @@ main(int argc, /* I - Number of command-line arguments */
|
||||
"printer-uri", NULL, "ipp://localhost/printers/foo");
|
||||
|
||||
cols[0] = ippNew();
|
||||
ippAddString(cols[0], IPP_TAG_JOB, IPP_TAG_KEYWORD, "media-color", NULL, "blue");
|
||||
ippAddString(cols[0], IPP_TAG_JOB, IPP_TAG_KEYWORD, "media-type", NULL, "plain");
|
||||
size = ippNew();
|
||||
ippAddInteger(size, IPP_TAG_ZERO, IPP_TAG_INTEGER, "x-dimension", 21590);
|
||||
ippAddInteger(size, IPP_TAG_ZERO, IPP_TAG_INTEGER, "y-dimension", 27940);
|
||||
ippAddCollection(cols[0], IPP_TAG_JOB, "media-size", size);
|
||||
ippDelete(size);
|
||||
ippAddString(cols[0], IPP_TAG_JOB, IPP_TAG_KEYWORD, "media-color", NULL,
|
||||
"blue");
|
||||
ippAddString(cols[0], IPP_TAG_JOB, IPP_TAG_KEYWORD, "media-type", NULL,
|
||||
"plain");
|
||||
|
||||
cols[1] = ippNew();
|
||||
ippAddString(cols[1], IPP_TAG_JOB, IPP_TAG_KEYWORD, "media-color", NULL, "plaid");
|
||||
ippAddString(cols[1], IPP_TAG_JOB, IPP_TAG_KEYWORD, "media-type", NULL, "glossy");
|
||||
size = ippNew();
|
||||
ippAddInteger(size, IPP_TAG_ZERO, IPP_TAG_INTEGER, "x-dimension", 21000);
|
||||
ippAddInteger(size, IPP_TAG_ZERO, IPP_TAG_INTEGER, "y-dimension", 29700);
|
||||
ippAddCollection(cols[1], IPP_TAG_JOB, "media-size", size);
|
||||
ippDelete(size);
|
||||
ippAddString(cols[1], IPP_TAG_JOB, IPP_TAG_KEYWORD, "media-color", NULL,
|
||||
"plaid");
|
||||
ippAddString(cols[1], IPP_TAG_JOB, IPP_TAG_KEYWORD, "media-type", NULL,
|
||||
"glossy");
|
||||
|
||||
ippAddCollections(request, IPP_TAG_JOB, "media-col", 2, (const ipp_t **)cols);
|
||||
ippAddCollections(request, IPP_TAG_JOB, "media-col", 2,
|
||||
(const ipp_t **)cols);
|
||||
ippDelete(cols[0]);
|
||||
ippDelete(cols[1]);
|
||||
|
||||
length = ippLength(request);
|
||||
if (length != sizeof(collection))
|
||||
@@ -206,7 +284,8 @@ main(int argc, /* I - Number of command-line arguments */
|
||||
printf("Write Sample to Memory: ");
|
||||
|
||||
wused = 0;
|
||||
while ((state = ippWriteIO(wbuffer, write_cb, 1, NULL, request)) != IPP_DATA)
|
||||
while ((state = ippWriteIO(wbuffer, write_cb, 1, NULL,
|
||||
request)) != IPP_DATA)
|
||||
if (state == IPP_ERROR)
|
||||
break;
|
||||
|
||||
@@ -225,7 +304,11 @@ main(int argc, /* I - Number of command-line arguments */
|
||||
}
|
||||
else if (memcmp(wbuffer, collection, wused))
|
||||
{
|
||||
puts("FAIL - output does not match baseline!");
|
||||
for (i = 0; i < wused; i ++)
|
||||
if (wbuffer[i] != collection[i])
|
||||
break;
|
||||
|
||||
printf("FAIL - output does not match baseline at 0x%04x!\n", i);
|
||||
hex_dump("Bytes Written", wbuffer, wused);
|
||||
hex_dump("Baseline", collection, sizeof(collection));
|
||||
status = 1;
|
||||
@@ -271,13 +354,153 @@ main(int argc, /* I - Number of command-line arguments */
|
||||
else
|
||||
puts("PASS");
|
||||
|
||||
fputs("ippFindAttribute(media-col): ", stdout);
|
||||
if ((media_col = ippFindAttribute(request, "media-col",
|
||||
IPP_TAG_BEGIN_COLLECTION)) == NULL)
|
||||
{
|
||||
if ((media_col = ippFindAttribute(request, "media-col",
|
||||
IPP_TAG_ZERO)) == NULL)
|
||||
puts("FAIL (not found)");
|
||||
else
|
||||
printf("FAIL (wrong type - %s)\n", ippTagString(media_col->value_tag));
|
||||
|
||||
status = 1;
|
||||
}
|
||||
else if (media_col->num_values != 2)
|
||||
{
|
||||
printf("FAIL (wrong count - %d)\n", media_col->num_values);
|
||||
status = 1;
|
||||
}
|
||||
else
|
||||
puts("PASS");
|
||||
|
||||
if (media_col)
|
||||
{
|
||||
fputs("ippFindAttribute(media-size 1): ", stdout);
|
||||
if ((media_size = ippFindAttribute(media_col->values[0].collection,
|
||||
"media-size",
|
||||
IPP_TAG_BEGIN_COLLECTION)) == NULL)
|
||||
{
|
||||
if ((media_size = ippFindAttribute(media_col->values[0].collection,
|
||||
"media-col",
|
||||
IPP_TAG_ZERO)) == NULL)
|
||||
puts("FAIL (not found)");
|
||||
else
|
||||
printf("FAIL (wrong type - %s)\n",
|
||||
ippTagString(media_size->value_tag));
|
||||
|
||||
status = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
if ((attr = ippFindAttribute(media_size->values[0].collection,
|
||||
"x-dimension", IPP_TAG_INTEGER)) == NULL)
|
||||
{
|
||||
if ((attr = ippFindAttribute(media_size->values[0].collection,
|
||||
"x-dimension", IPP_TAG_ZERO)) == NULL)
|
||||
puts("FAIL (missing x-dimension)");
|
||||
else
|
||||
printf("FAIL (wrong type for x-dimension - %s)\n",
|
||||
ippTagString(attr->value_tag));
|
||||
|
||||
status = 1;
|
||||
}
|
||||
else if (attr->values[0].integer != 21590)
|
||||
{
|
||||
printf("FAIL (wrong value for x-dimension - %d)\n",
|
||||
attr->values[0].integer);
|
||||
status = 1;
|
||||
}
|
||||
else if ((attr = ippFindAttribute(media_size->values[0].collection,
|
||||
"y-dimension",
|
||||
IPP_TAG_INTEGER)) == NULL)
|
||||
{
|
||||
if ((attr = ippFindAttribute(media_size->values[0].collection,
|
||||
"y-dimension", IPP_TAG_ZERO)) == NULL)
|
||||
puts("FAIL (missing y-dimension)");
|
||||
else
|
||||
printf("FAIL (wrong type for y-dimension - %s)\n",
|
||||
ippTagString(attr->value_tag));
|
||||
|
||||
status = 1;
|
||||
}
|
||||
else if (attr->values[0].integer != 27940)
|
||||
{
|
||||
printf("FAIL (wrong value for y-dimension - %d)\n",
|
||||
attr->values[0].integer);
|
||||
status = 1;
|
||||
}
|
||||
else
|
||||
puts("PASS");
|
||||
}
|
||||
|
||||
fputs("ippFindAttribute(media-size 2): ", stdout);
|
||||
if ((media_size = ippFindAttribute(media_col->values[1].collection,
|
||||
"media-size",
|
||||
IPP_TAG_BEGIN_COLLECTION)) == NULL)
|
||||
{
|
||||
if ((media_size = ippFindAttribute(media_col->values[1].collection,
|
||||
"media-col",
|
||||
IPP_TAG_ZERO)) == NULL)
|
||||
puts("FAIL (not found)");
|
||||
else
|
||||
printf("FAIL (wrong type - %s)\n",
|
||||
ippTagString(media_size->value_tag));
|
||||
|
||||
status = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
if ((attr = ippFindAttribute(media_size->values[0].collection,
|
||||
"x-dimension",
|
||||
IPP_TAG_INTEGER)) == NULL)
|
||||
{
|
||||
if ((attr = ippFindAttribute(media_size->values[0].collection,
|
||||
"x-dimension", IPP_TAG_ZERO)) == NULL)
|
||||
puts("FAIL (missing x-dimension)");
|
||||
else
|
||||
printf("FAIL (wrong type for x-dimension - %s)\n",
|
||||
ippTagString(attr->value_tag));
|
||||
|
||||
status = 1;
|
||||
}
|
||||
else if (attr->values[0].integer != 21000)
|
||||
{
|
||||
printf("FAIL (wrong value for x-dimension - %d)\n",
|
||||
attr->values[0].integer);
|
||||
status = 1;
|
||||
}
|
||||
else if ((attr = ippFindAttribute(media_size->values[0].collection,
|
||||
"y-dimension",
|
||||
IPP_TAG_INTEGER)) == NULL)
|
||||
{
|
||||
if ((attr = ippFindAttribute(media_size->values[0].collection,
|
||||
"y-dimension", IPP_TAG_ZERO)) == NULL)
|
||||
puts("FAIL (missing y-dimension)");
|
||||
else
|
||||
printf("FAIL (wrong type for y-dimension - %s)\n",
|
||||
ippTagString(attr->value_tag));
|
||||
|
||||
status = 1;
|
||||
}
|
||||
else if (attr->values[0].integer != 29700)
|
||||
{
|
||||
printf("FAIL (wrong value for y-dimension - %d)\n",
|
||||
attr->values[0].integer);
|
||||
status = 1;
|
||||
}
|
||||
else
|
||||
puts("PASS");
|
||||
}
|
||||
}
|
||||
|
||||
ippDelete(request);
|
||||
|
||||
/*
|
||||
* Test _ippFindOption() private API...
|
||||
*/
|
||||
|
||||
fputs("_ippFindOption(\"printer-type\"): ", stdout);
|
||||
fputs("_ippFindOption(printer-type): ", stdout);
|
||||
if (_ippFindOption("printer-type"))
|
||||
puts("PASS");
|
||||
else
|
||||
@@ -305,7 +528,7 @@ main(int argc, /* I - Number of command-line arguments */
|
||||
|
||||
for (i = 1; i < argc; i ++)
|
||||
{
|
||||
if ((fd = open(argv[i], O_RDONLY)) < 0)
|
||||
if ((fp = cupsFileOpen(argv[i], "r")) == NULL)
|
||||
{
|
||||
printf("Unable to open \"%s\" - %s\n", argv[i], strerror(errno));
|
||||
status = 1;
|
||||
@@ -313,7 +536,8 @@ main(int argc, /* I - Number of command-line arguments */
|
||||
}
|
||||
|
||||
request = ippNew();
|
||||
while ((state = ippReadFile(fd, request)) == IPP_ATTRIBUTE);
|
||||
while ((state = ippReadIO(fp, (ipp_iocb_t)cupsFileRead, 1, NULL,
|
||||
request)) == IPP_ATTRIBUTE);
|
||||
|
||||
if (state != IPP_DATA)
|
||||
{
|
||||
@@ -327,7 +551,7 @@ main(int argc, /* I - Number of command-line arguments */
|
||||
}
|
||||
|
||||
ippDelete(request);
|
||||
close(fd);
|
||||
cupsFileClose(fp);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+21
-13
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* PPD test program for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2006 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -23,13 +23,12 @@
|
||||
* Include necessary headers...
|
||||
*/
|
||||
|
||||
#include <cups/cups.h>
|
||||
#include <cups/string.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <cups/string.h>
|
||||
#include <sys/stat.h>
|
||||
#include <errno.h>
|
||||
#include "cups.h"
|
||||
#include "pwgmedia.h"
|
||||
#ifdef WIN32
|
||||
# include <io.h>
|
||||
#else
|
||||
@@ -58,6 +57,11 @@ static const char *default_code =
|
||||
"%%EndFeature\n"
|
||||
"} stopped cleartomark\n"
|
||||
"[{\n"
|
||||
"%%BeginFeature: *MediaType Plain\n"
|
||||
"MediaType=Plain\n"
|
||||
"%%EndFeature\n"
|
||||
"} stopped cleartomark\n"
|
||||
"[{\n"
|
||||
"%%BeginFeature: *IntOption None\n"
|
||||
"%%EndFeature\n"
|
||||
"} stopped cleartomark\n"
|
||||
@@ -77,6 +81,11 @@ static const char *custom_code =
|
||||
"%%EndFeature\n"
|
||||
"} stopped cleartomark\n"
|
||||
"[{\n"
|
||||
"%%BeginFeature: *MediaType Plain\n"
|
||||
"MediaType=Plain\n"
|
||||
"%%EndFeature\n"
|
||||
"} stopped cleartomark\n"
|
||||
"[{\n"
|
||||
"%%BeginFeature: *IntOption None\n"
|
||||
"%%EndFeature\n"
|
||||
"} stopped cleartomark\n"
|
||||
@@ -145,7 +154,6 @@ main(int argc, /* I - Number of command-line arguments */
|
||||
maxsize, /* Maximum size */
|
||||
*size; /* Current size */
|
||||
ppd_attr_t *attr; /* Current attribute */
|
||||
_cups_pwg_media_t *pwgmedia; /* PWG media size */
|
||||
|
||||
|
||||
status = 0;
|
||||
@@ -437,15 +445,15 @@ main(int argc, /* I - Number of command-line arguments */
|
||||
else
|
||||
puts("PASS");
|
||||
|
||||
fputs("_cupsPWGMediaBySize(842, 1191): ", stdout);
|
||||
if ((pwgmedia = _cupsPWGMediaBySize(842, 1191)) == NULL)
|
||||
fputs("cupsMarkOptions(media=A4): ", stdout);
|
||||
num_options = cupsAddOption("media", "A4", 0, &options);
|
||||
cupsMarkOptions(ppd, num_options, options);
|
||||
cupsFreeOptions(num_options, options);
|
||||
|
||||
size = ppdPageSize(ppd, NULL);
|
||||
if (!size || strcmp(size->name, "A4"))
|
||||
{
|
||||
puts("FAIL (not found)");
|
||||
status ++;
|
||||
}
|
||||
else if (strcmp(pwgmedia->pwg, "iso_a3_297x420mm"))
|
||||
{
|
||||
printf("FAIL (%s)\n", pwgmedia->pwg);
|
||||
printf("FAIL (%s)\n", size ? size->name : "unknown");
|
||||
status ++;
|
||||
}
|
||||
else
|
||||
|
||||
@@ -0,0 +1,274 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* PWG test program for CUPS.
|
||||
*
|
||||
* Copyright 2009-2010 by Apple Inc.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
* property of Apple Inc. and are protected by Federal copyright
|
||||
* law. Distribution and use rights are outlined in the file "LICENSE.txt"
|
||||
* which should have been included with this file. If this file is
|
||||
* file is missing or damaged, see the license at "http://www.cups.org/".
|
||||
*
|
||||
* This file is subject to the Apple OS-Developed Software exception.
|
||||
*
|
||||
* Contents:
|
||||
*
|
||||
* main() - Main entry.
|
||||
* test_pwg() - Test the PWG mapping functions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Include necessary headers...
|
||||
*/
|
||||
|
||||
#include "pwg-private.h"
|
||||
|
||||
|
||||
/*
|
||||
* Local functions...
|
||||
*/
|
||||
|
||||
static int test_pwg(_pwg_t *pwg);
|
||||
|
||||
|
||||
/*
|
||||
* 'main()' - Main entry.
|
||||
*/
|
||||
|
||||
int /* O - Exit status */
|
||||
main(int argc, /* I - Number of command-line args */
|
||||
char *argv[]) /* I - Command-line arguments */
|
||||
{
|
||||
int status; /* Status of tests (0 = success, 1 = fail) */
|
||||
const char *ppdfile; /* PPD filename */
|
||||
ppd_file_t *ppd; /* PPD file */
|
||||
_pwg_t *pwg; /* PWG mapping data */
|
||||
_pwg_media_t *pwgmedia; /* PWG media size */
|
||||
|
||||
|
||||
status = 0;
|
||||
|
||||
if (argc != 2)
|
||||
{
|
||||
puts("Usage: ./testpwg filename.ppd");
|
||||
return (1);
|
||||
}
|
||||
else
|
||||
ppdfile = argv[1];
|
||||
|
||||
printf("ppdOpenFile(%s): ", ppdfile);
|
||||
if ((ppd = ppdOpenFile(ppdfile)) == NULL)
|
||||
{
|
||||
ppd_status_t err; /* Last error in file */
|
||||
int line; /* Line number in file */
|
||||
|
||||
|
||||
err = ppdLastError(&line);
|
||||
|
||||
printf("FAIL (%s on line %d)\n", ppdErrorString(err), line);
|
||||
|
||||
return (1);
|
||||
}
|
||||
else
|
||||
puts("PASS");
|
||||
|
||||
fputs("_pwgCreateWithPPD(ppd): ", stdout);
|
||||
if ((pwg = _pwgCreateWithPPD(ppd)) == NULL)
|
||||
{
|
||||
puts("FAIL");
|
||||
status ++;
|
||||
}
|
||||
else
|
||||
{
|
||||
puts("PASS");
|
||||
status += test_pwg(pwg);
|
||||
|
||||
/*
|
||||
* _pwgDestroy should never fail...
|
||||
*/
|
||||
|
||||
fputs("_pwgDestroy(pwg): ", stdout);
|
||||
_pwgDestroy(pwg);
|
||||
puts("PASS");
|
||||
}
|
||||
|
||||
fputs("_pwgMediaForSize(29700, 42000): ", stdout);
|
||||
if ((pwgmedia = _pwgMediaForSize(29700, 42000)) == NULL)
|
||||
{
|
||||
puts("FAIL (not found)");
|
||||
status ++;
|
||||
}
|
||||
else if (strcmp(pwgmedia->pwg, "iso_a3_297x420mm"))
|
||||
{
|
||||
printf("FAIL (%s)\n", pwgmedia->pwg);
|
||||
status ++;
|
||||
}
|
||||
else
|
||||
puts("PASS");
|
||||
|
||||
return (status);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* 'test_pwg()' - Test the PWG mapping functions.
|
||||
*/
|
||||
|
||||
static int /* O - 1 on failure, 0 on success */
|
||||
test_pwg(_pwg_t *pwg) /* I - PWG mapping data */
|
||||
{
|
||||
int i, /* Looping var */
|
||||
status = 0; /* Return status */
|
||||
_pwg_t *pwg2; /* Loaded data */
|
||||
_pwg_size_t *size, /* Size from original */
|
||||
*size2; /* Size from saved */
|
||||
_pwg_map_t *map, /* Map from original */
|
||||
*map2; /* Map from saved */
|
||||
|
||||
|
||||
/*
|
||||
* Verify that we can write and read back the same data...
|
||||
*/
|
||||
|
||||
fputs("_pwgWriteFile(test.pwg): ", stdout);
|
||||
if (!_pwgWriteFile(pwg, "test.pwg"))
|
||||
{
|
||||
puts("FAIL");
|
||||
status ++;
|
||||
}
|
||||
else
|
||||
puts("PASS");
|
||||
|
||||
fputs("_pwgCreateWithFile(test.pwg): ", stdout);
|
||||
if ((pwg2 = _pwgCreateWithFile("test.pwg")) == NULL)
|
||||
{
|
||||
puts("FAIL");
|
||||
status ++;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (pwg2->num_sizes != pwg->num_sizes)
|
||||
{
|
||||
if (!status)
|
||||
puts("FAIL");
|
||||
|
||||
printf(" SAVED num_sizes=%d, ORIG num_sizes=%d\n", pwg2->num_sizes,
|
||||
pwg->num_sizes);
|
||||
|
||||
status ++;
|
||||
}
|
||||
else
|
||||
{
|
||||
for (i = pwg->num_sizes, size = pwg->sizes, size2 = pwg2->sizes;
|
||||
i > 0;
|
||||
i --, size ++, size2 ++)
|
||||
{
|
||||
if (strcmp(size2->map.pwg, size->map.pwg) ||
|
||||
strcmp(size2->map.ppd, size->map.ppd) ||
|
||||
size2->width != size->width ||
|
||||
size2->length != size->length ||
|
||||
size2->left != size->left ||
|
||||
size2->bottom != size->bottom ||
|
||||
size2->right != size->right ||
|
||||
size2->top != size->top)
|
||||
{
|
||||
if (!status)
|
||||
puts("FAIL");
|
||||
|
||||
if (strcmp(size->map.pwg, size2->map.pwg))
|
||||
printf(" SAVED size->map.pwg=\"%s\", ORIG "
|
||||
"size->map.pwg=\"%s\"\n", size2->map.pwg, size->map.pwg);
|
||||
|
||||
if (strcmp(size2->map.ppd, size->map.ppd))
|
||||
printf(" SAVED size->map.ppd=\"%s\", ORIG "
|
||||
"size->map.ppd=\"%s\"\n", size2->map.ppd, size->map.ppd);
|
||||
|
||||
if (size2->width != size->width)
|
||||
printf(" SAVED size->width=%d, ORIG size->width=%d\n",
|
||||
size2->width, size->width);
|
||||
|
||||
if (size2->length != size->length)
|
||||
printf(" SAVED size->length=%d, ORIG size->length=%d\n",
|
||||
size2->length, size->length);
|
||||
|
||||
if (size2->left != size->left)
|
||||
printf(" SAVED size->left=%d, ORIG size->left=%d\n",
|
||||
size2->left, size->left);
|
||||
|
||||
if (size2->bottom != size->bottom)
|
||||
printf(" SAVED size->bottom=%d, ORIG size->bottom=%d\n",
|
||||
size2->bottom, size->bottom);
|
||||
|
||||
if (size2->right != size->right)
|
||||
printf(" SAVED size->right=%d, ORIG size->right=%d\n",
|
||||
size2->right, size->right);
|
||||
|
||||
if (size2->top != size->top)
|
||||
printf(" SAVED size->top=%d, ORIG size->top=%d\n",
|
||||
size2->top, size->top);
|
||||
|
||||
status ++;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
for (i = pwg->num_sources, map = pwg->sources, map2 = pwg2->sources;
|
||||
i > 0;
|
||||
i --, map ++, map2 ++)
|
||||
{
|
||||
if (strcmp(map2->pwg, map->pwg) ||
|
||||
strcmp(map2->ppd, map->ppd))
|
||||
{
|
||||
if (!status)
|
||||
puts("FAIL");
|
||||
|
||||
if (strcmp(map->pwg, map2->pwg))
|
||||
printf(" SAVED source->pwg=\"%s\", ORIG source->pwg=\"%s\"\n",
|
||||
map2->pwg, map->pwg);
|
||||
|
||||
if (strcmp(map2->ppd, map->ppd))
|
||||
printf(" SAVED source->ppd=\"%s\", ORIG source->ppd=\"%s\"\n",
|
||||
map2->ppd, map->ppd);
|
||||
|
||||
status ++;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
for (i = pwg->num_types, map = pwg->types, map2 = pwg2->types;
|
||||
i > 0;
|
||||
i --, map ++, map2 ++)
|
||||
{
|
||||
if (strcmp(map2->pwg, map->pwg) ||
|
||||
strcmp(map2->ppd, map->ppd))
|
||||
{
|
||||
if (!status)
|
||||
puts("FAIL");
|
||||
|
||||
if (strcmp(map->pwg, map2->pwg))
|
||||
printf(" SAVED type->pwg=\"%s\", ORIG type->pwg=\"%s\"\n",
|
||||
map2->pwg, map->pwg);
|
||||
|
||||
if (strcmp(map2->ppd, map->ppd))
|
||||
printf(" SAVED type->ppd=\"%s\", ORIG type->ppd=\"%s\"\n",
|
||||
map2->ppd, map->ppd);
|
||||
|
||||
status ++;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!status)
|
||||
puts("PASS");
|
||||
}
|
||||
|
||||
return (status);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* End of "$Id$".
|
||||
*/
|
||||
+116
-84
@@ -1,10 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* User, system, and password routines for the Common UNIX Printing
|
||||
* System (CUPS).
|
||||
* User, system, and password routines for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2006 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -17,14 +16,16 @@
|
||||
*
|
||||
* Contents:
|
||||
*
|
||||
* cupsEncryption() - Get the default encryption settings.
|
||||
* cupsEncryption() - Get the current encryption settings.
|
||||
* cupsGetPassword() - Get a password from the user.
|
||||
* cupsServer() - Return the hostname/address of the default
|
||||
* cupsGetPassword2() - Get a password from the user using the advanced
|
||||
* password callback.
|
||||
* cupsServer() - Return the hostname/address of the current
|
||||
* server.
|
||||
* cupsSetEncryption() - Set the encryption preference.
|
||||
* cupsSetPasswordCB() - Set the password callback for CUPS.
|
||||
* cupsSetPasswordCB2() - Set the advanced password callback for CUPS.
|
||||
* cupsSetServer() - Set the default server name.
|
||||
* cupsSetServer() - Set the default server name and port.
|
||||
* cupsSetUser() - Set the default user name.
|
||||
* cupsUser() - Return the current user's name.
|
||||
* _cupsGetPassword() - Get a password from the user.
|
||||
@@ -42,6 +43,8 @@
|
||||
#include <sys/stat.h>
|
||||
#ifdef WIN32
|
||||
# include <windows.h>
|
||||
#else
|
||||
# include <pwd.h>
|
||||
#endif /* WIN32 */
|
||||
#include "debug.h"
|
||||
|
||||
@@ -57,12 +60,17 @@ static void cups_read_client_conf(cups_file_t *fp,
|
||||
|
||||
|
||||
/*
|
||||
* 'cupsEncryption()' - Get the default encryption settings.
|
||||
* 'cupsEncryption()' - Get the current encryption settings.
|
||||
*
|
||||
* The default encryption setting comes from the CUPS_ENCRYPTION
|
||||
* environment variable, then the ~/.cups/client.conf file, and finally the
|
||||
* /etc/cups/client.conf file. If not set, the default is
|
||||
* @code HTTP_ENCRYPT_IF_REQUESTED@.
|
||||
*
|
||||
* Note: The current encryption setting is tracked separately for each thread
|
||||
* in a program. Multi-threaded programs that override the setting via the
|
||||
* @link cupsSetEncryption@ function need to do so in each thread for the same
|
||||
* setting to be used.
|
||||
*/
|
||||
|
||||
http_encryption_t /* O - Encryption settings */
|
||||
@@ -83,6 +91,11 @@ cupsEncryption(void)
|
||||
*
|
||||
* Uses the current password callback function. Returns @code NULL@ if the
|
||||
* user does not provide a password.
|
||||
*
|
||||
* Note: The current password callback function is tracked separately for each
|
||||
* thread in a program. Multi-threaded programs that override the setting via
|
||||
* the @link cupsSetPasswordCB@ or @link cupsSetPasswordCB2@ functions need to
|
||||
* do so in each thread for the same function to be used.
|
||||
*/
|
||||
|
||||
const char * /* O - Password */
|
||||
@@ -97,11 +110,16 @@ cupsGetPassword(const char *prompt) /* I - Prompt string */
|
||||
|
||||
/*
|
||||
* 'cupsGetPassword2()' - Get a password from the user using the advanced
|
||||
* callback.
|
||||
* password callback.
|
||||
*
|
||||
* Uses the current password callback function. Returns @code NULL@ if the
|
||||
* user does not provide a password.
|
||||
*
|
||||
* Note: The current password callback function is tracked separately for each
|
||||
* thread in a program. Multi-threaded programs that override the setting via
|
||||
* the @link cupsSetPasswordCB@ or @link cupsSetPasswordCB2@ functions need to
|
||||
* do so in each thread for the same function to be used.
|
||||
*
|
||||
* @since CUPS 1.4/Mac OS X 10.6@
|
||||
*/
|
||||
|
||||
@@ -122,10 +140,20 @@ cupsGetPassword2(const char *prompt, /* I - Prompt string */
|
||||
|
||||
|
||||
/*
|
||||
* 'cupsServer()' - Return the hostname/address of the default server.
|
||||
* 'cupsServer()' - Return the hostname/address of the current server.
|
||||
*
|
||||
* The returned value can be a fully-qualified hostname, a numeric
|
||||
* IPv4 or IPv6 address, or a domain socket pathname.
|
||||
* The default server comes from the CUPS_SERVER environment variable, then the
|
||||
* ~/.cups/client.conf file, and finally the /etc/cups/client.conf file. If not
|
||||
* set, the default is the local system - either "localhost" or a domain socket
|
||||
* path.
|
||||
*
|
||||
* The returned value can be a fully-qualified hostname, a numeric IPv4 or IPv6
|
||||
* address, or a domain socket pathname.
|
||||
*
|
||||
* Note: The current server is tracked separately for each thread in a program.
|
||||
* Multi-threaded programs that override the server via the
|
||||
* @link cupsSetServer@ function need to do so in each thread for the same
|
||||
* server to be used.
|
||||
*/
|
||||
|
||||
const char * /* O - Server name */
|
||||
@@ -143,6 +171,15 @@ cupsServer(void)
|
||||
|
||||
/*
|
||||
* 'cupsSetEncryption()' - Set the encryption preference.
|
||||
*
|
||||
* The default encryption setting comes from the CUPS_ENCRYPTION
|
||||
* environment variable, then the ~/.cups/client.conf file, and finally the
|
||||
* /etc/cups/client.conf file. If not set, the default is
|
||||
* @code HTTP_ENCRYPT_IF_REQUESTED@.
|
||||
*
|
||||
* Note: The current encryption setting is tracked separately for each thread
|
||||
* in a program. Multi-threaded programs that override the setting need to do
|
||||
* so in each thread for the same setting to be used.
|
||||
*/
|
||||
|
||||
void
|
||||
@@ -161,7 +198,14 @@ cupsSetEncryption(http_encryption_t e) /* I - New encryption preference */
|
||||
/*
|
||||
* 'cupsSetPasswordCB()' - Set the password callback for CUPS.
|
||||
*
|
||||
* Pass @code NULL@ to restore the default (console) password callback.
|
||||
* Pass @code NULL@ to restore the default (console) password callback, which
|
||||
* reads the password from the console. Programs should call either this
|
||||
* function or @link cupsSetPasswordCB2@, as only one callback can be registered
|
||||
* by a program per thread.
|
||||
*
|
||||
* Note: The current password callback is tracked separately for each thread
|
||||
* in a program. Multi-threaded programs that override the callback need to do
|
||||
* so in each thread for the same callback to be used.
|
||||
*/
|
||||
|
||||
void
|
||||
@@ -182,7 +226,14 @@ cupsSetPasswordCB(cups_password_cb_t cb)/* I - Callback function */
|
||||
/*
|
||||
* 'cupsSetPasswordCB2()' - Set the advanced password callback for CUPS.
|
||||
*
|
||||
* Pass @code NULL@ to restore the default (console) password callback.
|
||||
* Pass @code NULL@ to restore the default (console) password callback, which
|
||||
* reads the password from the console. Programs should call either this
|
||||
* function or @link cupsSetPasswordCB2@, as only one callback can be registered
|
||||
* by a program per thread.
|
||||
*
|
||||
* Note: The current password callback is tracked separately for each thread
|
||||
* in a program. Multi-threaded programs that override the callback need to do
|
||||
* so in each thread for the same callback to be used.
|
||||
*
|
||||
* @since CUPS 1.4/Mac OS X 10.6@
|
||||
*/
|
||||
@@ -205,11 +256,17 @@ cupsSetPasswordCB2(
|
||||
|
||||
|
||||
/*
|
||||
* 'cupsSetServer()' - Set the default server name.
|
||||
* 'cupsSetServer()' - Set the default server name and port.
|
||||
*
|
||||
* The "server" string can be a fully-qualified hostname, a numeric
|
||||
* IPv4 or IPv6 address, or a domain socket pathname. Pass @code NULL@ to
|
||||
* restore the default server name.
|
||||
* IPv4 or IPv6 address, or a domain socket pathname. Hostnames and numeric IP
|
||||
* addresses can be optionally followed by a colon and port number to override
|
||||
* the default port 631, e.g. "hostname:8631". Pass @code NULL@ to restore the
|
||||
* default server name and port.
|
||||
*
|
||||
* Note: The current server is tracked separately for each thread in a program.
|
||||
* Multi-threaded programs that override the server need to do so in each
|
||||
* thread for the same server to be used.
|
||||
*/
|
||||
|
||||
void
|
||||
@@ -254,6 +311,10 @@ cupsSetServer(const char *server) /* I - Server name */
|
||||
* 'cupsSetUser()' - Set the default user name.
|
||||
*
|
||||
* Pass @code NULL@ to restore the default user name.
|
||||
*
|
||||
* Note: The current user name is tracked separately for each thread in a
|
||||
* program. Multi-threaded programs that override the user name need to do so
|
||||
* in each thread for the same user name to be used.
|
||||
*/
|
||||
|
||||
void
|
||||
@@ -269,13 +330,13 @@ cupsSetUser(const char *user) /* I - User name */
|
||||
}
|
||||
|
||||
|
||||
#if defined(WIN32)
|
||||
/*
|
||||
* WIN32 username and password stuff.
|
||||
*/
|
||||
|
||||
/*
|
||||
* 'cupsUser()' - Return the current user's name.
|
||||
*
|
||||
* Note: The current user name is tracked separately for each thread in a
|
||||
* program. Multi-threaded programs that override the user name with the
|
||||
* @link cupsSetUser@ function need to do so in each thread for the same user
|
||||
* name to be used.
|
||||
*/
|
||||
|
||||
const char * /* O - User name */
|
||||
@@ -286,16 +347,38 @@ cupsUser(void)
|
||||
|
||||
if (!cg->user[0])
|
||||
{
|
||||
DWORD size; /* Size of string */
|
||||
#ifdef WIN32
|
||||
/*
|
||||
* Get the current user name from the OS...
|
||||
*/
|
||||
|
||||
DWORD size; /* Size of string */
|
||||
|
||||
size = sizeof(cg->user);
|
||||
if (!GetUserName(cg->user, &size))
|
||||
#else
|
||||
/*
|
||||
* Get the user name corresponding to the current UID...
|
||||
*/
|
||||
|
||||
struct passwd *pwd; /* User/password entry */
|
||||
|
||||
setpwent();
|
||||
if ((pwd = getpwuid(getuid())) != NULL)
|
||||
{
|
||||
/*
|
||||
* Use the default username...
|
||||
* Found a match!
|
||||
*/
|
||||
|
||||
strlcpy(cg->user, pwd->pw_name, sizeof(cg->user));
|
||||
}
|
||||
else
|
||||
#endif /* WIN32 */
|
||||
{
|
||||
/*
|
||||
* Use the default "unknown" user name...
|
||||
*/
|
||||
|
||||
strcpy(cg->user, "unknown");
|
||||
}
|
||||
}
|
||||
@@ -311,72 +394,21 @@ cupsUser(void)
|
||||
const char * /* O - Password */
|
||||
_cupsGetPassword(const char *prompt) /* I - Prompt string */
|
||||
{
|
||||
#ifdef WIN32
|
||||
/*
|
||||
* Currently no console password support is provided on Windows.
|
||||
*/
|
||||
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
#else
|
||||
/*
|
||||
* UNIX username and password stuff...
|
||||
*/
|
||||
/*
|
||||
* Use the standard getpass function to get a password from the console.
|
||||
*/
|
||||
|
||||
# include <pwd.h>
|
||||
|
||||
/*
|
||||
* 'cupsUser()' - Return the current user's name.
|
||||
*/
|
||||
|
||||
const char * /* O - User name */
|
||||
cupsUser(void)
|
||||
{
|
||||
struct passwd *pwd; /* User/password entry */
|
||||
_cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */
|
||||
|
||||
|
||||
if (!cg->user[0])
|
||||
{
|
||||
/*
|
||||
* Rewind the password file...
|
||||
*/
|
||||
|
||||
setpwent();
|
||||
|
||||
/*
|
||||
* Lookup the password entry for the current user.
|
||||
*/
|
||||
|
||||
if ((pwd = getpwuid(getuid())) == NULL)
|
||||
strcpy(cg->user, "unknown"); /* Unknown user! */
|
||||
else
|
||||
{
|
||||
/*
|
||||
* Copy the username...
|
||||
*/
|
||||
|
||||
setpwent();
|
||||
|
||||
strlcpy(cg->user, pwd->pw_name, sizeof(cg->user));
|
||||
}
|
||||
|
||||
/*
|
||||
* Rewind the password file again...
|
||||
*/
|
||||
|
||||
setpwent();
|
||||
}
|
||||
|
||||
return (cg->user);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* '_cupsGetPassword()' - Get a password from the user.
|
||||
*/
|
||||
|
||||
const char * /* O - Password */
|
||||
_cupsGetPassword(const char *prompt) /* I - Prompt string */
|
||||
{
|
||||
return (getpass(prompt));
|
||||
}
|
||||
#endif /* WIN32 */
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
|
||||
+8
-32
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* Printing utilities for the Common UNIX Printing System (CUPS).
|
||||
* Printing utilities for CUPS.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2006 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -18,7 +18,7 @@
|
||||
*
|
||||
* cupsCancelJob() - Cancel a print job on the default server.
|
||||
* cupsCancelJob2() - Cancel or purge a print job.
|
||||
* cupsCreateJob() - Create an empty job.
|
||||
* cupsCreateJob() - Create an empty job for streaming.
|
||||
* cupsFinishDocument() - Finish sending a document.
|
||||
* cupsFreeJobs() - Free memory used by job data.
|
||||
* cupsGetClasses() - Get a list of printer classes from the default
|
||||
@@ -1514,36 +1514,12 @@ cupsPrintFiles2(
|
||||
goto cancel_job;
|
||||
}
|
||||
|
||||
do
|
||||
{
|
||||
cupsFileRewind(fp);
|
||||
status = cupsStartDocument(http, name, job_id, docname, format,
|
||||
i == (num_files - 1));
|
||||
|
||||
status = cupsStartDocument(http, name, job_id, docname, format,
|
||||
i == (num_files - 1));
|
||||
|
||||
while (status == HTTP_CONTINUE &&
|
||||
(bytes = cupsFileRead(fp, buffer, sizeof(buffer))) > 0)
|
||||
status = cupsWriteRequestData(http, buffer, bytes);
|
||||
|
||||
if (status == HTTP_UNAUTHORIZED)
|
||||
{
|
||||
char resource[1024]; /* Printer resource */
|
||||
|
||||
snprintf(resource, sizeof(resource), "/printers/%s", name);
|
||||
|
||||
if (!cupsDoAuthentication(http, "POST", resource))
|
||||
{
|
||||
if (httpReconnect(http))
|
||||
{
|
||||
_cupsSetError(IPP_SERVICE_UNAVAILABLE, NULL, 0);
|
||||
return (0);
|
||||
}
|
||||
}
|
||||
else
|
||||
status = HTTP_AUTHORIZATION_CANCELED;
|
||||
}
|
||||
}
|
||||
while (status == HTTP_UNAUTHORIZED);
|
||||
while (status == HTTP_CONTINUE &&
|
||||
(bytes = cupsFileRead(fp, buffer, sizeof(buffer))) > 0)
|
||||
status = cupsWriteRequestData(http, buffer, bytes);
|
||||
|
||||
cupsFileClose(fp);
|
||||
|
||||
|
||||
+6
-2
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* API versioning definitions for the Common UNIX Printing System (CUPS).
|
||||
* API versioning definitions for CUPS.
|
||||
*
|
||||
* Copyright 2007-2008 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
* property of Apple Inc. and are protected by Federal copyright
|
||||
@@ -69,6 +69,10 @@
|
||||
# define _CUPS_DEPRECATED
|
||||
# endif /* __GNUC__ && __GNUC__ > 2 */
|
||||
|
||||
# ifndef __GNUC__
|
||||
# define __attribute__(x)
|
||||
# endif /* !__GNUC__ */
|
||||
|
||||
#endif /* !_CUPS_VERSIONING_H_ */
|
||||
|
||||
/*
|
||||
|
||||
+13
-13
@@ -16,7 +16,7 @@ SRC="/images/left.gif" WIDTH="64" HEIGHT="36" BORDER="0" ALT=""></A></TD>
|
||||
<TD CLASS="sel"><A HREF="/"> Startseite </A></TD>
|
||||
<TD CLASS="unsel"><A HREF="/admin"> Verwaltung </A></TD>
|
||||
<TD CLASS="unsel"><A HREF="/classes/"> Klassen </A></TD>
|
||||
<TD CLASS="unsel"><A HREF="/help/"> Online Hilfe </A></TD>
|
||||
<TD CLASS="unsel"><A HREF="/help/"> Online- Hilfe </A></TD>
|
||||
<TD CLASS="unsel"><A HREF="/jobs/"> Aufträge </A></TD>
|
||||
<TD CLASS="unsel"><A HREF="/printers/"> Drucker </A></TD>
|
||||
<TD CLASS="unsel" WIDTH="100%"><FORM ACTION="/help/" METHOD="GET"><INPUT
|
||||
@@ -31,7 +31,7 @@ AUTOSAVE="org.cups.help" RESULTS="20"></FORM></TD>
|
||||
|
||||
<H1>Common UNIX Printing System @CUPS_VERSION@</H1>
|
||||
|
||||
<P>CUPS ist das auf Standards basierte, Open-Source Drucker System, welches von
|
||||
<P>CUPS ist das auf Standards basierte, Opensource-Drucksystem, welches von
|
||||
<A HREF="http://www.apple.com/">Apple Inc.</A> für Mac OS<SUP>®</SUP> X und
|
||||
andere UNIX<SUP>®</SUP>-ähnliche Betriebssysteme entwickelt wird.</P>
|
||||
|
||||
@@ -46,13 +46,13 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
|
||||
<H2>CUPS für Benutzer</H2>
|
||||
|
||||
<P><A HREF="help/overview.html">CUPS Übersicht</A></P>
|
||||
<P><A HREF="help/overview.html">CUPS.Übersicht</A></P>
|
||||
|
||||
<P><A HREF="help/options.html">Kommandozeilendruck und Einstellungen</A></P>
|
||||
|
||||
<P><A HREF="help/whatsnew.html">Neues in CUPS 1.4</A></P>
|
||||
|
||||
<P><A HREF="http://www.cups.org/newsgroups.php?gcups.general">Benutzer Forum</A></P>
|
||||
<P><A HREF="http://www.cups.org/newsgroups.php?gcups.general">Benutzerforum</A></P>
|
||||
|
||||
</TD><TD VALIGN="top" STYLE="border-right: dotted thin #cccccc; padding-left: 20px; padding-right: 20px;">
|
||||
|
||||
@@ -66,7 +66,7 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
|
||||
<P><A HREF="help/security.html">Sicherheit des Servers</A></P>
|
||||
|
||||
<P><A HREF="help/kerberos.html">Benutzen der Kerberos Authentifizierung</A></P>
|
||||
<P><A HREF="help/kerberos.html">Verwenden der Kerberos Authentifizierung</A></P>
|
||||
|
||||
<P><A HREF="help/network.html">Benutzen von Netzwerkdruckern</A></P>
|
||||
|
||||
@@ -78,21 +78,21 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
|
||||
<H2>CUPS für Entwickler</H2>
|
||||
|
||||
<P><A HREF="help/api-overview.html">Einführung in die CUPS Programmierung</A></P>
|
||||
<P><A HREF="help/api-overview.html">Einführung in die CUPS-Programmierung</A></P>
|
||||
|
||||
<P><A HREF="help/api-cups.html">CUPS API</A></P>
|
||||
<P><A HREF="help/api-cups.html">CUPS-API</A></P>
|
||||
|
||||
<P><A HREF="help/api-filter.html">Filter und Backend Programmierung</A></P>
|
||||
<P><A HREF="help/api-filter.html">Filter- und Backend-Programmierung</A></P>
|
||||
|
||||
<P><A HREF="help/api-httpipp.html">HTTP und IPP APIs</A></P>
|
||||
<P><A HREF="help/api-httpipp.html">HTTP- und IPP-APIs</A></P>
|
||||
|
||||
<P><A HREF="help/api-ppd.html">PPD API</A></P>
|
||||
<P><A HREF="help/api-ppd.html">PPD-API</A></P>
|
||||
|
||||
<P><A HREF="help/api-raster.html">Raster API</A></P>
|
||||
<P><A HREF="help/api-raster.html">Raster-API</A></P>
|
||||
|
||||
<P><A HREF="help/ref-ppdcfile.html">PPD Compiler Driver Information File Reference</A></P>
|
||||
|
||||
<P><A HREF="http://www.cups.org/newsgroups.php?gcups.development">Entwickler Forum</A></P>
|
||||
<P><A HREF="http://www.cups.org/newsgroups.php?gcups.development">Entwicklerforum</A></P>
|
||||
|
||||
</TD></TR>
|
||||
</TABLE>
|
||||
@@ -101,7 +101,7 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
<TR><TD> </TD></TR>
|
||||
<TR><TD CLASS="trailer">CUPS und das CUPS Logo sind
|
||||
eingetragene Warenzeichen der <A HREF="http://www.apple.com">Apple Inc.</A>
|
||||
CUPS ist urheberrechtlich geschützt 2007-2009 von Apple Inc, alle Rechte vorbehalten.</TD></TR>
|
||||
CUPS ist urheberrechtlich geschützt 2007-2010 von Apple Inc, alle Rechte vorbehalten.</TD></TR>
|
||||
</TABLE>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
||||
@@ -101,7 +101,7 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
<TR><TD> </TD></TR>
|
||||
<TR><TD CLASS="trailer">CUPS y el logo de CUPS son
|
||||
marcas registradas de <A HREF="http://www.apple.com">Apple Inc.</A> Los derechos
|
||||
de copia de CUPS 2007-2009 son de Apple Inc. Todos los derechos reservados.</TD></TR>
|
||||
de copia de CUPS 2007-2010 son de Apple Inc. Todos los derechos reservados.</TD></TR>
|
||||
</TABLE>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
||||
@@ -100,7 +100,7 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
</TD></TR>
|
||||
<TR><TD> </TD></TR>
|
||||
<TR><TD CLASS="trailer">CUPS eta CUPSen logotipoa <A HREF="http://www.apple.com">Apple Inc.</A>en marka erregistratuaj dira.
|
||||
CUPSen copyright-a 2007-2009 Apple Inc. Eskubide guztiak gordeta.</TD></TR>
|
||||
CUPSen copyright-a 2007-2010 Apple Inc. Eskubide guztiak gordeta.</TD></TR>
|
||||
</TABLE>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
||||
+57
-11
@@ -338,7 +338,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id: api-cgi.html 8653 2009-05-16 23:53:28Z mike $"
|
||||
"$Id: api-cgi.html 9121 2010-04-23 18:57:00Z mike $"
|
||||
|
||||
CGI API header for CUPS.
|
||||
|
||||
@@ -377,6 +377,7 @@ div.contents ul.subcontents li {
|
||||
<li><a href="#OVERVIEW">Overview</a></li>
|
||||
<li><a href="#FUNCTIONS">Functions</a><ul class="code">
|
||||
<li><a href="#cgiCheckVariables" title="Check for the presence of "required" variables.">cgiCheckVariables</a></li>
|
||||
<li><a href="#cgiClearVariables" title="Clear all form variables.">cgiClearVariables</a></li>
|
||||
<li><a href="#cgiCompileSearch" title="Compile a search string.">cgiCompileSearch</a></li>
|
||||
<li><a href="#cgiCopyTemplateFile" title="Copy a template file and replace all the
|
||||
'{variable}' strings with the variable value.">cgiCopyTemplateFile</a></li>
|
||||
@@ -386,26 +387,28 @@ div.contents ul.subcontents li {
|
||||
<li><a href="#cgiEndMultipart" title="End the delivery of a multipart web page.">cgiEndMultipart</a></li>
|
||||
<li><a href="#cgiFormEncode" title="Encode a string as a form variable.">cgiFormEncode</a></li>
|
||||
<li><a href="#cgiFreeSearch" title="Free a compiled search context.">cgiFreeSearch</a></li>
|
||||
<li><a href="#cgiGetArray" title="Get an element from a form array...">cgiGetArray</a></li>
|
||||
<li><a href="#cgiGetArray" title="Get an element from a form array.">cgiGetArray</a></li>
|
||||
<li><a href="#cgiGetAttributes" title="Get the list of attributes that are needed
|
||||
by the template file.">cgiGetAttributes</a></li>
|
||||
<li><a href="#cgiGetCookie" title="Get a cookie value.">cgiGetCookie</a></li>
|
||||
<li><a href="#cgiGetFile" title="Get the file (if any) that was submitted in the form.">cgiGetFile</a></li>
|
||||
<li><a href="#cgiGetIPPObjects" title="Get the objects in an IPP response.">cgiGetIPPObjects</a></li>
|
||||
<li><a href="#cgiGetSize" title="Get the size of a form array value.">cgiGetSize</a></li>
|
||||
<li><a href="#cgiGetTemplateDir" title="Get the templates directory...">cgiGetTemplateDir</a></li>
|
||||
<li><a href="#cgiGetVariable" title="Get a CGI variable from the database...">cgiGetVariable</a></li>
|
||||
<li><a href="#cgiInitialize" title="Initialize the CGI variable "database"...">cgiInitialize</a></li>
|
||||
<li><a href="#cgiGetVariable" title="Get a CGI variable from the database.">cgiGetVariable</a></li>
|
||||
<li><a href="#cgiInitialize" title="Initialize the CGI variable "database".">cgiInitialize</a></li>
|
||||
<li><a href="#cgiIsPOST" title="Determine whether this page was POSTed.">cgiIsPOST</a></li>
|
||||
<li><a href="#cgiMoveJobs" title="Move one or more jobs.">cgiMoveJobs</a></li>
|
||||
<li><a href="#cgiPrintCommand" title="Print a CUPS command job.">cgiPrintCommand</a></li>
|
||||
<li><a href="#cgiPrintTestPage" title="Print a test page.">cgiPrintTestPage</a></li>
|
||||
<li><a href="#cgiRewriteURL" title="Rewrite a printer URI into a web browser URL...">cgiRewriteURL</a></li>
|
||||
<li><a href="#cgiSetArray" title="Set array element N to the specified string.">cgiSetArray</a></li>
|
||||
<li><a href="#cgiSetCookie" title="Set a cookie value.">cgiSetCookie</a></li>
|
||||
<li><a href="#cgiSetIPPObjectVars" title="Set CGI variables from an IPP object.">cgiSetIPPObjectVars</a></li>
|
||||
<li><a href="#cgiSetIPPVars" title="Set CGI variables from an IPP response.">cgiSetIPPVars</a></li>
|
||||
<li><a href="#cgiSetServerVersion" title="Set the server name and CUPS version...">cgiSetServerVersion</a></li>
|
||||
<li><a href="#cgiSetSize" title="Set the array size.">cgiSetSize</a></li>
|
||||
<li><a href="#cgiSetVariable" title="Set a CGI variable in the database...">cgiSetVariable</a></li>
|
||||
<li><a href="#cgiSetVariable" title="Set a CGI variable in the database.">cgiSetVariable</a></li>
|
||||
<li><a href="#cgiShowIPPError" title="Show the last IPP error message.">cgiShowIPPError</a></li>
|
||||
<li><a href="#cgiShowJobs" title="Show print jobs.">cgiShowJobs</a></li>
|
||||
<li><a href="#cgiStartHTML" title="Start a HTML page.">cgiStartHTML</a></li>
|
||||
@@ -431,7 +434,7 @@ by the template file.">cgiGetAttributes</a></li>
|
||||
<li><a href="#help_word_s" title="Help word structure...">help_word_s</a></li>
|
||||
</ul></li>
|
||||
<!--
|
||||
"$Id: api-cgi.html 8653 2009-05-16 23:53:28Z mike $"
|
||||
"$Id: api-cgi.html 9121 2010-04-23 18:57:00Z mike $"
|
||||
|
||||
CGI API introduction for CUPS.
|
||||
|
||||
@@ -463,6 +466,10 @@ int cgiCheckVariables (<br>
|
||||
<p class="description">1 if all variables present, 0 otherwise</p>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">Names may be separated by spaces and/or commas.</p>
|
||||
<h3 class="function"><a name="cgiClearVariables">cgiClearVariables</a></h3>
|
||||
<p class="description">Clear all form variables.</p>
|
||||
<p class="code">
|
||||
void cgiClearVariables (void);</p>
|
||||
<h3 class="function"><a name="cgiCompileSearch">cgiCompileSearch</a></h3>
|
||||
<p class="description">Compile a search string.</p>
|
||||
<p class="code">
|
||||
@@ -557,7 +564,7 @@ void cgiFreeSearch (<br>
|
||||
<dd class="description">Search context</dd>
|
||||
</dl>
|
||||
<h3 class="function"><a name="cgiGetArray">cgiGetArray</a></h3>
|
||||
<p class="description">Get an element from a form array...</p>
|
||||
<p class="description">Get an element from a form array.</p>
|
||||
<p class="code">
|
||||
const char *cgiGetArray (<br>
|
||||
const char *name,<br>
|
||||
@@ -587,6 +594,19 @@ void cgiGetAttributes (<br>
|
||||
<dt>tmpl</dt>
|
||||
<dd class="description">Base filename</dd>
|
||||
</dl>
|
||||
<h3 class="function"><a name="cgiGetCookie">cgiGetCookie</a></h3>
|
||||
<p class="description">Get a cookie value.</p>
|
||||
<p class="code">
|
||||
const char *cgiGetCookie (<br>
|
||||
const char *name<br>
|
||||
);</p>
|
||||
<h4 class="parameters">Parameters</h4>
|
||||
<dl>
|
||||
<dt>name</dt>
|
||||
<dd class="description">Name of cookie</dd>
|
||||
</dl>
|
||||
<h4 class="returnvalue">Return Value</h4>
|
||||
<p class="description">Value or NULL</p>
|
||||
<h3 class="function"><a name="cgiGetFile">cgiGetFile</a></h3>
|
||||
<p class="description">Get the file (if any) that was submitted in the form.</p>
|
||||
<p class="code">
|
||||
@@ -629,7 +649,7 @@ char *cgiGetTemplateDir (void);</p>
|
||||
<h4 class="returnvalue">Return Value</h4>
|
||||
<p class="description">Template directory</p>
|
||||
<h3 class="function"><a name="cgiGetVariable">cgiGetVariable</a></h3>
|
||||
<p class="description">Get a CGI variable from the database...</p>
|
||||
<p class="description">Get a CGI variable from the database.</p>
|
||||
<p class="code">
|
||||
const char *cgiGetVariable (<br>
|
||||
const char *name<br>
|
||||
@@ -643,9 +663,9 @@ const char *cgiGetVariable (<br>
|
||||
<p class="description">Value of variable</p>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">Returns NULL if the variable doesn't exist. If the variable is an
|
||||
array of values, returns the last element...</p>
|
||||
array of values, returns the last element.</p>
|
||||
<h3 class="function"><a name="cgiInitialize">cgiInitialize</a></h3>
|
||||
<p class="description">Initialize the CGI variable "database"...</p>
|
||||
<p class="description">Initialize the CGI variable "database".</p>
|
||||
<p class="code">
|
||||
int cgiInitialize (void);</p>
|
||||
<h4 class="returnvalue">Return Value</h4>
|
||||
@@ -751,6 +771,32 @@ void cgiSetArray (<br>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">If the variable array is smaller than (element + 1), the intervening
|
||||
elements are set to NULL.</p>
|
||||
<h3 class="function"><a name="cgiSetCookie">cgiSetCookie</a></h3>
|
||||
<p class="description">Set a cookie value.</p>
|
||||
<p class="code">
|
||||
void cgiSetCookie (<br>
|
||||
const char *name,<br>
|
||||
const char *value,<br>
|
||||
const char *path,<br>
|
||||
const char *domain,<br>
|
||||
time_t expires,<br>
|
||||
int secure<br>
|
||||
);</p>
|
||||
<h4 class="parameters">Parameters</h4>
|
||||
<dl>
|
||||
<dt>name</dt>
|
||||
<dd class="description">Name</dd>
|
||||
<dt>value</dt>
|
||||
<dd class="description">Value</dd>
|
||||
<dt>path</dt>
|
||||
<dd class="description">Path (typically "/")</dd>
|
||||
<dt>domain</dt>
|
||||
<dd class="description">Domain name</dd>
|
||||
<dt>expires</dt>
|
||||
<dd class="description">Expiration date (0 for session)</dd>
|
||||
<dt>secure</dt>
|
||||
<dd class="description">Require SSL</dd>
|
||||
</dl>
|
||||
<h3 class="function"><a name="cgiSetIPPObjectVars">cgiSetIPPObjectVars</a></h3>
|
||||
<p class="description">Set CGI variables from an IPP object.</p>
|
||||
<p class="code">
|
||||
@@ -814,7 +860,7 @@ void cgiSetSize (<br>
|
||||
<dd class="description">Number of elements (0 to N)</dd>
|
||||
</dl>
|
||||
<h3 class="function"><a name="cgiSetVariable">cgiSetVariable</a></h3>
|
||||
<p class="description">Set a CGI variable in the database...</p>
|
||||
<p class="description">Set a CGI variable in the database.</p>
|
||||
<p class="code">
|
||||
void cgiSetVariable (<br>
|
||||
const char *name,<br>
|
||||
|
||||
+88
-24
@@ -338,7 +338,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id: api-cups.html 8726 2009-06-22 20:46:13Z mike $"
|
||||
"$Id: api-cups.html 9121 2010-04-23 18:57:00Z mike $"
|
||||
|
||||
CUPS API header for the Common UNIX Printing System (CUPS).
|
||||
|
||||
@@ -398,7 +398,7 @@ div.contents ul.subcontents li {
|
||||
<li><a href="#cupsCancelJob" title="Cancel a print job on the default server.">cupsCancelJob</a></li>
|
||||
<li><a href="#cupsCancelJob2" title="Cancel or purge a print job.">cupsCancelJob2</a></li>
|
||||
<li><a href="#cupsCreateJob" title="Create an empty job for streaming.">cupsCreateJob</a></li>
|
||||
<li><a href="#cupsEncryption" title="Get the default encryption settings.">cupsEncryption</a></li>
|
||||
<li><a href="#cupsEncryption" title="Get the current encryption settings.">cupsEncryption</a></li>
|
||||
<li><a href="#cupsFinishDocument" title="Finish sending a document.">cupsFinishDocument</a></li>
|
||||
<li><a href="#cupsFreeDests" title="Free the memory used by the list of destinations.">cupsFreeDests</a></li>
|
||||
<li><a href="#cupsFreeJobs" title="Free memory used by job data.">cupsFreeJobs</a></li>
|
||||
@@ -419,7 +419,7 @@ div.contents ul.subcontents li {
|
||||
server if it has changed.">cupsGetPPD3</a></li>
|
||||
<li><a href="#cupsGetPassword" title="Get a password from the user.">cupsGetPassword</a></li>
|
||||
<li><a href="#cupsGetPassword2" title="Get a password from the user using the advanced
|
||||
callback.">cupsGetPassword2</a></li>
|
||||
password callback.">cupsGetPassword2</a></li>
|
||||
<li><a href="#cupsGetPrinters" title="Get a list of printers from the default server.">cupsGetPrinters</a></li>
|
||||
<li><a href="#cupsGetServerPPD" title="Get an available PPD file from the server.">cupsGetServerPPD</a></li>
|
||||
<li><a href="#cupsLangDefault" title="Return the default language.">cupsLangDefault</a></li>
|
||||
@@ -442,14 +442,14 @@ default server.">cupsPrintFiles</a></li>
|
||||
specified server.">cupsPrintFiles2</a></li>
|
||||
<li><a href="#cupsRemoveDest" title="Remove a destination from the destination list.">cupsRemoveDest</a></li>
|
||||
<li><a href="#cupsRemoveOption" title="Remove an option from an option array.">cupsRemoveOption</a></li>
|
||||
<li><a href="#cupsServer" title="Return the hostname/address of the default server.">cupsServer</a></li>
|
||||
<li><a href="#cupsServer" title="Return the hostname/address of the current server.">cupsServer</a></li>
|
||||
<li><a href="#cupsSetDefaultDest" title="Set the default destination.">cupsSetDefaultDest</a></li>
|
||||
<li><a href="#cupsSetDests" title="Save the list of destinations for the default server.">cupsSetDests</a></li>
|
||||
<li><a href="#cupsSetDests2" title="Save the list of destinations for the specified server.">cupsSetDests2</a></li>
|
||||
<li><a href="#cupsSetEncryption" title="Set the encryption preference.">cupsSetEncryption</a></li>
|
||||
<li><a href="#cupsSetPasswordCB" title="Set the password callback for CUPS.">cupsSetPasswordCB</a></li>
|
||||
<li><a href="#cupsSetPasswordCB2" title="Set the advanced password callback for CUPS.">cupsSetPasswordCB2</a></li>
|
||||
<li><a href="#cupsSetServer" title="Set the default server name.">cupsSetServer</a></li>
|
||||
<li><a href="#cupsSetServer" title="Set the default server name and port.">cupsSetServer</a></li>
|
||||
<li><a href="#cupsSetUser" title="Set the default user name.">cupsSetUser</a></li>
|
||||
<li><a href="#cupsStartDocument" title="Add a document to a job created with cupsCreateJob().">cupsStartDocument</a></li>
|
||||
<li><a href="#cupsTempFd" title="Creates a temporary file.">cupsTempFd</a></li>
|
||||
@@ -475,11 +475,11 @@ specified server.">cupsPrintFiles2</a></li>
|
||||
<li><a href="#cups_ptype_e" title="Printer type/capability bit constants">cups_ptype_e</a></li>
|
||||
</ul></li>
|
||||
<!--
|
||||
"$Id: api-cups.html 8726 2009-06-22 20:46:13Z mike $"
|
||||
"$Id: api-cups.html 9121 2010-04-23 18:57:00Z mike $"
|
||||
|
||||
CUPS API introduction for the Common UNIX Printing System (CUPS).
|
||||
|
||||
Copyright 2007-2008 by Apple Inc.
|
||||
Copyright 2007-2010 by Apple Inc.
|
||||
Copyright 1997-2006 by Easy Software Products, all rights reserved.
|
||||
|
||||
These coded instructions, statements, and computer programs are the
|
||||
@@ -558,12 +558,13 @@ instance will return the default instance for that destination.</p>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>"printer-is-accepting-jobs"</td>
|
||||
<td>"1" if the destination is accepting new jobs, "0" if not.</td>
|
||||
<td>"true" if the destination is accepting new jobs, "false" if
|
||||
not.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>"printer-is-shared"</td>
|
||||
<td>"1" if the destination is being shared with other computers, "0" if
|
||||
not.</td>
|
||||
<td>"true" if the destination is being shared with other computers,
|
||||
"false" if not.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>"printer-location"</td>
|
||||
@@ -1157,7 +1158,7 @@ instead.
|
||||
|
||||
</p>
|
||||
<h3 class="function"><a name="cupsEncryption">cupsEncryption</a></h3>
|
||||
<p class="description">Get the default encryption settings.</p>
|
||||
<p class="description">Get the current encryption settings.</p>
|
||||
<p class="code">
|
||||
http_encryption_t cupsEncryption (void);</p>
|
||||
<h4 class="returnvalue">Return Value</h4>
|
||||
@@ -1166,7 +1167,12 @@ http_encryption_t cupsEncryption (void);</p>
|
||||
<p class="discussion">The default encryption setting comes from the CUPS_ENCRYPTION
|
||||
environment variable, then the ~/.cups/client.conf file, and finally the
|
||||
/etc/cups/client.conf file. If not set, the default is
|
||||
<code>HTTP_ENCRYPT_IF_REQUESTED</code>.</p>
|
||||
<code>HTTP_ENCRYPT_IF_REQUESTED</code>.<br>
|
||||
<br>
|
||||
Note: The current encryption setting is tracked separately for each thread
|
||||
in a program. Multi-threaded programs that override the setting via the
|
||||
<a href="#cupsSetEncryption"><code>cupsSetEncryption</code></a> function need to do so in each thread for the same
|
||||
setting to be used.</p>
|
||||
<h3 class="function"><span class="info"> CUPS 1.4/Mac OS X 10.6 </span><a name="cupsFinishDocument">cupsFinishDocument</a></h3>
|
||||
<p class="description">Finish sending a document.</p>
|
||||
<p class="code">
|
||||
@@ -1577,10 +1583,15 @@ const char *cupsGetPassword (<br>
|
||||
<p class="description">Password</p>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">Uses the current password callback function. Returns <code>NULL</code> if the
|
||||
user does not provide a password.</p>
|
||||
user does not provide a password.<br>
|
||||
<br>
|
||||
Note: The current password callback function is tracked separately for each
|
||||
thread in a program. Multi-threaded programs that override the setting via
|
||||
the <a href="#cupsSetPasswordCB"><code>cupsSetPasswordCB</code></a> or <a href="#cupsSetPasswordCB2"><code>cupsSetPasswordCB2</code></a> functions need to
|
||||
do so in each thread for the same function to be used.</p>
|
||||
<h3 class="function"><span class="info"> CUPS 1.4/Mac OS X 10.6 </span><a name="cupsGetPassword2">cupsGetPassword2</a></h3>
|
||||
<p class="description">Get a password from the user using the advanced
|
||||
callback.</p>
|
||||
password callback.</p>
|
||||
<p class="code">
|
||||
const char *cupsGetPassword2 (<br>
|
||||
const char *prompt,<br>
|
||||
@@ -1603,7 +1614,12 @@ const char *cupsGetPassword2 (<br>
|
||||
<p class="description">Password</p>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">Uses the current password callback function. Returns <code>NULL</code> if the
|
||||
user does not provide a password.
|
||||
user does not provide a password.<br>
|
||||
<br>
|
||||
Note: The current password callback function is tracked separately for each
|
||||
thread in a program. Multi-threaded programs that override the setting via
|
||||
the <a href="#cupsSetPasswordCB"><code>cupsSetPasswordCB</code></a> or <a href="#cupsSetPasswordCB2"><code>cupsSetPasswordCB2</code></a> functions need to
|
||||
do so in each thread for the same function to be used.
|
||||
|
||||
</p>
|
||||
<h3 class="function"><span class="info"> DEPRECATED </span><a name="cupsGetPrinters">cupsGetPrinters</a></h3>
|
||||
@@ -1941,14 +1957,24 @@ int cupsRemoveOption (<br>
|
||||
<h4 class="returnvalue">Return Value</h4>
|
||||
<p class="description">New number of options</p>
|
||||
<h3 class="function"><a name="cupsServer">cupsServer</a></h3>
|
||||
<p class="description">Return the hostname/address of the default server.</p>
|
||||
<p class="description">Return the hostname/address of the current server.</p>
|
||||
<p class="code">
|
||||
const char *cupsServer (void);</p>
|
||||
<h4 class="returnvalue">Return Value</h4>
|
||||
<p class="description">Server name</p>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">The returned value can be a fully-qualified hostname, a numeric
|
||||
IPv4 or IPv6 address, or a domain socket pathname.</p>
|
||||
<p class="discussion">The default server comes from the CUPS_SERVER environment variable, then the
|
||||
~/.cups/client.conf file, and finally the /etc/cups/client.conf file. If not
|
||||
set, the default is the local system - either "localhost" or a domain socket
|
||||
path.<br>
|
||||
<br>
|
||||
The returned value can be a fully-qualified hostname, a numeric IPv4 or IPv6
|
||||
address, or a domain socket pathname.<br>
|
||||
<br>
|
||||
Note: The current server is tracked separately for each thread in a program.
|
||||
Multi-threaded programs that override the server via the
|
||||
<a href="#cupsSetServer"><code>cupsSetServer</code></a> function need to do so in each thread for the same
|
||||
server to be used.</p>
|
||||
<h3 class="function"><span class="info"> CUPS 1.3/Mac OS X 10.5 </span><a name="cupsSetDefaultDest">cupsSetDefaultDest</a></h3>
|
||||
<p class="description">Set the default destination.</p>
|
||||
<p class="code">
|
||||
@@ -2021,6 +2047,15 @@ void cupsSetEncryption (<br>
|
||||
<dt>e</dt>
|
||||
<dd class="description">New encryption preference</dd>
|
||||
</dl>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">The default encryption setting comes from the CUPS_ENCRYPTION
|
||||
environment variable, then the ~/.cups/client.conf file, and finally the
|
||||
/etc/cups/client.conf file. If not set, the default is
|
||||
<code>HTTP_ENCRYPT_IF_REQUESTED</code>.<br>
|
||||
<br>
|
||||
Note: The current encryption setting is tracked separately for each thread
|
||||
in a program. Multi-threaded programs that override the setting need to do
|
||||
so in each thread for the same setting to be used.</p>
|
||||
<h3 class="function"><a name="cupsSetPasswordCB">cupsSetPasswordCB</a></h3>
|
||||
<p class="description">Set the password callback for CUPS.</p>
|
||||
<p class="code">
|
||||
@@ -2033,7 +2068,14 @@ void cupsSetPasswordCB (<br>
|
||||
<dd class="description">Callback function</dd>
|
||||
</dl>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">Pass <code>NULL</code> to restore the default (console) password callback.</p>
|
||||
<p class="discussion">Pass <code>NULL</code> to restore the default (console) password callback, which
|
||||
reads the password from the console. Programs should call either this
|
||||
function or <a href="#cupsSetPasswordCB2"><code>cupsSetPasswordCB2</code></a>, as only one callback can be registered
|
||||
by a program per thread.<br>
|
||||
<br>
|
||||
Note: The current password callback is tracked separately for each thread
|
||||
in a program. Multi-threaded programs that override the callback need to do
|
||||
so in each thread for the same callback to be used.</p>
|
||||
<h3 class="function"><span class="info"> CUPS 1.4/Mac OS X 10.6 </span><a name="cupsSetPasswordCB2">cupsSetPasswordCB2</a></h3>
|
||||
<p class="description">Set the advanced password callback for CUPS.</p>
|
||||
<p class="code">
|
||||
@@ -2049,11 +2091,18 @@ void cupsSetPasswordCB2 (<br>
|
||||
<dd class="description">User data pointer</dd>
|
||||
</dl>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">Pass <code>NULL</code> to restore the default (console) password callback.
|
||||
<p class="discussion">Pass <code>NULL</code> to restore the default (console) password callback, which
|
||||
reads the password from the console. Programs should call either this
|
||||
function or <a href="#cupsSetPasswordCB2"><code>cupsSetPasswordCB2</code></a>, as only one callback can be registered
|
||||
by a program per thread.<br>
|
||||
<br>
|
||||
Note: The current password callback is tracked separately for each thread
|
||||
in a program. Multi-threaded programs that override the callback need to do
|
||||
so in each thread for the same callback to be used.
|
||||
|
||||
</p>
|
||||
<h3 class="function"><a name="cupsSetServer">cupsSetServer</a></h3>
|
||||
<p class="description">Set the default server name.</p>
|
||||
<p class="description">Set the default server name and port.</p>
|
||||
<p class="code">
|
||||
void cupsSetServer (<br>
|
||||
const char *server<br>
|
||||
@@ -2065,8 +2114,14 @@ void cupsSetServer (<br>
|
||||
</dl>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">The "server" string can be a fully-qualified hostname, a numeric
|
||||
IPv4 or IPv6 address, or a domain socket pathname. Pass <code>NULL</code> to
|
||||
restore the default server name.</p>
|
||||
IPv4 or IPv6 address, or a domain socket pathname. Hostnames and numeric IP
|
||||
addresses can be optionally followed by a colon and port number to override
|
||||
the default port 631, e.g. "hostname:8631". Pass <code>NULL</code> to restore the
|
||||
default server name and port.<br>
|
||||
<br>
|
||||
Note: The current server is tracked separately for each thread in a program.
|
||||
Multi-threaded programs that override the server need to do so in each
|
||||
thread for the same server to be used.</p>
|
||||
<h3 class="function"><a name="cupsSetUser">cupsSetUser</a></h3>
|
||||
<p class="description">Set the default user name.</p>
|
||||
<p class="code">
|
||||
@@ -2079,7 +2134,11 @@ void cupsSetUser (<br>
|
||||
<dd class="description">User name</dd>
|
||||
</dl>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">Pass <code>NULL</code> to restore the default user name.</p>
|
||||
<p class="discussion">Pass <code>NULL</code> to restore the default user name.<br>
|
||||
<br>
|
||||
Note: The current user name is tracked separately for each thread in a
|
||||
program. Multi-threaded programs that override the user name need to do so
|
||||
in each thread for the same user name to be used.</p>
|
||||
<h3 class="function"><span class="info"> CUPS 1.4/Mac OS X 10.6 </span><a name="cupsStartDocument">cupsStartDocument</a></h3>
|
||||
<p class="description">Add a document to a job created with cupsCreateJob().</p>
|
||||
<p class="code">
|
||||
@@ -2186,6 +2245,11 @@ The temporary file is opened for writing.
|
||||
const char *cupsUser (void);</p>
|
||||
<h4 class="returnvalue">Return Value</h4>
|
||||
<p class="description">User name</p>
|
||||
<h4 class="discussion">Discussion</h4>
|
||||
<p class="discussion">Note: The current user name is tracked separately for each thread in a
|
||||
program. Multi-threaded programs that override the user name with the
|
||||
<a href="#cupsSetUser"><code>cupsSetUser</code></a> function need to do so in each thread for the same user
|
||||
name to be used.</p>
|
||||
<h2 class="title"><a name="TYPES">Data Types</a></h2>
|
||||
<h3 class="typedef"><a name="cups_dest_t">cups_dest_t</a></h3>
|
||||
<p class="description">Destination</p>
|
||||
|
||||
+10
-10
@@ -338,7 +338,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id: api-filter.html 8718 2009-06-18 17:41:03Z mike $"
|
||||
"$Id: api-filter.html 9121 2010-04-23 18:57:00Z mike $"
|
||||
|
||||
Filter and backend programming header for the Common UNIX Printing System
|
||||
(CUPS).
|
||||
@@ -421,7 +421,7 @@ div.contents ul.subcontents li {
|
||||
<li><a href="#cups_sc_status_e" title="Response status codes">cups_sc_status_e</a></li>
|
||||
</ul></li>
|
||||
<!--
|
||||
"$Id: api-filter.html 8718 2009-06-18 17:41:03Z mike $"
|
||||
"$Id: api-filter.html 9121 2010-04-23 18:57:00Z mike $"
|
||||
|
||||
Filter and backend programming introduction for the Common UNIX Printing
|
||||
System (CUPS).
|
||||
@@ -489,7 +489,7 @@ specify an arbitrary file path to a separator page, template, or other file
|
||||
used by the filter since that can lead to an unauthorized disclosure of
|
||||
information. <em>Always</em> treat input as suspect and validate it!</p>
|
||||
|
||||
<p>If you are developing a backend that runs as root , make sure to check for
|
||||
<p>If you are developing a backend that runs as root, make sure to check for
|
||||
potential buffer overflows, integer under/overflow conditions, and file
|
||||
accesses since these can lead to privilege escalations. When writing files,
|
||||
always validate the file path and <em>never</em> allow a user to determine
|
||||
@@ -510,15 +510,15 @@ Mac OS X, for example, no backend may write to a user's home directory.</p>
|
||||
<h3><a name="PERMISSIONS">File Permissions</a></h3>
|
||||
|
||||
<p>For security reasons, CUPS will only run filters and backends that are owned
|
||||
by root and do not have world write permissions. The recommended permissions for
|
||||
filters and backends are 0555 - read and execute but no write. Backends that
|
||||
must run as root should use permissions of 0500 - read and execute by root, no
|
||||
access for other users. Write permissions can be enabled for the root user
|
||||
only.</p>
|
||||
by root and do not have world or group write permissions. The recommended
|
||||
permissions for filters and backends are 0555 - read and execute but no write.
|
||||
Backends that must run as root should use permissions of 0500 - read and execute
|
||||
by root, no access for other users. Write permissions can be enabled for the
|
||||
root user only.</p>
|
||||
|
||||
<p>To avoid a warning message, the directory containing your filter(s) must also
|
||||
be owned by root and have world write disabled - permissions of 0755 or 0555 are
|
||||
strongly encouraged.</p>
|
||||
be owned by root and have world and group write disabled - permissions of 0755
|
||||
or 0555 are strongly encouraged.</p>
|
||||
|
||||
<h3><a name="TEMPFILES">Temporary Files</a></h3>
|
||||
|
||||
|
||||
+49
-46
@@ -338,7 +338,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id: api-httpipp.html 8653 2009-05-16 23:53:28Z mike $"
|
||||
"$Id: api-httpipp.html 9121 2010-04-23 18:57:00Z mike $"
|
||||
|
||||
HTTP and IPP API header for the Common UNIX Printing System (CUPS).
|
||||
|
||||
@@ -412,7 +412,7 @@ components with a formatted resource.">httpAssembleURIf</a></li>
|
||||
<li><a href="#httpCheck" title="Check to see if there is a pending response from the server.">httpCheck</a></li>
|
||||
<li><a href="#httpClearCookie" title="Clear the cookie value(s).">httpClearCookie</a></li>
|
||||
<li><a href="#httpClearFields" title="Clear HTTP request fields.">httpClearFields</a></li>
|
||||
<li><a href="#httpClose" title="Close an HTTP connection...">httpClose</a></li>
|
||||
<li><a href="#httpClose" title="Close an HTTP connection.">httpClose</a></li>
|
||||
<li><a href="#httpConnect" title="Connect to a HTTP server.">httpConnect</a></li>
|
||||
<li><a href="#httpConnectEncrypt" title="Connect to a HTTP server using encryption.">httpConnectEncrypt</a></li>
|
||||
<li><a href="#httpDecode64" title="Base64-decode a string.">httpDecode64</a></li>
|
||||
@@ -465,7 +465,7 @@ components.">httpSeparate2</a></li>
|
||||
<li><a href="#httpSeparateURI" title="Separate a Universal Resource Identifier into its
|
||||
components.">httpSeparateURI</a></li>
|
||||
<li><a href="#httpSetAuthString" title="Set the current authorization string.">httpSetAuthString</a></li>
|
||||
<li><a href="#httpSetCookie" title="Set the cookie value(s)...">httpSetCookie</a></li>
|
||||
<li><a href="#httpSetCookie" title="Set the cookie value(s).">httpSetCookie</a></li>
|
||||
<li><a href="#httpSetExpect" title="Set the Expect: header in a request.">httpSetExpect</a></li>
|
||||
<li><a href="#httpSetField" title="Set the value of an HTTP header.">httpSetField</a></li>
|
||||
<li><a href="#httpSetLength" title="Set the content-length and content-encoding.">httpSetLength</a></li>
|
||||
@@ -537,19 +537,19 @@ are server-oriented...">http_state_t</a></li>
|
||||
<li><a href="#http_uri_status_t" title="URI separation status ">http_uri_status_t</a></li>
|
||||
<li><a href="#http_version_t" title="HTTP version numbers">http_version_t</a></li>
|
||||
<li><a href="#ipp_attribute_t" title="Attribute">ipp_attribute_t</a></li>
|
||||
<li><a href="#ipp_finish_t" title="Finishings...">ipp_finish_t</a></li>
|
||||
<li><a href="#ipp_finish_t" title="Finishings">ipp_finish_t</a></li>
|
||||
<li><a href="#ipp_iocb_t" title="IPP IO Callback Function ">ipp_iocb_t</a></li>
|
||||
<li><a href="#ipp_jstate_t" title="Job States....">ipp_jstate_t</a></li>
|
||||
<li><a href="#ipp_op_t" title="IPP operations...">ipp_op_t</a></li>
|
||||
<li><a href="#ipp_orient_t" title="Orientation...">ipp_orient_t</a></li>
|
||||
<li><a href="#ipp_pstate_t" title="Printer States....">ipp_pstate_t</a></li>
|
||||
<li><a href="#ipp_quality_t" title="Qualities...">ipp_quality_t</a></li>
|
||||
<li><a href="#ipp_jstate_t" title="Job states">ipp_jstate_t</a></li>
|
||||
<li><a href="#ipp_op_t" title="IPP operations">ipp_op_t</a></li>
|
||||
<li><a href="#ipp_orient_t" title="Orientation values">ipp_orient_t</a></li>
|
||||
<li><a href="#ipp_pstate_t" title="Printer states">ipp_pstate_t</a></li>
|
||||
<li><a href="#ipp_quality_t" title="Qualities">ipp_quality_t</a></li>
|
||||
<li><a href="#ipp_request_t" title="Request Header">ipp_request_t</a></li>
|
||||
<li><a href="#ipp_res_t" title="Resolution units...">ipp_res_t</a></li>
|
||||
<li><a href="#ipp_state_t" title="IPP states...">ipp_state_t</a></li>
|
||||
<li><a href="#ipp_res_t" title="Resolution units">ipp_res_t</a></li>
|
||||
<li><a href="#ipp_state_t" title="IPP states">ipp_state_t</a></li>
|
||||
<li><a href="#ipp_t" title="Attribute Value">ipp_t</a></li>
|
||||
<li><a href="#ipp_uchar_t" title="IPP status codes...">ipp_uchar_t</a></li>
|
||||
<li><a href="#ipp_tag_t" title="Format tags for attributes...">ipp_tag_t</a></li>
|
||||
<li><a href="#ipp_uchar_t" title="IPP status codes">ipp_uchar_t</a></li>
|
||||
<li><a href="#ipp_tag_t" title="Format tags for attributes">ipp_tag_t</a></li>
|
||||
<li><a href="#ipp_value_t" title="Attribute Value">ipp_value_t</a></li>
|
||||
</ul></li>
|
||||
<li><a href="#STRUCTURES">Structures</a><ul class="code">
|
||||
@@ -576,19 +576,19 @@ are server-oriented...">http_state_e</a></li>
|
||||
<li><a href="#http_uri_coding_e" title="URI en/decode flags">http_uri_coding_e</a></li>
|
||||
<li><a href="#http_uri_status_e" title="URI separation status ">http_uri_status_e</a></li>
|
||||
<li><a href="#http_version_e" title="HTTP version numbers">http_version_e</a></li>
|
||||
<li><a href="#ipp_finish_e" title="Finishings...">ipp_finish_e</a></li>
|
||||
<li><a href="#ipp_jstate_e" title="Job States....">ipp_jstate_e</a></li>
|
||||
<li><a href="#ipp_op_e" title="IPP operations...">ipp_op_e</a></li>
|
||||
<li><a href="#ipp_orient_e" title="Orientation...">ipp_orient_e</a></li>
|
||||
<li><a href="#ipp_pstate_e" title="Printer States....">ipp_pstate_e</a></li>
|
||||
<li><a href="#ipp_quality_e" title="Qualities...">ipp_quality_e</a></li>
|
||||
<li><a href="#ipp_res_e" title="Resolution units...">ipp_res_e</a></li>
|
||||
<li><a href="#ipp_state_e" title="IPP states...">ipp_state_e</a></li>
|
||||
<li><a href="#ipp_status_e" title="IPP status codes...">ipp_status_e</a></li>
|
||||
<li><a href="#ipp_tag_e" title="Format tags for attributes...">ipp_tag_e</a></li>
|
||||
<li><a href="#ipp_finish_e" title="Finishings">ipp_finish_e</a></li>
|
||||
<li><a href="#ipp_jstate_e" title="Job states">ipp_jstate_e</a></li>
|
||||
<li><a href="#ipp_op_e" title="IPP operations">ipp_op_e</a></li>
|
||||
<li><a href="#ipp_orient_e" title="Orientation values">ipp_orient_e</a></li>
|
||||
<li><a href="#ipp_pstate_e" title="Printer states">ipp_pstate_e</a></li>
|
||||
<li><a href="#ipp_quality_e" title="Qualities">ipp_quality_e</a></li>
|
||||
<li><a href="#ipp_res_e" title="Resolution units">ipp_res_e</a></li>
|
||||
<li><a href="#ipp_state_e" title="IPP states">ipp_state_e</a></li>
|
||||
<li><a href="#ipp_status_e" title="IPP status codes">ipp_status_e</a></li>
|
||||
<li><a href="#ipp_tag_e" title="Format tags for attributes">ipp_tag_e</a></li>
|
||||
</ul></li>
|
||||
<!--
|
||||
"$Id: api-httpipp.html 8653 2009-05-16 23:53:28Z mike $"
|
||||
"$Id: api-httpipp.html 9121 2010-04-23 18:57:00Z mike $"
|
||||
|
||||
HTTP and IPP API introduction for the Common UNIX Printing System (CUPS).
|
||||
|
||||
@@ -1531,7 +1531,7 @@ void httpClearFields (<br>
|
||||
<dd class="description">Connection to server</dd>
|
||||
</dl>
|
||||
<h3 class="function"><a name="httpClose">httpClose</a></h3>
|
||||
<p class="description">Close an HTTP connection...</p>
|
||||
<p class="description">Close an HTTP connection.</p>
|
||||
<p class="code">
|
||||
void httpClose (<br>
|
||||
<a href="#http_t">http_t</a> *http<br>
|
||||
@@ -2356,7 +2356,7 @@ httpHead(), httpOptions(), httpPost, or httpPut().
|
||||
|
||||
</p>
|
||||
<h3 class="function"><span class="info"> CUPS 1.1.19/Mac OS X 10.3 </span><a name="httpSetCookie">httpSetCookie</a></h3>
|
||||
<p class="description">Set the cookie value(s)...</p>
|
||||
<p class="description">Set the cookie value(s).</p>
|
||||
<p class="code">
|
||||
void httpSetCookie (<br>
|
||||
<a href="#http_t">http_t</a> *http,<br>
|
||||
@@ -3324,7 +3324,7 @@ typedef enum <a href="#http_version_e">http_version_e</a> http_version_t;
|
||||
typedef struct <a href="#ipp_attribute_s">ipp_attribute_s</a> ipp_attribute_t;
|
||||
</p>
|
||||
<h3 class="typedef"><a name="ipp_finish_t">ipp_finish_t</a></h3>
|
||||
<p class="description">Finishings...</p>
|
||||
<p class="description">Finishings</p>
|
||||
<p class="code">
|
||||
typedef enum <a href="#ipp_finish_e">ipp_finish_e</a> ipp_finish_t;
|
||||
</p>
|
||||
@@ -3334,27 +3334,27 @@ typedef enum <a href="#ipp_finish_e">ipp_finish_e</a> ipp_finish_t;
|
||||
typedef ssize_t (*ipp_iocb_t)(void *, <a href="#ipp_uchar_t">ipp_uchar_t</a> *, size_t);
|
||||
</p>
|
||||
<h3 class="typedef"><a name="ipp_jstate_t">ipp_jstate_t</a></h3>
|
||||
<p class="description">Job States....</p>
|
||||
<p class="description">Job states</p>
|
||||
<p class="code">
|
||||
typedef enum <a href="#ipp_jstate_e">ipp_jstate_e</a> ipp_jstate_t;
|
||||
</p>
|
||||
<h3 class="typedef"><a name="ipp_op_t">ipp_op_t</a></h3>
|
||||
<p class="description">IPP operations...</p>
|
||||
<p class="description">IPP operations</p>
|
||||
<p class="code">
|
||||
typedef enum <a href="#ipp_op_e">ipp_op_e</a> ipp_op_t;
|
||||
</p>
|
||||
<h3 class="typedef"><a name="ipp_orient_t">ipp_orient_t</a></h3>
|
||||
<p class="description">Orientation...</p>
|
||||
<p class="description">Orientation values</p>
|
||||
<p class="code">
|
||||
typedef enum <a href="#ipp_orient_e">ipp_orient_e</a> ipp_orient_t;
|
||||
</p>
|
||||
<h3 class="typedef"><a name="ipp_pstate_t">ipp_pstate_t</a></h3>
|
||||
<p class="description">Printer States....</p>
|
||||
<p class="description">Printer states</p>
|
||||
<p class="code">
|
||||
typedef enum <a href="#ipp_pstate_e">ipp_pstate_e</a> ipp_pstate_t;
|
||||
</p>
|
||||
<h3 class="typedef"><a name="ipp_quality_t">ipp_quality_t</a></h3>
|
||||
<p class="description">Qualities...</p>
|
||||
<p class="description">Qualities</p>
|
||||
<p class="code">
|
||||
typedef enum <a href="#ipp_quality_e">ipp_quality_e</a> ipp_quality_t;
|
||||
</p>
|
||||
@@ -3364,12 +3364,12 @@ typedef enum <a href="#ipp_quality_e">ipp_quality_e</a> ipp_quality_t;
|
||||
typedef union <a href="#ipp_request_u">ipp_request_u</a> ipp_request_t;
|
||||
</p>
|
||||
<h3 class="typedef"><a name="ipp_res_t">ipp_res_t</a></h3>
|
||||
<p class="description">Resolution units...</p>
|
||||
<p class="description">Resolution units</p>
|
||||
<p class="code">
|
||||
typedef enum <a href="#ipp_res_e">ipp_res_e</a> ipp_res_t;
|
||||
</p>
|
||||
<h3 class="typedef"><a name="ipp_state_t">ipp_state_t</a></h3>
|
||||
<p class="description">IPP states...</p>
|
||||
<p class="description">IPP states</p>
|
||||
<p class="code">
|
||||
typedef enum <a href="#ipp_state_e">ipp_state_e</a> ipp_state_t;
|
||||
</p>
|
||||
@@ -3379,12 +3379,12 @@ typedef enum <a href="#ipp_state_e">ipp_state_e</a> ipp_state_t;
|
||||
typedef struct <a href="#ipp_s">ipp_s</a> ipp_t;
|
||||
</p>
|
||||
<h3 class="typedef"><a name="ipp_uchar_t">ipp_uchar_t</a></h3>
|
||||
<p class="description">IPP status codes...</p>
|
||||
<p class="description">IPP status codes</p>
|
||||
<p class="code">
|
||||
typedef typedef unsigned char ipp_uchar_t;
|
||||
</p>
|
||||
<h3 class="typedef"><a name="ipp_tag_t">ipp_tag_t</a></h3>
|
||||
<p class="description">Format tags for attributes...</p>
|
||||
<p class="description">Format tags for attributes</p>
|
||||
<p class="code">
|
||||
typedef enum <a href="#ipp_tag_e">ipp_tag_e</a> ipp_tag_t;
|
||||
</p>
|
||||
@@ -3442,6 +3442,7 @@ with a hostname. </p>
|
||||
<a href="#ipp_attribute_t">ipp_attribute_t</a> *prev;<br>
|
||||
<a href="#ipp_request_t">ipp_request_t</a> request;<br>
|
||||
<a href="#ipp_state_t">ipp_state_t</a> state;<br>
|
||||
int use;<br>
|
||||
};</p>
|
||||
<h4 class="members">Members</h4>
|
||||
<dl>
|
||||
@@ -3459,6 +3460,8 @@ with a hostname. </p>
|
||||
<dd class="description">Request header</dd>
|
||||
<dt>state </dt>
|
||||
<dd class="description">State of request</dd>
|
||||
<dt>use </dt>
|
||||
<dd class="description">Use count</dd>
|
||||
</dl>
|
||||
<h2 class="title"><a name="UNIONS">Unions</a></h2>
|
||||
<h3 class="union"><a name="ipp_request_u">ipp_request_u</a></h3>
|
||||
@@ -3786,7 +3789,7 @@ are server-oriented...</p>
|
||||
<dd class="description">HTTP/1.1</dd>
|
||||
</dl>
|
||||
<h3 class="enumeration"><a name="ipp_finish_e">ipp_finish_e</a></h3>
|
||||
<p class="description">Finishings...</p>
|
||||
<p class="description">Finishings</p>
|
||||
<h4 class="constants">Constants</h4>
|
||||
<dl>
|
||||
<dt>IPP_FINISHINGS_BALE </dt>
|
||||
@@ -3847,7 +3850,7 @@ are server-oriented...</p>
|
||||
<dd class="description">Trim (any type)</dd>
|
||||
</dl>
|
||||
<h3 class="enumeration"><a name="ipp_jstate_e">ipp_jstate_e</a></h3>
|
||||
<p class="description">Job States....</p>
|
||||
<p class="description">Job states</p>
|
||||
<h4 class="constants">Constants</h4>
|
||||
<dl>
|
||||
<dt>IPP_JOB_ABORTED </dt>
|
||||
@@ -3866,7 +3869,7 @@ are server-oriented...</p>
|
||||
<dd class="description">Job has been stopped</dd>
|
||||
</dl>
|
||||
<h3 class="enumeration"><a name="ipp_op_e">ipp_op_e</a></h3>
|
||||
<p class="description">IPP operations...</p>
|
||||
<p class="description">IPP operations</p>
|
||||
<h4 class="constants">Constants</h4>
|
||||
<dl>
|
||||
<dt>CUPS_ACCEPT_JOBS </dt>
|
||||
@@ -3953,7 +3956,7 @@ are server-oriented...</p>
|
||||
<dd class="description">Validate job options</dd>
|
||||
</dl>
|
||||
<h3 class="enumeration"><a name="ipp_orient_e">ipp_orient_e</a></h3>
|
||||
<p class="description">Orientation...</p>
|
||||
<p class="description">Orientation values</p>
|
||||
<h4 class="constants">Constants</h4>
|
||||
<dl>
|
||||
<dt>IPP_LANDSCAPE </dt>
|
||||
@@ -3966,7 +3969,7 @@ are server-oriented...</p>
|
||||
<dd class="description">180 degrees</dd>
|
||||
</dl>
|
||||
<h3 class="enumeration"><a name="ipp_pstate_e">ipp_pstate_e</a></h3>
|
||||
<p class="description">Printer States....</p>
|
||||
<p class="description">Printer states</p>
|
||||
<h4 class="constants">Constants</h4>
|
||||
<dl>
|
||||
<dt>IPP_PRINTER_IDLE </dt>
|
||||
@@ -3977,7 +3980,7 @@ are server-oriented...</p>
|
||||
<dd class="description">Printer is stopped</dd>
|
||||
</dl>
|
||||
<h3 class="enumeration"><a name="ipp_quality_e">ipp_quality_e</a></h3>
|
||||
<p class="description">Qualities...</p>
|
||||
<p class="description">Qualities</p>
|
||||
<h4 class="constants">Constants</h4>
|
||||
<dl>
|
||||
<dt>IPP_QUALITY_DRAFT </dt>
|
||||
@@ -3988,7 +3991,7 @@ are server-oriented...</p>
|
||||
<dd class="description">Normal quality</dd>
|
||||
</dl>
|
||||
<h3 class="enumeration"><a name="ipp_res_e">ipp_res_e</a></h3>
|
||||
<p class="description">Resolution units...</p>
|
||||
<p class="description">Resolution units</p>
|
||||
<h4 class="constants">Constants</h4>
|
||||
<dl>
|
||||
<dt>IPP_RES_PER_CM </dt>
|
||||
@@ -3997,7 +4000,7 @@ are server-oriented...</p>
|
||||
<dd class="description">Pixels per inch</dd>
|
||||
</dl>
|
||||
<h3 class="enumeration"><a name="ipp_state_e">ipp_state_e</a></h3>
|
||||
<p class="description">IPP states...</p>
|
||||
<p class="description">IPP states</p>
|
||||
<h4 class="constants">Constants</h4>
|
||||
<dl>
|
||||
<dt>IPP_ATTRIBUTE </dt>
|
||||
@@ -4012,7 +4015,7 @@ are server-oriented...</p>
|
||||
<dd class="description">Nothing is happening/request completed</dd>
|
||||
</dl>
|
||||
<h3 class="enumeration"><a name="ipp_status_e">ipp_status_e</a></h3>
|
||||
<p class="description">IPP status codes...</p>
|
||||
<p class="description">IPP status codes</p>
|
||||
<h4 class="constants">Constants</h4>
|
||||
<dl>
|
||||
<dt>CUPS_SEE_OTHER </dt>
|
||||
@@ -4105,7 +4108,7 @@ are server-oriented...</p>
|
||||
<dd class="description">server-error-version-not-supported</dd>
|
||||
</dl>
|
||||
<h3 class="enumeration"><a name="ipp_tag_e">ipp_tag_e</a></h3>
|
||||
<p class="description">Format tags for attributes...</p>
|
||||
<p class="description">Format tags for attributes</p>
|
||||
<h4 class="constants">Constants</h4>
|
||||
<dl>
|
||||
<dt>IPP_TAG_ADMINDEFINE </dt>
|
||||
|
||||
@@ -338,7 +338,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id: api-ppd.html 8653 2009-05-16 23:53:28Z mike $"
|
||||
"$Id: api-ppd.html 9121 2010-04-23 18:57:00Z mike $"
|
||||
|
||||
PPD API header for the Common UNIX Printing System (CUPS).
|
||||
|
||||
@@ -482,7 +482,7 @@ conflicts.">ppdMarkOption</a></li>
|
||||
<li><a href="#ppd_ui_e" title="UI Types">ppd_ui_e</a></li>
|
||||
</ul></li>
|
||||
<!--
|
||||
"$Id: api-ppd.html 8653 2009-05-16 23:53:28Z mike $"
|
||||
"$Id: api-ppd.html 9121 2010-04-23 18:57:00Z mike $"
|
||||
|
||||
PPD API introduction for the Common UNIX Printing System (CUPS).
|
||||
|
||||
@@ -1805,6 +1805,7 @@ typedef enum <a href="#ppd_ui_e">ppd_ui_e</a> ppd_ui_t;
|
||||
char *product;<br>
|
||||
<a href="#ppd_profile_t">ppd_profile_t</a> *profiles;<br>
|
||||
char *protocols;<br>
|
||||
void *pwg;<br>
|
||||
char *shortnickname;<br>
|
||||
<a href="#ppd_size_t">ppd_size_t</a> *sizes;<br>
|
||||
int throughput;<br>
|
||||
@@ -1887,6 +1888,8 @@ typedef enum <a href="#ppd_ui_e">ppd_ui_e</a> ppd_ui_t;
|
||||
<dd class="description">sRGB color profiles </dd>
|
||||
<dt>protocols <span class="info"> CUPS 1.1.19/Mac OS X 10.3 </span></dt>
|
||||
<dd class="description">Protocols (BCP, TBCP) string </dd>
|
||||
<dt>pwg </dt>
|
||||
<dd class="description">PWG to/from PPD mappings</dd>
|
||||
<dt>shortnickname </dt>
|
||||
<dd class="description">Short version of nickname</dd>
|
||||
<dt>sizes </dt>
|
||||
@@ -2154,6 +2157,8 @@ typedef enum <a href="#ppd_ui_e">ppd_ui_e</a> ppd_ui_t;
|
||||
<dd class="description">Bad OrderDependency</dd>
|
||||
<dt>PPD_BAD_UI_CONSTRAINTS </dt>
|
||||
<dd class="description">Bad UIConstraints</dd>
|
||||
<dt>PPD_BAD_VALUE </dt>
|
||||
<dd class="description">Bad value string</dd>
|
||||
<dt>PPD_FILE_OPEN_ERROR </dt>
|
||||
<dd class="description">Unable to open PPD file</dd>
|
||||
<dt>PPD_ILLEGAL_CHARACTER </dt>
|
||||
@@ -2172,6 +2177,8 @@ typedef enum <a href="#ppd_ui_e">ppd_ui_e</a> ppd_ui_t;
|
||||
<dd class="description">Line longer than 255 chars</dd>
|
||||
<dt>PPD_MISSING_ASTERISK </dt>
|
||||
<dd class="description">Missing asterisk in column 0</dd>
|
||||
<dt>PPD_MISSING_OPTION_KEYWORD </dt>
|
||||
<dd class="description">Missing option keyword</dd>
|
||||
<dt>PPD_MISSING_PPDADOBE4 </dt>
|
||||
<dd class="description">Missing PPD-Adobe-4.x header</dd>
|
||||
<dt>PPD_MISSING_VALUE </dt>
|
||||
|
||||
@@ -103,7 +103,7 @@ for more information.</P>
|
||||
<H2 CLASS="title"><A NAME="IMPLEMENT">Implementation Information</A></H2>
|
||||
|
||||
<P>CUPS implements Kerberos over HTTP using GSSAPI and the service name
|
||||
"ipp". Because of limitations in the HTTP GSSAPI protocol extension, only
|
||||
"host". Because of limitations in the HTTP GSSAPI protocol extension, only
|
||||
a single domain/KDC is supported for authentication.</P>
|
||||
|
||||
<P>When doing printing tasks that require authentication, CUPS requests a
|
||||
|
||||
@@ -945,25 +945,6 @@ of authentication to use for IPP operations that require a
|
||||
username. The default is <CODE>Basic</CODE>.</P>
|
||||
|
||||
|
||||
<H2 CLASS="title"><A NAME="DefaultCharset">DefaultCharset</A></H2>
|
||||
|
||||
<H3>Examples</H3>
|
||||
|
||||
<PRE CLASS="command">
|
||||
DefaultCharset utf-8
|
||||
DefaultCharset iso-8859-1
|
||||
DefaultCharset windows-1251
|
||||
</PRE>
|
||||
|
||||
<H3>Description</H3>
|
||||
|
||||
<P>The <CODE>DefaultCharset</CODE> directive sets the default
|
||||
character set to use for client connections. The default
|
||||
character set is <CODE>utf-8</CODE> but is overridden by the
|
||||
character set for the language specified by the client or the
|
||||
<CODE>DefaultLanguage</CODE> directive.</P>
|
||||
|
||||
|
||||
<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2/Mac OS X 10.5</SPAN><A NAME="DefaultEncryption">DefaultEncryption</A></H2>
|
||||
|
||||
<H3>Examples</H3>
|
||||
|
||||
+32
-45
@@ -103,13 +103,11 @@ diff -urN olddirectory directory >filename.patch
|
||||
in their entirety, however that may delay the adoption of your
|
||||
changes.</P>
|
||||
|
||||
<BLOCKQUOTE>Patches and files must conform to the standards
|
||||
outlined in the "<A HREF="#CODING">Coding Guidelines</A>" and "<A
|
||||
HREF="#MAKEFILES">Makefile Guidelines</A>" sections in this
|
||||
document. In addition, since Apple Inc. provides CUPS
|
||||
under multiple licenses, we require that you assign the copyright
|
||||
for your changes and files to us for inclusion in
|
||||
CUPS.</BLOCKQUOTE>
|
||||
<BLOCKQUOTE>Patches and files must conform to the standards outlined in the
|
||||
"<A HREF="#CODING">Coding Guidelines</A>" and "<A HREF="#MAKEFILES">Makefile
|
||||
Guidelines</A>" sections in this document. In addition, since Apple Inc.
|
||||
provides CUPS under multiple licenses, we require that you assign the copyright
|
||||
for your changes and files to us for inclusion in CUPS.</BLOCKQUOTE>
|
||||
|
||||
|
||||
<H2 CLASS="title"><A NAME="PRACTICES">Software Development Practices</A></H2>
|
||||
@@ -151,51 +149,45 @@ MAJOR.MINOR.PATCH
|
||||
2.0.0
|
||||
</PRE>
|
||||
|
||||
<P>The first production release in a MAJOR.MINOR series
|
||||
(MAJOR.MINOR.0) is called a feature release. Feature releases are
|
||||
the only releases that may contain new features. Subsequent
|
||||
production releases in a MAJOR.MINOR series may only contain bug
|
||||
fixes.</P>
|
||||
<P>The first production release in a MAJOR.MINOR series (MAJOR.MINOR.0) is
|
||||
called a feature release. Feature releases are the only releases that may
|
||||
contain new features. Subsequent production releases in a MAJOR.MINOR series may
|
||||
only contain bug fixes.</P>
|
||||
|
||||
<BLOCKQUOTE>We did not hold to this limitation in the CUPS 1.1
|
||||
series for a variety of reasons. Starting with CUPS 1.2, the "no
|
||||
new features in a patch release" policy will be strictly
|
||||
enforced. This should yield more frequent minor releases with
|
||||
fewer new features (and interactions!) to
|
||||
validate/test.</BLOCKQUOTE>
|
||||
<BLOCKQUOTE>We did not hold to this limitation in the CUPS 1.1 series for a
|
||||
variety of reasons. Starting with CUPS 1.2, the "no new features in a patch
|
||||
release" policy has been strictly enforced. The policy has also resulted in
|
||||
fewer new features (and interactions!) to validate/test in the subsequence
|
||||
feature releases.</BLOCKQUOTE>
|
||||
|
||||
<P>Beta-test releases are identified by appending the letter B
|
||||
to the major and minor version numbers followed by the beta
|
||||
release number:</P>
|
||||
<P>Beta-test releases are identified by appending the letter B to the major and
|
||||
minor version numbers followed by the beta release number:</P>
|
||||
|
||||
<PRE CLASS="command">
|
||||
MAJOR.MINORbNUMBER
|
||||
1.2b1
|
||||
</PRE>
|
||||
|
||||
<P>Release candidates are identified by appending the letters RC
|
||||
to the major and minor version numbers followed by the release
|
||||
candidate number:</P>
|
||||
<P>Release candidates are identified by appending the letters RC to the major
|
||||
and minor version numbers followed by the release candidate number:</P>
|
||||
|
||||
<PRE CLASS="command">
|
||||
MAJOR.MINORrcNUMBER
|
||||
1.2rc1
|
||||
</PRE>
|
||||
|
||||
<P>Developer snapshots are identified by appending the letters
|
||||
SVN-R to the major and minor version numbers followed by the
|
||||
revision number:</P>
|
||||
<P>Developer snapshots are identified by appending the letters SVN-R to the
|
||||
major and minor version numbers followed by the revision number:</P>
|
||||
|
||||
<PRE CLASS="command">
|
||||
MAJOR.MINORsvn-rREV
|
||||
1.2svn-r1234
|
||||
</PRE>
|
||||
|
||||
<P>Beta-test releases, release candidates, and developer
|
||||
snapshots are only created for new minor releases. Once a
|
||||
production release has been made (MAJOR.MINOR.0), subsequent
|
||||
patch releases are issues without preliminary beta or release
|
||||
testing.</P>
|
||||
<P>Beta-test releases, release candidates, and developer snapshots are only
|
||||
created for new minor releases. Once a production release has been made
|
||||
(MAJOR.MINOR.0), subsequent patch releases are issues without preliminary beta
|
||||
or release testing.</P>
|
||||
|
||||
<H3>Version Control (Subversion)</H3>
|
||||
|
||||
@@ -212,16 +204,9 @@ applicable STRs. The following format <em>must</em> be used for
|
||||
commit log messages:</P>
|
||||
|
||||
<PRE CLASS="command">
|
||||
Summary of the change ("fix PostScript printing bug") along
|
||||
with corresponding STRs ("STR #1, STR #6")
|
||||
Summary of the change on one line followed by bug number (STR #NNNN)
|
||||
|
||||
foo.cxx:
|
||||
- function(): Detailed list of changes
|
||||
- function2(): Detailed list of changes
|
||||
- Summary of design changes ("added new foo struct")
|
||||
|
||||
bar.h:
|
||||
- More detailed changes
|
||||
Detailed list of changes.
|
||||
</PRE>
|
||||
|
||||
<P>Primary development occurs on the <var>trunk</var> branch,
|
||||
@@ -625,7 +610,7 @@ the Subversion "$Id$" tag:</P>
|
||||
*
|
||||
* Description of file contents.
|
||||
*
|
||||
* Copyright 2007 by Apple Inc.
|
||||
* Copyright 2010 by Apple Inc.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
* property of Apple Inc. and are protected by Federal copyright
|
||||
@@ -703,13 +688,15 @@ special text in the function description comment:</P>
|
||||
|
||||
<UL>
|
||||
|
||||
<LI><CODE>@since CUPS <I>version</I>@</CODE> - Marks the
|
||||
function as new in the specified version of CUPS.</LI>
|
||||
|
||||
<LI><CODE>@deprecated@</CODE> - Marks the function as
|
||||
deprecated (not recommended for new development and
|
||||
scheduled for removal)</LI>
|
||||
|
||||
<LI><CODE>@since CUPS <I>version</I>@</CODE> - Marks the
|
||||
function as new in the specified version of CUPS.</LI>
|
||||
|
||||
<LI><CODE>@private@</CODE> - Marks the function as private.</LI>
|
||||
|
||||
</UL>
|
||||
|
||||
<H3>Variables</H3>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<!--
|
||||
"$Id: spec-ppd.html 8933 2009-12-16 00:08:31Z mike $"
|
||||
"$Id: spec-ppd.html 9143 2010-05-21 15:36:30Z mike $"
|
||||
|
||||
CUPS PPD extensions specification for the Common UNIX Printing System (CUPS).
|
||||
|
||||
@@ -1806,7 +1806,7 @@ the application. The following preset names are currently defined:</p>
|
||||
choice (*MainKeyword OptionKeyword) or a preset identifier and value
|
||||
(com.apple.print.preset.foo value). Preset identifiers and their supported
|
||||
values are documented in "<a
|
||||
href='http://developer.apple.com/documentation/Printing/Conceptual/PresetDraft/presets_intro/chapter_1_section_2.html'
|
||||
href='http://developer.apple.com/mac/library/documentation/Printing/Conceptual/PresetDraft/presets_intro/presets_intro.html'
|
||||
>Creating Printing Presets for iPhoto: Printing Presets File Format</a>".</p>
|
||||
|
||||
<p>Presets, like options, can also be localized in multiple languages.</p>
|
||||
|
||||
@@ -100,7 +100,7 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
</TD></TR>
|
||||
<TR><TD> </TD></TR>
|
||||
<TR><TD CLASS="trailer">CUPS dan logo CUPS logo adalah merek dagang dari
|
||||
<A HREF="http://www.apple.com">Apple Inc.</A> Hak cipta CUPS pada 2007-2009 Apple
|
||||
<A HREF="http://www.apple.com">Apple Inc.</A> Hak cipta CUPS pada 2007-2010 Apple
|
||||
Inc. Semua hak terpelihara.</TD></TR>
|
||||
</TABLE>
|
||||
</BODY>
|
||||
|
||||
+1
-1
@@ -100,7 +100,7 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
</TD></TR>
|
||||
<TR><TD> </TD></TR>
|
||||
<TR><TD CLASS="trailer">CUPS and the CUPS logo are trademarks of
|
||||
<A HREF="http://www.apple.com">Apple Inc.</A> CUPS is copyright 2007-2009 Apple
|
||||
<A HREF="http://www.apple.com">Apple Inc.</A> CUPS is copyright 2007-2010 Apple
|
||||
Inc. All rights reserved.</TD></TR>
|
||||
</TABLE>
|
||||
</BODY>
|
||||
|
||||
@@ -100,7 +100,7 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
</TD></TR>
|
||||
<TR><TD> </TD></TR>
|
||||
<TR><TD CLASS="trailer">CUPS e il logo CUPS sono marchi di
|
||||
<A HREF="http://www.apple.com">Apple Inc.</A> CUPS è un copyright 2007-2009 di Apple
|
||||
<A HREF="http://www.apple.com">Apple Inc.</A> CUPS è un copyright 2007-2010 di Apple
|
||||
Inc. Tutti i diritti sono riservati.</TD></TR>
|
||||
</TABLE>
|
||||
</BODY>
|
||||
|
||||
@@ -100,7 +100,7 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
</TD></TR>
|
||||
<TR><TD> </TD></TR>
|
||||
<TR><TD CLASS="trailer">CUPS and the CUPS logo are trademarks of
|
||||
<A HREF="http://www.apple.com">Apple Inc.</A> CUPS is copyright 2007-2009 Apple
|
||||
<A HREF="http://www.apple.com">Apple Inc.</A> CUPS is copyright 2007-2010 Apple
|
||||
Inc. All rights reserved.</TD></TR>
|
||||
</TABLE>
|
||||
</BODY>
|
||||
|
||||
@@ -101,7 +101,7 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
<TR><TD> </TD></TR>
|
||||
<TR><TD CLASS="trailer">CUPS i logo CUPS
|
||||
są znakami handlowymi <A HREF="http://www.apple.com">Apple Inc.</A> CUPS
|
||||
copyright 2007-2009 Apple Inc. Wszystkie prawa zastrzeżone.</TD></TR>
|
||||
copyright 2007-2010 Apple Inc. Wszystkie prawa zastrzeżone.</TD></TR>
|
||||
</TABLE>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
||||
@@ -97,7 +97,7 @@ HEIGHT="128" ALT="CUPS"></A></TD>
|
||||
|
||||
</TD></TR>
|
||||
<TR><TD> </TD></TR>
|
||||
<TR><TD CLASS="trailer">CUPS а также логотип CUPS являются зарегистрированными торговыми марками <A HREF="http://www.apple.com">Apple Inc.</A> Авторские права на CUPS принадлежат (2007-2009) компании Apple Inc. Все права защищены.</TD></TR>
|
||||
<TR><TD CLASS="trailer">CUPS а также логотип CUPS являются зарегистрированными торговыми марками <A HREF="http://www.apple.com">Apple Inc.</A> Авторские права на CUPS принадлежат (2007-2010) компании Apple Inc. Все права защищены.</TD></TR>
|
||||
</TABLE>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
||||
+7
-5
@@ -3,7 +3,7 @@
|
||||
#
|
||||
# Makefile for the CUPS base drivers.
|
||||
#
|
||||
# Copyright 2007-2009 by Apple Inc.
|
||||
# Copyright 2007-2010 by Apple Inc.
|
||||
# Copyright 2002-2005 by Easy Software Products.
|
||||
#
|
||||
# These coded instructions, statements, and computer programs are the
|
||||
@@ -51,12 +51,14 @@ UNITTARGETS = \
|
||||
testcmyk \
|
||||
testdither \
|
||||
testrgb
|
||||
TARGETS = \
|
||||
$(LIBTARGETS) \
|
||||
FILTERS = \
|
||||
commandtoescpx \
|
||||
commandtopclx \
|
||||
rastertoescpx \
|
||||
rastertopclx
|
||||
TARGETS = \
|
||||
$(LIBTARGETS) \
|
||||
$(FILTERS)
|
||||
|
||||
|
||||
#
|
||||
@@ -120,12 +122,12 @@ install-data:
|
||||
|
||||
install-exec:
|
||||
$(INSTALL_DIR) $(SERVERBIN)/filter
|
||||
for file in commandtoescpx commandtopclx rastertoescpx rastertopclx; do \
|
||||
for file in $(FILTERS); do \
|
||||
$(INSTALL_BIN) $$file $(SERVERBIN)/filter; \
|
||||
done
|
||||
if test "x$(SYMROOT)" != "x"; then \
|
||||
$(INSTALL_DIR) $(SYMROOT); \
|
||||
for file in commandtoescpx commandtopclx rastertoescpx rastertopclx; do \
|
||||
for file in $(FILTERS); do \
|
||||
cp $$file $(SYMROOT); \
|
||||
done \
|
||||
fi
|
||||
|
||||
+6
-2
@@ -3,7 +3,7 @@
|
||||
#
|
||||
# Filter makefile for the Common UNIX Printing System (CUPS).
|
||||
#
|
||||
# Copyright 2007-2009 by Apple Inc.
|
||||
# Copyright 2007-2010 by Apple Inc.
|
||||
# Copyright 1997-2006 by Easy Software Products.
|
||||
#
|
||||
# These coded instructions, statements, and computer programs are the
|
||||
@@ -131,7 +131,7 @@ install-exec:
|
||||
$(LN) rastertolabel $(SERVERBIN)/filter/rastertodymo
|
||||
if test "x$(SYMROOT)" != "x"; then \
|
||||
$(INSTALL_DIR) $(SYMROOT); \
|
||||
for file in $(TARGETS); do \
|
||||
for file in $(FILTERS); do \
|
||||
cp $$file $(SYMROOT); \
|
||||
done \
|
||||
fi
|
||||
@@ -161,6 +161,10 @@ install-libs: $(INSTALLSTATIC) $(INSTALL32) $(INSTALL64)
|
||||
$(RM) $(LIBDIR)/libcupsimage.dylib; \
|
||||
$(LN) $(LIBCUPSIMAGE) $(LIBDIR)/libcupsimage.dylib; \
|
||||
fi
|
||||
if test "x$(SYMROOT)" != "x"; then \
|
||||
$(INSTALL_DIR) $(SYMROOT); \
|
||||
cp $(LIBCUPSIMAGE) $(SYMROOT); \
|
||||
fi
|
||||
|
||||
installstatic:
|
||||
$(INSTALL_DIR) -m 755 $(LIBDIR)
|
||||
|
||||
+61
-22
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* PostScript filter for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1993-2007 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -121,14 +121,22 @@ typedef struct /**** Document information ****/
|
||||
*title; /* Job name */
|
||||
int copies; /* Number of copies */
|
||||
const char *ap_input_slot, /* AP_FIRSTPAGE_InputSlot value */
|
||||
*ap_manual_feed; /* AP_FIRSTPAGE_ManualFeed value */
|
||||
*ap_manual_feed, /* AP_FIRSTPAGE_ManualFeed value */
|
||||
*ap_media_color, /* AP_FIRSTPAGE_MediaColor value */
|
||||
*ap_media_type, /* AP_FIRSTPAGE_MediaType value */
|
||||
*ap_page_region, /* AP_FIRSTPAGE_PageRegion value */
|
||||
*ap_page_size; /* AP_FIRSTPAGE_PageSize value */
|
||||
float brightness; /* brightness value */
|
||||
int collate, /* Collate copies? */
|
||||
emit_jcl, /* Emit JCL commands? */
|
||||
fitplot; /* Fit pages to media */
|
||||
float gamma; /* gamma value */
|
||||
const char *input_slot, /* InputSlot value */
|
||||
*manual_feed; /* ManualFeed value */
|
||||
*manual_feed, /* ManualFeed value */
|
||||
*media_color, /* MediaColor value */
|
||||
*media_type, /* MediaType value */
|
||||
*page_region, /* PageRegion value */
|
||||
*page_size; /* PageSize value */
|
||||
int mirror, /* doc->mirror/mirror pages */
|
||||
number_up, /* Number of pages on each sheet */
|
||||
number_up_layout, /* doc->number_up_layout of N-up pages */
|
||||
@@ -1322,6 +1330,18 @@ copy_page(cups_file_t *fp, /* I - File to read from */
|
||||
doc->ap_manual_feed,
|
||||
pageinfo->num_options,
|
||||
&(pageinfo->options));
|
||||
pageinfo->num_options = cupsAddOption("MediaColor", doc->ap_media_color,
|
||||
pageinfo->num_options,
|
||||
&(pageinfo->options));
|
||||
pageinfo->num_options = cupsAddOption("MediaType", doc->ap_media_type,
|
||||
pageinfo->num_options,
|
||||
&(pageinfo->options));
|
||||
pageinfo->num_options = cupsAddOption("PageRegion", doc->ap_page_region,
|
||||
pageinfo->num_options,
|
||||
&(pageinfo->options));
|
||||
pageinfo->num_options = cupsAddOption("PageSize", doc->ap_page_size,
|
||||
pageinfo->num_options,
|
||||
&(pageinfo->options));
|
||||
}
|
||||
else if (doc->page == (Duplex + 2))
|
||||
{
|
||||
@@ -1337,6 +1357,18 @@ copy_page(cups_file_t *fp, /* I - File to read from */
|
||||
doc->manual_feed,
|
||||
pageinfo->num_options,
|
||||
&(pageinfo->options));
|
||||
pageinfo->num_options = cupsAddOption("MediaColor", doc->media_color,
|
||||
pageinfo->num_options,
|
||||
&(pageinfo->options));
|
||||
pageinfo->num_options = cupsAddOption("MediaType", doc->media_type,
|
||||
pageinfo->num_options,
|
||||
&(pageinfo->options));
|
||||
pageinfo->num_options = cupsAddOption("PageRegion", doc->page_region,
|
||||
pageinfo->num_options,
|
||||
&(pageinfo->options));
|
||||
pageinfo->num_options = cupsAddOption("PageSize", doc->page_size,
|
||||
pageinfo->num_options,
|
||||
&(pageinfo->options));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2388,18 +2420,35 @@ set_pstops_options(
|
||||
doc->new_bounding_box[3] = INT_MIN;
|
||||
|
||||
/*
|
||||
* AP_FIRSTPAGE_InputSlot
|
||||
*/
|
||||
|
||||
doc->ap_input_slot = cupsGetOption("AP_FIRSTPAGE_InputSlot", num_options,
|
||||
options);
|
||||
|
||||
/*
|
||||
* AP_FIRSTPAGE_ManualFeed
|
||||
* AP_FIRSTPAGE_* and the corresponding non-first-page options.
|
||||
*/
|
||||
|
||||
doc->ap_input_slot = cupsGetOption("AP_FIRSTPAGE_InputSlot", num_options,
|
||||
options);
|
||||
doc->ap_manual_feed = cupsGetOption("AP_FIRSTPAGE_ManualFeed", num_options,
|
||||
options);
|
||||
doc->ap_media_color = cupsGetOption("AP_FIRSTPAGE_MediaColor", num_options,
|
||||
options);
|
||||
doc->ap_media_type = cupsGetOption("AP_FIRSTPAGE_MediaType", num_options,
|
||||
options);
|
||||
doc->ap_page_region = cupsGetOption("AP_FIRSTPAGE_PageRegion", num_options,
|
||||
options);
|
||||
doc->ap_page_size = cupsGetOption("AP_FIRSTPAGE_PageSize", num_options,
|
||||
options);
|
||||
|
||||
if ((choice = ppdFindMarkedChoice(ppd, "InputSlot")) != NULL)
|
||||
doc->input_slot = choice->choice;
|
||||
if ((choice = ppdFindMarkedChoice(ppd, "ManualFeed")) != NULL)
|
||||
doc->manual_feed = choice->choice;
|
||||
if ((choice = ppdFindMarkedChoice(ppd, "MediaColor")) != NULL)
|
||||
doc->media_color = choice->choice;
|
||||
if ((choice = ppdFindMarkedChoice(ppd, "MediaType")) != NULL)
|
||||
doc->media_type = choice->choice;
|
||||
if ((choice = ppdFindMarkedChoice(ppd, "PageRegion")) != NULL)
|
||||
doc->page_region = choice->choice;
|
||||
if ((choice = ppdFindMarkedChoice(ppd, "PageSize")) != NULL)
|
||||
doc->page_size = choice->choice;
|
||||
|
||||
|
||||
/*
|
||||
* brightness
|
||||
@@ -2495,19 +2544,9 @@ set_pstops_options(
|
||||
doc->gamma = 1.0f;
|
||||
|
||||
/*
|
||||
* InputSlot
|
||||
* mirror/MirrorPrint
|
||||
*/
|
||||
|
||||
if ((choice = ppdFindMarkedChoice(ppd, "InputSlot")) != NULL)
|
||||
doc->input_slot = choice->choice;
|
||||
|
||||
/*
|
||||
* ManualFeed
|
||||
*/
|
||||
|
||||
if ((choice = ppdFindMarkedChoice(ppd, "ManualFeed")) != NULL)
|
||||
doc->manual_feed = choice->choice;
|
||||
|
||||
if ((choice = ppdFindMarkedChoice(ppd, "MirrorPrint")) != NULL)
|
||||
{
|
||||
val = choice->choice;
|
||||
|
||||
+15
-3
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* Text to PostScript filter for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2007-2008 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1993-2007 by Easy Software Products.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -181,8 +181,20 @@ WriteProlog(const char *title, /* I - Title of job */
|
||||
exit(1);
|
||||
}
|
||||
|
||||
Page = calloc(sizeof(lchar_t *), SizeLines);
|
||||
Page[0] = calloc(sizeof(lchar_t), SizeColumns * SizeLines);
|
||||
if ((Page = calloc(sizeof(lchar_t *), SizeLines)) == NULL)
|
||||
{
|
||||
_cupsLangPrintf(stderr, _("ERROR: Unable to print %dx%d text page!\n"),
|
||||
SizeColumns, SizeLines);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if ((Page[0] = calloc(sizeof(lchar_t), SizeColumns * SizeLines)) == NULL)
|
||||
{
|
||||
_cupsLangPrintf(stderr, _("ERROR: Unable to print %dx%d text page!\n"),
|
||||
SizeColumns, SizeLines);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
for (i = 1; i < SizeLines; i ++)
|
||||
Page[i] = Page[0] + i * SizeColumns;
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
.\"
|
||||
.\" cupsd.conf man page for the Common UNIX Printing System (CUPS).
|
||||
.\"
|
||||
.\" Copyright 2007-2009 by Apple Inc.
|
||||
.\" Copyright 2007-2010 by Apple Inc.
|
||||
.\" Copyright 1997-2006 by Easy Software Products.
|
||||
.\"
|
||||
.\" These coded instructions, statements, and computer programs are the
|
||||
@@ -12,7 +12,7 @@
|
||||
.\" which should have been included with this file. If this file is
|
||||
.\" file is missing or damaged, see the license at "http://www.cups.org/".
|
||||
.\"
|
||||
.TH cupsd.conf 5 "CUPS" "14 July 2009" "Apple Inc."
|
||||
.TH cupsd.conf 5 "CUPS" "28 January 2010" "Apple Inc."
|
||||
.SH NAME
|
||||
cupsd.conf \- server configuration file for cups
|
||||
.SH DESCRIPTION
|
||||
@@ -252,10 +252,6 @@ DefaultAuthType Negotiate
|
||||
.br
|
||||
Specifies the default type of authentication to use.
|
||||
.TP 5
|
||||
DefaultCharset charset
|
||||
.br
|
||||
Specifies the default character set to use for text.
|
||||
.TP 5
|
||||
DefaultEncryption Never
|
||||
.TP 5
|
||||
DefaultEncryption IfRequested
|
||||
|
||||
+18
-4
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id: cupstestppd.man 8421 2009-03-09 21:59:55Z mike $"
|
||||
.\" "$Id: cupstestppd.man 9120 2010-04-23 18:56:34Z mike $"
|
||||
.\"
|
||||
.\" cupstestppd man page for the Common UNIX Printing System (CUPS).
|
||||
.\"
|
||||
@@ -12,12 +12,14 @@
|
||||
.\" which should have been included with this file. If this file is
|
||||
.\" file is missing or damaged, see the license at "http://www.cups.org/".
|
||||
.\"
|
||||
.TH cupstestppd 1 "CUPS" "2 March 2009" "Apple Inc."
|
||||
.TH cupstestppd 1 "CUPS" "19 November 2009" "Apple Inc."
|
||||
.SH NAME
|
||||
cupstestppd \- test conformance of ppd files
|
||||
.SH SYNOPSIS
|
||||
.B cupstestppd
|
||||
[ -R
|
||||
[ -I
|
||||
.I category
|
||||
] [ -R
|
||||
.I rootdir
|
||||
] [ -W
|
||||
.I category
|
||||
@@ -42,6 +44,18 @@ on the standard input.
|
||||
.SH OPTIONS
|
||||
\fIcupstestppd\fR supports the following options:
|
||||
.TP 5
|
||||
-I filename
|
||||
.br
|
||||
Ignores all PCFileName warnings.
|
||||
.TP 5
|
||||
-I filters
|
||||
.br
|
||||
Ignores all filter errors.
|
||||
.TP 5
|
||||
-I profiles
|
||||
.br
|
||||
Ignores all profile errors.
|
||||
.TP 5
|
||||
-R rootdir
|
||||
.br
|
||||
Specifies an alternate root directory for the filter, pre-filter,
|
||||
@@ -147,5 +161,5 @@ Adobe PostScript Printer Description File Format Specification, Version 4.3.
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2009 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id: cupstestppd.man 8421 2009-03-09 21:59:55Z mike $".
|
||||
.\" End of "$Id: cupstestppd.man 9120 2010-04-23 18:56:34Z mike $".
|
||||
.\"
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
#
|
||||
# ESP Package Manager (EPM) file list for CUPS.
|
||||
#
|
||||
# Copyright 2007-2009 by Apple Inc.
|
||||
# Copyright 2007-2010 by Apple Inc.
|
||||
# Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
#
|
||||
# These coded instructions, statements, and computer programs are the
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
# Product information
|
||||
%product CUPS
|
||||
%copyright 2007-2009 by Apple Inc.
|
||||
%copyright 2007-2010 by Apple Inc.
|
||||
%vendor Apple Inc.
|
||||
#%license LICENSE.txt
|
||||
%readme LICENSE.txt
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
#
|
||||
# Original version by Jason McMullan <jmcc@ontv.com>.
|
||||
#
|
||||
# Copyright 2007-2009 by Apple Inc.
|
||||
# Copyright 2007-2010 by Apple Inc.
|
||||
# Copyright 1999-2007 by Easy Software Products, all rights reserved.
|
||||
#
|
||||
# These coded instructions, statements, and computer programs are the
|
||||
@@ -39,7 +39,7 @@ Release: 0
|
||||
Epoch: 1
|
||||
License: GPL
|
||||
Group: System Environment/Daemons
|
||||
Source: ftp://ftp.easysw.com/pub/cups/%{version}/cups-%{version}-source.tar.gz
|
||||
Source: http://ftp.easysw.com/pub/cups/%{version}/cups-%{version}-source.tar.bz2
|
||||
Url: http://www.cups.org
|
||||
Packager: Anonymous <anonymous@foo.com>
|
||||
Vendor: Apple Inc.
|
||||
@@ -240,6 +240,10 @@ rm -rf $RPM_BUILD_ROOT
|
||||
/usr/share/doc/cups/es/*
|
||||
%dir /usr/share/doc/cups/eu
|
||||
/usr/share/doc/cups/eu/*
|
||||
%dir /usr/share/doc/cups/id
|
||||
/usr/share/doc/cups/id/*
|
||||
%dir /usr/share/doc/cups/it
|
||||
/usr/share/doc/cups/it/*
|
||||
%dir /usr/share/doc/cups/ja
|
||||
/usr/share/doc/cups/ja/*
|
||||
%dir /usr/share/doc/cups/pl
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
#
|
||||
# Makefile for the CUPS PPD Compiler.
|
||||
#
|
||||
# Copyright 2007-2009 by Apple Inc.
|
||||
# Copyright 2007-2010 by Apple Inc.
|
||||
# Copyright 2002-2006 by Easy Software Products.
|
||||
#
|
||||
# These coded instructions, statements, and computer programs are the
|
||||
@@ -143,7 +143,7 @@ install-exec:
|
||||
done
|
||||
if test "x$(SYMROOT)" != "x"; then \
|
||||
$(INSTALL_DIR) $(SYMROOT); \
|
||||
for file in $(EXECTARGETS) $(LIBTARGETS); do \
|
||||
for file in $(EXECTARGETS); do \
|
||||
cp $$file $(SYMROOT); \
|
||||
done \
|
||||
fi
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
// the standard media and sample driver strings. The results are picked up
|
||||
// by GNU gettext and placed in the CUPS message catalog.
|
||||
//
|
||||
// Copyright 2008-2009 by Apple Inc.
|
||||
// Copyright 2008-2010 by Apple Inc.
|
||||
//
|
||||
// These coded instructions, statements, and computer programs are the
|
||||
// property of Apple Inc. and are protected by Federal copyright
|
||||
@@ -67,6 +67,9 @@ main(void)
|
||||
src = new ppdcSource("sample.drv");
|
||||
catalog = new ppdcCatalog(NULL);
|
||||
|
||||
catalog->add_message("ISOLatin1");
|
||||
catalog->add_message("English");
|
||||
|
||||
// Add the media size strings...
|
||||
ppdcMediaSize *size; // Current media size
|
||||
|
||||
|
||||
+23
-10
@@ -59,24 +59,28 @@ main(int argc, // I - Number of command-line arguments
|
||||
filename[1024]; // PPD filename
|
||||
int comp, // Compress
|
||||
do_test, // Test PPD files
|
||||
single_language,// Generate single-language files
|
||||
use_model_name, // Use ModelName for filename
|
||||
verbose; // Verbosity
|
||||
ppdcLineEnding le; // Line ending to use
|
||||
ppdcArray *locales; // List of locales
|
||||
cups_array_t *filenames; // List of generated filenames
|
||||
|
||||
|
||||
_cupsSetLocale(argv);
|
||||
|
||||
// Scan the command-line...
|
||||
catalog = NULL;
|
||||
comp = 0;
|
||||
do_test = 0;
|
||||
le = PPDC_LFONLY;
|
||||
locales = NULL;
|
||||
outdir = "ppd";
|
||||
src = new ppdcSource();
|
||||
use_model_name = 0;
|
||||
verbose = 0;
|
||||
catalog = NULL;
|
||||
comp = 0;
|
||||
do_test = 0;
|
||||
le = PPDC_LFONLY;
|
||||
locales = NULL;
|
||||
outdir = "ppd";
|
||||
single_language = 0;
|
||||
src = new ppdcSource();
|
||||
use_model_name = 0;
|
||||
verbose = 0;
|
||||
filenames = cupsArrayNew((cups_array_func_t)strcasecmp, NULL);
|
||||
|
||||
for (i = 1; i < argc; i ++)
|
||||
if (argv[i][0] == '-')
|
||||
@@ -176,6 +180,8 @@ main(int argc, // I - Number of command-line arguments
|
||||
}
|
||||
else
|
||||
{
|
||||
single_language = 1;
|
||||
|
||||
if (verbose > 1)
|
||||
_cupsLangPrintf(stdout,
|
||||
_("ppdc: Loading messages for locale "
|
||||
@@ -355,6 +361,13 @@ main(int argc, // I - Number of command-line arguments
|
||||
else
|
||||
snprintf(filename, sizeof(filename), "%s/%s", outdir, pcfilename);
|
||||
|
||||
if (cupsArrayFind(filenames, filename))
|
||||
_cupsLangPrintf(stderr,
|
||||
_("ppdc: Warning - overlapping filename \"%s\".\n"),
|
||||
filename);
|
||||
else
|
||||
cupsArrayAdd(filenames, strdup(filename));
|
||||
|
||||
fp = cupsFileOpen(filename, comp ? "w9" : "w");
|
||||
if (!fp)
|
||||
{
|
||||
@@ -374,7 +387,7 @@ main(int argc, // I - Number of command-line arguments
|
||||
|
||||
ppdcArray *templocales = locales;
|
||||
|
||||
if (!templocales)
|
||||
if (!templocales && !single_language)
|
||||
{
|
||||
templocales = new ppdcArray();
|
||||
for (ppdcCatalog *tempcatalog = (ppdcCatalog *)src->po_files->first();
|
||||
|
||||
+3
-3
@@ -3,7 +3,7 @@
|
||||
//
|
||||
// Driver info file for CUPS-supplied PPDs.
|
||||
//
|
||||
// Copyright 2007-2009 by Apple Inc.
|
||||
// Copyright 2007-2010 by Apple Inc.
|
||||
// Copyright 1993-2006 by Easy Software Products.
|
||||
//
|
||||
// These coded instructions, statements, and computer programs are the
|
||||
@@ -117,7 +117,7 @@ Attribute "FileSystem" "" "False"
|
||||
Attribute "LandscapeOrientation" "" "Plus90"
|
||||
Attribute "TTRasterizer" "" "Type42"
|
||||
|
||||
Copyright "Copyright 2007-2008 by Apple Inc."
|
||||
Copyright "Copyright 2007-2010 by Apple Inc."
|
||||
Copyright "Copyright 1997-2007 by Easy Software Products."
|
||||
Copyright ""
|
||||
Copyright "These coded instructions, statements, and computer programs are the"
|
||||
@@ -139,7 +139,7 @@ Version "1.4"
|
||||
DriverType label
|
||||
ModelNumber $DYMO_3x0
|
||||
Throughput 8
|
||||
ManualCopies No
|
||||
ManualCopies Yes
|
||||
ColorDevice No
|
||||
|
||||
HWMargins 2 14.9 2 14.9
|
||||
|
||||
+57
-49
@@ -6,104 +6,107 @@ auth.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
auth.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
auth.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
auth.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h auth.h
|
||||
auth.o: client.h policy.h printers.h classes.h job.h conf.h banners.h
|
||||
auth.o: dirsvc.h network.h subscriptions.h
|
||||
auth.o: client.h policy.h printers.h ../cups/pwg-private.h classes.h job.h
|
||||
auth.o: conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
banners.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
banners.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
banners.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
banners.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
banners.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
banners.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
banners.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
banners.o: banners.h dirsvc.h network.h subscriptions.h ../cups/dir.h
|
||||
banners.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h
|
||||
banners.o: classes.h job.h conf.h banners.h dirsvc.h network.h
|
||||
banners.o: subscriptions.h ../cups/dir.h
|
||||
cert.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
cert.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
cert.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
cert.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
cert.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
cert.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h auth.h
|
||||
cert.o: client.h policy.h printers.h classes.h job.h conf.h banners.h
|
||||
cert.o: dirsvc.h network.h subscriptions.h
|
||||
cert.o: client.h policy.h printers.h ../cups/pwg-private.h classes.h job.h
|
||||
cert.o: conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
classes.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
classes.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
classes.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
classes.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
classes.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
classes.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
classes.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
classes.o: banners.h dirsvc.h network.h subscriptions.h
|
||||
classes.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h
|
||||
classes.o: classes.h job.h conf.h banners.h dirsvc.h network.h
|
||||
classes.o: subscriptions.h
|
||||
client.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
client.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
client.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
client.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
client.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
client.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
client.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
client.o: banners.h dirsvc.h network.h subscriptions.h
|
||||
client.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h classes.h
|
||||
client.o: job.h conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
conf.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
conf.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
conf.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
conf.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
conf.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
conf.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h auth.h
|
||||
conf.o: client.h policy.h printers.h classes.h job.h conf.h banners.h
|
||||
conf.o: dirsvc.h network.h subscriptions.h
|
||||
conf.o: client.h policy.h printers.h ../cups/pwg-private.h classes.h job.h
|
||||
conf.o: conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
dirsvc.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
dirsvc.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
dirsvc.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
dirsvc.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
dirsvc.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
dirsvc.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
dirsvc.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
dirsvc.o: banners.h dirsvc.h network.h subscriptions.h
|
||||
dirsvc.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h classes.h
|
||||
dirsvc.o: job.h conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
env.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
env.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h ../cups/ipp.h
|
||||
env.o: ../cups/string.h ../cups/array.h ../cups/cups.h ../cups/ppd.h
|
||||
env.o: ../cups/array.h ../cups/file.h ../cups/language.h mime.h ../cups/ipp.h
|
||||
env.o: ../cups/file.h ../cups/http.h ../cups/i18n.h ../cups/transcode.h
|
||||
env.o: ../cups/debug.h sysman.h statbuf.h cert.h auth.h client.h policy.h
|
||||
env.o: printers.h classes.h job.h conf.h banners.h dirsvc.h network.h
|
||||
env.o: subscriptions.h
|
||||
env.o: printers.h ../cups/pwg-private.h classes.h job.h conf.h banners.h
|
||||
env.o: dirsvc.h network.h subscriptions.h
|
||||
main.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
main.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
main.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
main.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
main.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
main.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h auth.h
|
||||
main.o: client.h policy.h printers.h classes.h job.h conf.h banners.h
|
||||
main.o: dirsvc.h network.h subscriptions.h ../cups/dir.h
|
||||
main.o: client.h policy.h printers.h ../cups/pwg-private.h classes.h job.h
|
||||
main.o: conf.h banners.h dirsvc.h network.h subscriptions.h ../cups/dir.h
|
||||
ipp.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
ipp.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h ../cups/ipp.h
|
||||
ipp.o: ../cups/string.h ../cups/array.h ../cups/cups.h ../cups/ppd.h
|
||||
ipp.o: ../cups/array.h ../cups/file.h ../cups/language.h mime.h ../cups/ipp.h
|
||||
ipp.o: ../cups/file.h ../cups/http.h ../cups/i18n.h ../cups/transcode.h
|
||||
ipp.o: ../cups/debug.h sysman.h statbuf.h cert.h auth.h client.h policy.h
|
||||
ipp.o: printers.h classes.h job.h conf.h banners.h dirsvc.h network.h
|
||||
ipp.o: subscriptions.h ../cups/ppd-private.h ../cups/cups.h
|
||||
ipp.o: printers.h ../cups/pwg-private.h classes.h job.h conf.h banners.h
|
||||
ipp.o: dirsvc.h network.h subscriptions.h ../cups/ppd-private.h
|
||||
ipp.o: ../cups/cups.h
|
||||
listen.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
listen.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
listen.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
listen.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
listen.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
listen.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
listen.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
listen.o: banners.h dirsvc.h network.h subscriptions.h
|
||||
listen.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h classes.h
|
||||
listen.o: job.h conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
job.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
job.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h ../cups/ipp.h
|
||||
job.o: ../cups/string.h ../cups/array.h ../cups/cups.h ../cups/ppd.h
|
||||
job.o: ../cups/array.h ../cups/file.h ../cups/language.h mime.h ../cups/ipp.h
|
||||
job.o: ../cups/file.h ../cups/http.h ../cups/i18n.h ../cups/transcode.h
|
||||
job.o: ../cups/debug.h sysman.h statbuf.h cert.h auth.h client.h policy.h
|
||||
job.o: printers.h classes.h job.h conf.h banners.h dirsvc.h network.h
|
||||
job.o: subscriptions.h ../cups/backend.h ../cups/dir.h
|
||||
job.o: printers.h ../cups/pwg-private.h classes.h job.h conf.h banners.h
|
||||
job.o: dirsvc.h network.h subscriptions.h ../cups/backend.h ../cups/dir.h
|
||||
log.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
log.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h ../cups/ipp.h
|
||||
log.o: ../cups/string.h ../cups/array.h ../cups/cups.h ../cups/ppd.h
|
||||
log.o: ../cups/array.h ../cups/file.h ../cups/language.h mime.h ../cups/ipp.h
|
||||
log.o: ../cups/file.h ../cups/http.h ../cups/i18n.h ../cups/transcode.h
|
||||
log.o: ../cups/debug.h sysman.h statbuf.h cert.h auth.h client.h policy.h
|
||||
log.o: printers.h classes.h job.h conf.h banners.h dirsvc.h network.h
|
||||
log.o: subscriptions.h
|
||||
log.o: printers.h ../cups/pwg-private.h classes.h job.h conf.h banners.h
|
||||
log.o: dirsvc.h network.h subscriptions.h
|
||||
network.o: ../cups/http-private.h ../config.h ../cups/http.h
|
||||
network.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
network.o: ../cups/ipp.h cupsd.h ../cups/string.h ../cups/array.h
|
||||
@@ -111,57 +114,59 @@ network.o: ../cups/cups.h ../cups/ppd.h ../cups/array.h ../cups/file.h
|
||||
network.o: ../cups/language.h mime.h ../cups/ipp.h ../cups/file.h
|
||||
network.o: ../cups/http.h ../cups/i18n.h ../cups/transcode.h ../cups/debug.h
|
||||
network.o: sysman.h statbuf.h cert.h auth.h client.h policy.h printers.h
|
||||
network.o: classes.h job.h conf.h banners.h dirsvc.h network.h
|
||||
network.o: subscriptions.h
|
||||
network.o: ../cups/pwg-private.h classes.h job.h conf.h banners.h dirsvc.h
|
||||
network.o: network.h subscriptions.h
|
||||
policy.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
policy.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
policy.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
policy.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
policy.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
policy.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
policy.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
policy.o: banners.h dirsvc.h network.h subscriptions.h
|
||||
policy.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h classes.h
|
||||
policy.o: job.h conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
printers.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
printers.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
printers.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
printers.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
printers.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
printers.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
printers.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
printers.o: banners.h dirsvc.h network.h subscriptions.h ../cups/dir.h
|
||||
printers.o: ../cups/pwgmedia.h
|
||||
printers.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h
|
||||
printers.o: classes.h job.h conf.h banners.h dirsvc.h network.h
|
||||
printers.o: subscriptions.h ../cups/dir.h
|
||||
process.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
process.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
process.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
process.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
process.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
process.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
process.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
process.o: banners.h dirsvc.h network.h subscriptions.h
|
||||
process.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h
|
||||
process.o: classes.h job.h conf.h banners.h dirsvc.h network.h
|
||||
process.o: subscriptions.h
|
||||
quotas.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
quotas.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
quotas.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
quotas.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
quotas.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
quotas.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
quotas.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
quotas.o: banners.h dirsvc.h network.h subscriptions.h
|
||||
quotas.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h classes.h
|
||||
quotas.o: job.h conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
removefile.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
removefile.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
removefile.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
removefile.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
removefile.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h
|
||||
removefile.o: ../cups/i18n.h ../cups/transcode.h ../cups/debug.h sysman.h
|
||||
removefile.o: statbuf.h cert.h auth.h client.h policy.h printers.h classes.h
|
||||
removefile.o: job.h conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
removefile.o: statbuf.h cert.h auth.h client.h policy.h printers.h
|
||||
removefile.o: ../cups/pwg-private.h classes.h job.h conf.h banners.h dirsvc.h
|
||||
removefile.o: network.h subscriptions.h
|
||||
select.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
select.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
select.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
select.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
select.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
select.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
select.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
select.o: banners.h dirsvc.h network.h subscriptions.h
|
||||
select.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h classes.h
|
||||
select.o: job.h conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
server.o: ../cups/http-private.h ../config.h ../cups/http.h
|
||||
server.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
server.o: ../cups/ipp.h cupsd.h ../cups/string.h ../cups/array.h
|
||||
@@ -169,15 +174,17 @@ server.o: ../cups/cups.h ../cups/ppd.h ../cups/array.h ../cups/file.h
|
||||
server.o: ../cups/language.h mime.h ../cups/ipp.h ../cups/file.h
|
||||
server.o: ../cups/http.h ../cups/i18n.h ../cups/transcode.h ../cups/debug.h
|
||||
server.o: sysman.h statbuf.h cert.h auth.h client.h policy.h printers.h
|
||||
server.o: classes.h job.h conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
server.o: ../cups/pwg-private.h classes.h job.h conf.h banners.h dirsvc.h
|
||||
server.o: network.h subscriptions.h
|
||||
statbuf.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
statbuf.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
statbuf.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
statbuf.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
statbuf.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
statbuf.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
statbuf.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
statbuf.o: banners.h dirsvc.h network.h subscriptions.h
|
||||
statbuf.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h
|
||||
statbuf.o: classes.h job.h conf.h banners.h dirsvc.h network.h
|
||||
statbuf.o: subscriptions.h
|
||||
subscriptions.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
subscriptions.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
subscriptions.o: ../cups/ipp.h ../cups/string.h ../cups/array.h
|
||||
@@ -185,16 +192,16 @@ subscriptions.o: ../cups/cups.h ../cups/ppd.h ../cups/array.h ../cups/file.h
|
||||
subscriptions.o: ../cups/language.h mime.h ../cups/ipp.h ../cups/file.h
|
||||
subscriptions.o: ../cups/http.h ../cups/i18n.h ../cups/transcode.h
|
||||
subscriptions.o: ../cups/debug.h sysman.h statbuf.h cert.h auth.h client.h
|
||||
subscriptions.o: policy.h printers.h classes.h job.h conf.h banners.h
|
||||
subscriptions.o: dirsvc.h network.h subscriptions.h
|
||||
subscriptions.o: policy.h printers.h ../cups/pwg-private.h classes.h job.h
|
||||
subscriptions.o: conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
sysman.o: cupsd.h ../cups/http-private.h ../config.h ../cups/http.h
|
||||
sysman.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
sysman.o: ../cups/ipp.h ../cups/string.h ../cups/array.h ../cups/cups.h
|
||||
sysman.o: ../cups/ppd.h ../cups/array.h ../cups/file.h ../cups/language.h
|
||||
sysman.o: mime.h ../cups/ipp.h ../cups/file.h ../cups/http.h ../cups/i18n.h
|
||||
sysman.o: ../cups/transcode.h ../cups/debug.h sysman.h statbuf.h cert.h
|
||||
sysman.o: auth.h client.h policy.h printers.h classes.h job.h conf.h
|
||||
sysman.o: banners.h dirsvc.h network.h subscriptions.h
|
||||
sysman.o: auth.h client.h policy.h printers.h ../cups/pwg-private.h classes.h
|
||||
sysman.o: job.h conf.h banners.h dirsvc.h network.h subscriptions.h
|
||||
filter.o: ../cups/debug.h ../cups/string.h ../config.h mime.h ../cups/array.h
|
||||
filter.o: ../cups/versioning.h ../cups/ipp.h ../cups/file.h
|
||||
mime.o: ../cups/debug.h ../cups/dir.h ../cups/versioning.h ../cups/string.h
|
||||
@@ -211,7 +218,8 @@ cups-deviced.o: ../config.h ../cups/http.h ../cups/versioning.h ../cups/md5.h
|
||||
cups-deviced.o: ../cups/ipp-private.h ../cups/ipp.h ../cups/globals.h
|
||||
cups-deviced.o: ../cups/string.h ../cups/cups.h ../cups/i18n.h
|
||||
cups-deviced.o: ../cups/transcode.h ../cups/language.h ../cups/array.h
|
||||
cups-deviced.o: ../cups/debug.h ../cups/array.h ../cups/dir.h
|
||||
cups-deviced.o: ../cups/pwg-private.h ../cups/cups.h ../cups/ppd.h
|
||||
cups-deviced.o: ../cups/file.h ../cups/debug.h ../cups/array.h ../cups/dir.h
|
||||
cups-lpd.o: ../cups/http-private.h ../config.h ../cups/http.h
|
||||
cups-lpd.o: ../cups/versioning.h ../cups/md5.h ../cups/ipp-private.h
|
||||
cups-lpd.o: ../cups/ipp.h ../cups/cups.h ../cups/ppd.h ../cups/array.h
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#
|
||||
# "$Id$"
|
||||
#
|
||||
# Scheduler Makefile for the Common UNIX Printing System (CUPS).
|
||||
# Scheduler Makefile for CUPS.
|
||||
#
|
||||
# Copyright 2007-2009 by Apple Inc.
|
||||
# Copyright 2007-2010 by Apple Inc.
|
||||
# Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
#
|
||||
# These coded instructions, statements, and computer programs are the
|
||||
@@ -73,14 +73,17 @@ UNITTARGETS = \
|
||||
testspeed \
|
||||
testsub
|
||||
|
||||
TARGETS = \
|
||||
$(LIBTARGETS) \
|
||||
DAEMONS = \
|
||||
cupsd \
|
||||
cupsfilter \
|
||||
cups-deviced \
|
||||
cups-driverd \
|
||||
cups-lpd \
|
||||
cups-polld \
|
||||
cups-polld
|
||||
|
||||
TARGETS = \
|
||||
$(LIBTARGETS) \
|
||||
$(DAEMONS)
|
||||
|
||||
|
||||
#
|
||||
@@ -186,7 +189,7 @@ install-exec:
|
||||
$(INSTALL_BIN) cups-polld $(SERVERBIN)/daemon
|
||||
if test "x$(SYMROOT)" != "x"; then \
|
||||
$(INSTALL_DIR) $(SYMROOT); \
|
||||
for file in $(TARGETS); do \
|
||||
for file in $(DAEMONS); do \
|
||||
cp $$file $(SYMROOT); \
|
||||
done \
|
||||
fi
|
||||
|
||||
+2
-3
@@ -1,8 +1,7 @@
|
||||
/*
|
||||
* "$Id$"
|
||||
*
|
||||
* Authentication certificate routines for the Common UNIX
|
||||
* Printing System (CUPS).
|
||||
* Authentication certificate routines for CUPS.
|
||||
*
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2006 by Easy Software Products.
|
||||
@@ -427,7 +426,7 @@ cupsdInitCerts(void)
|
||||
|
||||
cupsFileClose(fp);
|
||||
}
|
||||
#endif /* !HVE_ARC4RANDOM */
|
||||
#endif /* !HAVE_ARC4RANDOM */
|
||||
|
||||
/*
|
||||
* Create a root certificate and return...
|
||||
|
||||
+11
-5
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* Printer class routines for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -117,7 +117,7 @@ cupsdAddPrinterToClass(
|
||||
* 'cupsdDeletePrinterFromClass()' - Delete a printer from a class.
|
||||
*/
|
||||
|
||||
void
|
||||
int /* O - 1 if class changed, 0 otherwise */
|
||||
cupsdDeletePrinterFromClass(
|
||||
cupsd_printer_t *c, /* I - Class to delete from */
|
||||
cupsd_printer_t *p) /* I - Printer to delete */
|
||||
@@ -149,13 +149,15 @@ cupsdDeletePrinterFromClass(
|
||||
(c->num_printers - i) * sizeof(cupsd_printer_t *));
|
||||
}
|
||||
else
|
||||
return;
|
||||
return (0);
|
||||
|
||||
/*
|
||||
* Update the IPP attributes (have to do this for member-names)...
|
||||
*/
|
||||
|
||||
cupsdSetPrinterAttrs(c);
|
||||
|
||||
return (1);
|
||||
}
|
||||
|
||||
|
||||
@@ -163,10 +165,11 @@ cupsdDeletePrinterFromClass(
|
||||
* 'cupsdDeletePrinterFromClasses()' - Delete a printer from all classes.
|
||||
*/
|
||||
|
||||
void
|
||||
int /* O - 1 if class changed, 0 otherwise */
|
||||
cupsdDeletePrinterFromClasses(
|
||||
cupsd_printer_t *p) /* I - Printer to delete */
|
||||
{
|
||||
int changed = 0; /* Any class changed? */
|
||||
cupsd_printer_t *c; /* Pointer to current class */
|
||||
|
||||
|
||||
@@ -179,7 +182,7 @@ cupsdDeletePrinterFromClasses(
|
||||
c;
|
||||
c = (cupsd_printer_t *)cupsArrayNext(Printers))
|
||||
if (c->type & (CUPS_PRINTER_CLASS | CUPS_PRINTER_IMPLICIT))
|
||||
cupsdDeletePrinterFromClass(c, p);
|
||||
changed |= cupsdDeletePrinterFromClass(c, p);
|
||||
|
||||
/*
|
||||
* Then clean out any empty implicit classes...
|
||||
@@ -193,7 +196,10 @@ cupsdDeletePrinterFromClasses(
|
||||
cupsdLogMessage(CUPSD_LOG_DEBUG, "Deleting implicit class \"%s\"...",
|
||||
c->name);
|
||||
cupsdDeletePrinter(c, 0);
|
||||
changed = 1;
|
||||
}
|
||||
|
||||
return (changed);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* Printer class definitions for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2007-2008 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2005 by Easy Software Products, all rights reserved.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -21,9 +21,9 @@
|
||||
extern cupsd_printer_t *cupsdAddClass(const char *name);
|
||||
extern void cupsdAddPrinterToClass(cupsd_printer_t *c,
|
||||
cupsd_printer_t *p);
|
||||
extern void cupsdDeletePrinterFromClass(cupsd_printer_t *c,
|
||||
extern int cupsdDeletePrinterFromClass(cupsd_printer_t *c,
|
||||
cupsd_printer_t *p);
|
||||
extern void cupsdDeletePrinterFromClasses(cupsd_printer_t *p);
|
||||
extern int cupsdDeletePrinterFromClasses(cupsd_printer_t *p);
|
||||
extern cupsd_printer_t *cupsdFindAvailablePrinter(const char *name);
|
||||
extern cupsd_printer_t *cupsdFindClass(const char *name);
|
||||
extern void cupsdLoadAllClasses(void);
|
||||
|
||||
+12
-3
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* Client routines for the Common UNIX Printing System (CUPS) scheduler.
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
*
|
||||
* This file contains Kerberos support code, copyright 2006 by
|
||||
@@ -1131,8 +1131,8 @@ cupsdReadClient(cupsd_client_t *con) /* I - Client to read from */
|
||||
*ptr = '\0';
|
||||
}
|
||||
else
|
||||
snprintf(locale, sizeof(locale), "%s.%s",
|
||||
con->http.fields[HTTP_FIELD_ACCEPT_LANGUAGE], DefaultCharset);
|
||||
snprintf(locale, sizeof(locale), "%s.UTF-8",
|
||||
con->http.fields[HTTP_FIELD_ACCEPT_LANGUAGE]);
|
||||
|
||||
con->language = cupsLangGet(locale);
|
||||
}
|
||||
@@ -2192,6 +2192,15 @@ cupsdReadClient(cupsd_client_t *con) /* I - Client to read from */
|
||||
return;
|
||||
}
|
||||
}
|
||||
else if (filestats.st_size == 0)
|
||||
{
|
||||
/*
|
||||
* Don't allow empty file...
|
||||
*/
|
||||
|
||||
unlink(con->filename);
|
||||
cupsdClearString(&con->filename);
|
||||
}
|
||||
|
||||
if (con->command)
|
||||
{
|
||||
|
||||
+5
-7
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* Configuration routines for the Common UNIX Printing System (CUPS).
|
||||
*
|
||||
* Copyright 2007-2009 by Apple Inc.
|
||||
* Copyright 2007-2010 by Apple Inc.
|
||||
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
|
||||
*
|
||||
* These coded instructions, statements, and computer programs are the
|
||||
@@ -108,7 +108,6 @@ static const cupsd_var_t variables[] =
|
||||
{ "ClassifyOverride", &ClassifyOverride, CUPSD_VARTYPE_BOOLEAN },
|
||||
{ "ConfigFilePerm", &ConfigFilePerm, CUPSD_VARTYPE_INTEGER },
|
||||
{ "DataDir", &DataDir, CUPSD_VARTYPE_STRING },
|
||||
{ "DefaultCharset", &DefaultCharset, CUPSD_VARTYPE_STRING },
|
||||
{ "DefaultLanguage", &DefaultLanguage, CUPSD_VARTYPE_STRING },
|
||||
{ "DefaultLeaseDuration", &DefaultLeaseDuration, CUPSD_VARTYPE_INTEGER },
|
||||
{ "DefaultPaperSize", &DefaultPaperSize, CUPSD_VARTYPE_STRING },
|
||||
@@ -132,7 +131,6 @@ static const cupsd_var_t variables[] =
|
||||
{ "KeepAlive", &KeepAlive, CUPSD_VARTYPE_BOOLEAN },
|
||||
#ifdef HAVE_LAUNCHD
|
||||
{ "LaunchdTimeout", &LaunchdTimeout, CUPSD_VARTYPE_INTEGER },
|
||||
{ "LaunchdConf", &LaunchdConf, CUPSD_VARTYPE_STRING },
|
||||
#endif /* HAVE_LAUNCHD */
|
||||
{ "LimitRequestBody", &MaxRequestSize, CUPSD_VARTYPE_INTEGER },
|
||||
{ "ListenBackLog", &ListenBackLog, CUPSD_VARTYPE_INTEGER },
|
||||
@@ -540,8 +538,6 @@ cupsdReadConfiguration(void)
|
||||
else
|
||||
cupsdSetString(&DefaultLanguage, language->language);
|
||||
|
||||
cupsdSetString(&DefaultCharset, _cupsEncodingName(language->encoding));
|
||||
|
||||
cupsdClearString(&DefaultPaperSize);
|
||||
|
||||
cupsdSetString(&RIPCache, "8m");
|
||||
@@ -692,7 +688,6 @@ cupsdReadConfiguration(void)
|
||||
|
||||
#ifdef HAVE_LAUNCHD
|
||||
LaunchdTimeout = DEFAULT_TIMEOUT + 10;
|
||||
cupsdSetString(&LaunchdConf, CUPS_DEFAULT_LAUNCHD_CONF);
|
||||
#endif /* HAVE_LAUNCHD */
|
||||
|
||||
#ifdef __APPLE__
|
||||
@@ -718,6 +713,9 @@ cupsdReadConfiguration(void)
|
||||
cupsdLogMessage(CUPSD_LOG_INFO, "Remote access is %s.",
|
||||
RemotePort ? "enabled" : "disabled");
|
||||
|
||||
if (!RemotePort)
|
||||
BrowseLocalProtocols = 0; /* Disable sharing - no remote access */
|
||||
|
||||
/*
|
||||
* See if the ServerName is an IP address...
|
||||
*/
|
||||
@@ -910,7 +908,7 @@ cupsdReadConfiguration(void)
|
||||
* Set the default locale using the language and charset...
|
||||
*/
|
||||
|
||||
cupsdSetStringf(&DefaultLocale, "%s.%s", DefaultLanguage, DefaultCharset);
|
||||
cupsdSetStringf(&DefaultLocale, "%s.UTF-8", DefaultLanguage);
|
||||
|
||||
/*
|
||||
* Update all relative filenames to include the full path from ServerRoot...
|
||||
|
||||
Alguns arquivos não foram exibidos porque demasiados arquivos foram alterados neste diff Mostrar Mais
Referência em uma Nova Issue
Bloquear um usuário