]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/backend.c
83613ea20e6110f2a53243932df2c3c0604c5ebb
[thirdparty/cups.git] / cups / backend.c
1 /*
2 * "$Id: backend.c 7810 2008-07-29 01:11:15Z mike $"
3 *
4 * Backend functions for CUPS.
5 *
6 * Copyright 2007-2010 by Apple Inc.
7 * Copyright 2006 by Easy Software Products.
8 *
9 * These coded instructions, statements, and computer programs are the
10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
14 *
15 * This file is subject to the Apple OS-Developed Software exception.
16 *
17 * Contents:
18 *
19 * cupsBackendDeviceURI() - Get the device URI for a backend.
20 * cupsBackendReport() - Write a device line from a backend.
21 * quote_string() - Write a quoted string to stdout, escaping \ and ".
22 */
23
24 /*
25 * Include necessary headers...
26 */
27
28 #include "cups-private.h"
29 #include "backend.h"
30
31
32 /*
33 * Local functions...
34 */
35
36 static void quote_string(const char *s);
37
38
39 /*
40 * 'cupsBackendDeviceURI()' - Get the device URI for a backend.
41 *
42 * The "argv" argument is the argv argument passed to main(). This
43 * function returns the device URI passed in the DEVICE_URI environment
44 * variable or the device URI passed in argv[0], whichever is found
45 * first.
46 *
47 * @since CUPS 1.2/Mac OS X 10.5@
48 */
49
50 const char * /* O - Device URI or @code NULL@ */
51 cupsBackendDeviceURI(char **argv) /* I - Command-line arguments */
52 {
53 const char *device_uri; /* Device URI */
54 _cups_globals_t *cg = _cupsGlobals(); /* Global info */
55
56
57 if ((device_uri = getenv("DEVICE_URI")) == NULL)
58 {
59 if (!argv || !argv[0] || !strchr(argv[0], ':'))
60 return (NULL);
61
62 device_uri = argv[0];
63 }
64
65 return (_httpResolveURI(device_uri, cg->resolved_uri,
66 sizeof(cg->resolved_uri), 1));
67 }
68
69
70 /*
71 * 'cupsBackendReport()' - Write a device line from a backend.
72 *
73 * This function writes a single device line to stdout for a backend.
74 * It handles quoting of special characters in the device-make-and-model,
75 * device-info, device-id, and device-location strings.
76 *
77 * @since CUPS 1.4/Mac OS X 10.6@
78 */
79
80 void
81 cupsBackendReport(
82 const char *device_scheme, /* I - device-scheme string */
83 const char *device_uri, /* I - device-uri string */
84 const char *device_make_and_model, /* I - device-make-and-model string or @code NULL@ */
85 const char *device_info, /* I - device-info string or @code NULL@ */
86 const char *device_id, /* I - device-id string or @code NULL@ */
87 const char *device_location) /* I - device-location string or @code NULL@ */
88 {
89 if (!device_scheme || !device_uri)
90 return;
91
92 printf("%s %s", device_scheme, device_uri);
93 if (device_make_and_model && *device_make_and_model)
94 quote_string(device_make_and_model);
95 else
96 quote_string("unknown");
97 quote_string(device_info);
98 quote_string(device_id);
99 quote_string(device_location);
100 putchar('\n');
101 fflush(stdout);
102 }
103
104
105 /*
106 * 'quote_string()' - Write a quoted string to stdout, escaping \ and ".
107 */
108
109 static void
110 quote_string(const char *s) /* I - String to write */
111 {
112 fputs(" \"", stdout);
113
114 if (s)
115 {
116 while (*s)
117 {
118 if (*s == '\\' || *s == '\"')
119 putchar('\\');
120
121 putchar(*s);
122
123 s ++;
124 }
125 }
126
127 putchar('\"');
128 }
129
130
131 /*
132 * End of "$Id: backend.c 7810 2008-07-29 01:11:15Z mike $".
133 */