File: unparse.c

package info (click to toggle)
libuuid-perl 0.37-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,092 kB
  • sloc: ansic: 2,374; perl: 580; makefile: 5
file content (227 lines) | stat: -rw-r--r-- 8,128 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
#ifdef __cplusplus
extern "C" {
#endif

#include "ulib/unparse.h"

#ifdef __cplusplus
}
#endif

static const char *fmt_lower = "0123456789abcdef";
static const char *fmt_upper = "0123456789ABCDEF";

#ifdef UUID_UNPARSE_DEFAULT_UPPER
#define FMT_DEFAULT fmt_upper
#else
#define FMT_DEFAULT fmt_lower
#endif

/* convert U64 to hex chars. */
static void uu_u64_2hex(const U64 in, char *out, const int len, const char *fmt) {
  U64 n = in;
  int i = len;

  do {
    out[--i] = fmt[n % 16];
    n >>= 4;
  } while (n > 0);

  while (i > 0)
    out[--i] = '0';
}

static void uu_unparse_x0(const struct_uu_t *in, char *out, const char *fmt) {
  char *dst = out;

  uu_u64_2hex(in->v1.time_low,              dst, 8, fmt); dst += 8; *dst++ = '-';
  uu_u64_2hex(in->v1.time_mid,              dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.time_high_and_version, dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.clock_seq_and_variant, dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.node[0],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[1],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[2],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[3],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[4],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[5],               dst, 2, fmt); dst += 2;
  *dst = 0;
}

void uu_unparse_lower0(const struct_uu_t *in, char *out) {
  uu_unparse_x0(in, out,  fmt_lower);
}

void uu_unparse_upper0(const struct_uu_t *in, char *out) {
  uu_unparse_x0(in, out, fmt_upper);
}

void uu_unparse0(const struct_uu_t *in, char *out) {
  uu_unparse_x0(in, out, FMT_DEFAULT);
}


static void uu_unparse_x1(const struct_uu_t *in, char *out, const char *fmt) {
  char *dst = out;

  uu_u64_2hex(in->v1.time_low,              dst, 8, fmt); dst += 8; *dst++ = '-';
  uu_u64_2hex(in->v1.time_mid,              dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.time_high_and_version, dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.clock_seq_and_variant, dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.node[0],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[1],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[2],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[3],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[4],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[5],               dst, 2, fmt); dst += 2;
  *dst = 0;
}

void uu_unparse_lower1(const struct_uu_t *in, char *out) {
  uu_unparse_x1(in, out,  fmt_lower);
}

void uu_unparse_upper1(const struct_uu_t *in, char *out) {
  uu_unparse_x1(in, out, fmt_upper);
}

void uu_unparse1(const struct_uu_t *in, char *out) {
  uu_unparse_x1(in, out, FMT_DEFAULT);
}


static void uu_unparse_x3(const struct_uu_t *in, char *out, const char *fmt) {
  char *dst = out;

  uu_u64_2hex(in->v1.time_low,              dst, 8, fmt); dst += 8; *dst++ = '-';
  uu_u64_2hex(in->v1.time_mid,              dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.time_high_and_version, dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.clock_seq_and_variant, dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.node[0],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[1],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[2],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[3],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[4],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[5],               dst, 2, fmt); dst += 2;
  *dst = 0;
}

void uu_unparse_lower3(const struct_uu_t *in, char *out) {
  uu_unparse_x3(in, out,  fmt_lower);
}

void uu_unparse_upper3(const struct_uu_t *in, char *out) {
  uu_unparse_x3(in, out, fmt_upper);
}

void uu_unparse3(const struct_uu_t *in, char *out) {
  uu_unparse_x3(in, out, FMT_DEFAULT);
}


static void uu_unparse_x4(const struct_uu_t *in, char *out, const char *fmt) {
  char *dst = out;

  uu_u64_2hex(in->v4.rand_a,                      dst, 8, fmt); dst += 8; *dst++ = '-';
  uu_u64_2hex(in->v4.rand_b_and_version >> 16,    dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v4.rand_b_and_version & 0xffff, dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v4.rand_c_and_variant >> 16,    dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v4.rand_c_and_variant & 0xffff, dst, 4, fmt); dst += 4;
  uu_u64_2hex(in->v4.rand_d,                      dst, 8, fmt); dst += 8;
  *dst = 0;
}

