b5327e8fc7f49abfb81149049451685ab87da6a4
[platform/upstream/libX11.git] / src / StrToText.c
1 /*
2
3 Copyright 1989, 1998  The Open Group
4
5 Permission to use, copy, modify, distribute, and sell this software and its
6 documentation for any purpose is hereby granted without fee, provided that
7 the above copyright notice appear in all copies and that both that
8 copyright notice and this permission notice appear in supporting
9 documentation.
10
11 The above copyright notice and this permission notice shall be included in
12 all copies or substantial portions of the Software.
13
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
17 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
21 Except as contained in this notice, the name of The Open Group shall not be
22 used in advertising or otherwise to promote the sale, use or other dealings
23 in this Software without prior written authorization from The Open Group.
24
25 */
26
27 #ifdef HAVE_CONFIG_H
28 #include <config.h>
29 #endif
30 #include <X11/Xlibint.h>
31 #include <X11/Xatom.h>
32 #include <X11/Xutil.h>
33
34 /*
35  * XStringListToTextProperty - fill in TextProperty structure with
36  * concatenated list of null-separated strings.  Return True if successful
37  * else False.  Allocate room on end for trailing NULL, but don't include in
38  * count.
39  */
40
41 Status XStringListToTextProperty (
42     char **argv,
43     int argc,
44     XTextProperty *textprop)
45 {
46     register int i;
47     register unsigned int nbytes;
48     XTextProperty proto;
49
50     /* figure out how much space we'll need for this list */
51     for (i = 0, nbytes = 0; i < argc; i++) {
52         nbytes += (unsigned) ((argv[i] ? strlen (argv[i]) : 0) + 1);
53     }
54
55     /* fill in a prototype containing results so far */
56     proto.encoding = XA_STRING;
57     proto.format = 8;
58     if (nbytes)
59         proto.nitems = nbytes - 1;      /* subtract one for trailing <NUL> */
60     else
61         proto.nitems = 0;
62     proto.value = NULL;
63
64     /* build concatenated list of strings */
65     if (nbytes > 0) {
66         register char *buf = Xmalloc (nbytes);
67         if (!buf) return False;
68
69         proto.value = (unsigned char *) buf;
70         for (i = 0; i < argc; i++) {
71             char *arg = argv[i];
72
73             if (arg) {
74                 (void) strcpy (buf, arg);
75                 buf += (strlen (arg) + 1);
76             } else {
77                 *buf++ = '\0';
78             }
79         }
80     } else {
81         proto.value = (unsigned char *) Xmalloc (1);    /* easier for client */
82         if (!proto.value) return False;
83
84         proto.value[0] = '\0';
85     }
86
87     /* we were successful, so set return value */
88     *textprop = proto;
89     return True;
90 }