summaryrefslogtreecommitdiff
path: root/XFontName.c
blob: 6897e27a47ea3a50b6f3549934bd16a9b223aaa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/*
 * XFontName.c
 *
 * build/parse X Font name strings
 */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include	<X11/Xlib.h>
#include	<X11/Intrinsic.h>
#include	"XFontName.h"
#include	<ctype.h>

static const char *
extractStringField(const char *name, char *buffer, int size,
                   unsigned int *attrp, unsigned int bit)
{
    char *buf = buffer;

    if (!*name)
        return NULL;
    while (*name && *name != '-' && size > 0) {
        *buf++ = *name++;
        --size;
    }
    if (size <= 0)
        return NULL;
    *buf = '\0';
    if (buffer[0] != '*' || buffer[1] != '\0')
        *attrp |= bit;
    if (*name == '-')
        return name + 1;
    return name;
}

static const char *
extractUnsignedField(const char *name, unsigned int *result,
                     unsigned int *attrp, unsigned int bit)
{
    char buf[256];
    unsigned int i;

    name = extractStringField(name, buf, sizeof(buf), attrp, bit);
    if (!name)
        return NULL;
    if (!(*attrp & bit))
        return name;
    i = 0;
    for (char *c = buf; *c; c++) {
        if (!isdigit(*c))
            return NULL;
        i = i * 10 + (*c - '0');
    }
    *result = i;
    return name;
}

Bool
XParseFontName(const char *fontNameString, XFontName *fontName,
               unsigned int *fontNameAttributes)
{
    const char *name = fontNameString;
    XFontName temp;
    unsigned int attributes = 0;

#define GetString(field,bit)  do { \
	if (!(name = extractStringField \
		(name, temp.field, sizeof (temp.field),\
		&attributes, bit))) \
		return False; \
    } while(0)

#define GetUnsigned(field,bit)  do { \
	if (!(name = extractUnsignedField \
		(name, &temp.field, \
		&attributes, bit))) \
		return False; \
    } while(0)

    GetString(Registry, FontNameRegistry);
    GetString(Foundry, FontNameFoundry);
    GetString(FamilyName, FontNameFamilyName);
    GetString(WeightName, FontNameWeightName);
    GetString(Slant, FontNameSlant);
    GetString(SetwidthName, FontNameSetwidthName);
    GetString(AddStyleName, FontNameAddStyleName);
    GetUnsigned(PixelSize, FontNamePixelSize);
    GetUnsigned(PointSize, FontNamePointSize);
    GetUnsigned(ResolutionX, FontNameResolutionX);
    GetUnsigned(ResolutionY, FontNameResolutionY);
    GetString(Spacing, FontNameSpacing);
    GetUnsigned(AverageWidth, FontNameAverageWidth);
    GetString(CharSetRegistry, FontNameCharSetRegistry);
    if (!*name) {
        temp.CharSetEncoding[0] = '\0';
        attributes |= FontNameCharSetEncoding;
    }
    else {
        GetString(CharSetEncoding, FontNameCharSetEncoding);
    }
    *fontName = temp;
    *fontNameAttributes = attributes;
    return True;
}

static char *
utoa(unsigned int u, char *s, int size)
{
    char *t;

    t = s + size;
    *--t = '\0';
    do
        *--t = (u % 10) + '0';
    while (u /= 10);
    return t;
}

Bool
XFormatFontName(XFontName *fontName, unsigned int fontNameAttributes,
                XFontNameString fontNameString)
{
    XFontNameString tmp;
    char *name = tmp;
    const char *f;
    int left = sizeof(tmp) - 1;
    char number[32];

#define PutString(field, bit) do { \
	f = (fontNameAttributes & bit) ? \
		fontName->field \
		: "*"; \
	if ((left -= strlen (f)) < 0) \
		return False; \
	while (*f) \
		if ((*name++ = *f++) == '-') \
			return False; \
    } while(0)

#define PutHyphen() do { \
	if (--left < 0) \
		return False; \
	*name++ = '-'; \
    } while(0)

#define PutUnsigned(field, bit) do { \
	f = (fontNameAttributes & bit) ? \
		utoa (fontName->field, number, sizeof (number)) \
		: "*"; \
	if ((left -= strlen (f)) < 0) \
		return False; \
	while (*f) \
		*name++ = *f++; \
    } while(0)

    PutString(Registry, FontNameRegistry);
    PutHyphen();
    PutString(Foundry, FontNameFoundry);
    PutHyphen();
    PutString(FamilyName, FontNameFamilyName);
    PutHyphen();
    PutString(WeightName, FontNameWeightName);
    PutHyphen();
    PutString(Slant, FontNameSlant);
    PutHyphen();
    PutString(SetwidthName, FontNameSetwidthName);
    PutHyphen();
    PutString(AddStyleName, FontNameAddStyleName);
    PutHyphen();
    PutUnsigned(PixelSize, FontNamePixelSize);
    PutHyphen();
    PutUnsigned(PointSize, FontNamePointSize);
    PutHyphen();
    PutUnsigned(ResolutionX, FontNameResolutionX);
    PutHyphen();
    PutUnsigned(ResolutionY, FontNameResolutionY);
    PutHyphen();
    PutString(Spacing, FontNameSpacing);
    PutHyphen();
    PutUnsigned(AverageWidth, FontNameAverageWidth);
    PutHyphen();
    PutString(CharSetRegistry, FontNameCharSetRegistry);
    PutHyphen();
    PutString(CharSetEncoding, FontNameCharSetEncoding);
    *name = '\0';
    strncpy (fontNameString, tmp, sizeof(XFontNameString));
    fontNameString[sizeof(XFontNameString) - 1] = '\0';
    return True;
}