void uu_unparse_lower4(const struct_uu_t *in, char *out) {
  uu_unparse_x4(in, out,  fmt_lower);
}

void uu_unparse_upper4(const struct_uu_t *in, char *out) {
  uu_unparse_x4(in, out, fmt_upper);
}

void uu_unparse4(const struct_uu_t *in, char *out) {
  uu_unparse_x4(in, out, FMT_DEFAULT);
}


static void uu_unparse_x5(const struct_uu_t *in, char *out, const char *fmt) {
  char *dst = out;

  uu_u64_2hex(in->v1.time_low,              dst, 8, fmt); dst += 8; *dst++ = '-';
  uu_u64_2hex(in->v1.time_mid,              dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.time_high_and_version, dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.clock_seq_and_variant, dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v1.node[0],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[1],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[2],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[3],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[4],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v1.node[5],               dst, 2, fmt); dst += 2;
  *dst = 0;
}

void uu_unparse_lower5(const struct_uu_t *in, char *out) {
  uu_unparse_x5(in, out,  fmt_lower);
}

void uu_unparse_upper5(const struct_uu_t *in, char *out) {
  uu_unparse_x5(in, out, fmt_upper);
}

void uu_unparse5(const struct_uu_t *in, char *out) {
  uu_unparse_x5(in, out, FMT_DEFAULT);
}


static void uu_unparse_x6(const struct_uu_t *in, char *out, const char *fmt) {
  char *dst = out;

  uu_u64_2hex(in->v6.time_high,             dst, 8, fmt); dst += 8; *dst++ = '-';
  uu_u64_2hex(in->v6.time_mid,              dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v6.time_low_and_version,  dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v6.clock_seq_and_variant, dst, 4, fmt); dst += 4; *dst++ = '-';
  uu_u64_2hex(in->v6.node[0],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v6.node[1],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v6.node[2],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v6.node[3],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v6.node[4],               dst, 2, fmt); dst += 2;
  uu_u64_2hex(in->v6.node[5],               dst, 2, fmt); dst += 2;
  *dst = 0;
}

void uu_unparse_lower6(const struct_uu_t *in, char *out) {
  uu_unparse_x6(in, out,  fmt_lower);
}

void uu_unparse_upper6(const struct_uu_t *in, char *out) {
  uu_unparse_x6(in, out, fmt_upper);
}

void uu_unparse6(const struct_uu_t *in, char *out) {
  uu_unparse_x6(in, out, FMT_DEFAULT);
}


static void uu_unparse_x7(const struct_uu_t *in, char *out, const char *fmt) {
  char *dst = out;

  uu_u64_2hex(in->v7.time_high,                              dst,  8, fmt); dst +=  8; *dst++ = '-';
  uu_u64_2hex(in->v7.time_low,                               dst,  4, fmt); dst +=  4; *dst++ = '-';
  uu_u64_2hex(in->v7.rand_a_and_version,                     dst,  4, fmt); dst +=  4; *dst++ = '-';
  uu_u64_2hex(in->v7.rand_b_and_variant >> 48,               dst,  4, fmt); dst +=  4; *dst++ = '-';
  uu_u64_2hex(in->v7.rand_b_and_variant & 0xffffffffffffULL, dst, 12, fmt); dst += 12;
  *dst = 0;
}

void uu_unparse_lower7(const struct_uu_t *in, char *out) {
  uu_unparse_x7(in, out,  fmt_lower);
}

void uu_unparse_upper7(const struct_uu_t *in, char *out) {
  uu_unparse_x7(in, out, fmt_upper);
}

void uu_unparse7(const struct_uu_t *in, char *out) {
  uu_unparse_x7(in, out, FMT_DEFAULT);
}

/* ex:set ts=2 sw=2 itab=spaces: */