-
Notifications
You must be signed in to change notification settings - Fork 2
/
bitprint.h
175 lines (143 loc) · 3.49 KB
/
bitprint.h
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
/*
* Copyright 2015 c0defellas
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this name except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* bitprint - Bits printer macro
*/
#ifndef BITPRINT_H
#define BITPRINT_H
#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
#include <stdbool.h>
#include <errno.h>
#define PB_BITSALLOCATED 1
#define PB_ENOMEM ENOMEM
#define PRINT_BITS(value) \
_Generic(value, \
char : _pb_print_bits_c, \
unsigned char : _pb_print_bits_uc, \
short : _pb_print_bits_s, \
unsigned short : _pb_print_bits_us, \
int : _pb_print_bits_i, \
unsigned int : _pb_print_bits_ui, \
long : _pb_print_bits_l, \
unsigned long : _pb_print_bits_ul, \
long long : _pb_print_bits_ll, \
unsigned long long : _pb_print_bits_ull) \
(value)
bool pb_is_little_endian()
{
int i = 1;
return ((char *) &i)[0] ? true : false;
}
bool pb_is_big_endian()
{
return !pb_is_little_endian();
}
static unsigned char *pb_bits_map[256] = {NULL};
void pb_unpopulate_bits_map()
{
for (int i = 0; i <= UCHAR_MAX; i++) {
if (!pb_bits_map[0])
continue;
free(pb_bits_map[i]);
pb_bits_map[i] = NULL;
}
}
int pb_populate_bits_map()
{
if (pb_bits_map[0])
return PB_BITSALLOCATED;
unsigned char msb_mask = 1 << (CHAR_BIT - 1);
unsigned char *bits;
unsigned char uc;
for (int i = 0; i <= UCHAR_MAX; i++) {
uc = (unsigned char) i;
bits = calloc(1, CHAR_BIT + 1);
if (!bits)
goto err;
for (int k = 0; k < CHAR_BIT; k++) {
bits[k] = uc & msb_mask ? '1' : '0';
uc <<= 1;
}
pb_bits_map[i] = bits;
}
return 0;
err:
pb_unpopulate_bits_map();
return PB_ENOMEM;
}
int _pb_print_bits(void *ptr, int len) {
int i;
int ret = 0;
if (!ptr)
return 0;
if (pb_is_little_endian()) {
for (i = len - 1; i >= 0; i--) {
ret += printf("%s ", pb_bits_map[((unsigned char *) ptr)[i]]);
ret--;
}
}
else {
for (i = 0; i < len; i++) {
ret += printf("%s ", pb_bits_map[((unsigned char *) ptr)[i]]);
ret--;
}
}
printf("\n");
return ret;
}
int _pb_print_bits_c(char value)
{
return _pb_print_bits(&value, sizeof(char));;
}
int _pb_print_bits_uc(unsigned char value)
{
return _pb_print_bits(&value, sizeof(unsigned char));;
}
int _pb_print_bits_s(short value)
{
return _pb_print_bits(&value, sizeof(short));;
}
int _pb_print_bits_us(unsigned short value)
{
return _pb_print_bits(&value, sizeof(unsigned short));;
}
int _pb_print_bits_i(int value)
{
return _pb_print_bits(&value, sizeof(int));
}
int _pb_print_bits_ui(unsigned int value)
{
return _pb_print_bits(&value, sizeof(unsigned int));
}
int _pb_print_bits_l(long value)
{
return _pb_print_bits(&value, sizeof(long));
}
int _pb_print_bits_ul(unsigned long value)
{
return _pb_print_bits(&value, sizeof(unsigned long));
}
int _pb_print_bits_ll(long long value)
{
return _pb_print_bits(&value, sizeof(long long));
}
int _pb_print_bits_ull(unsigned long long value)
{
return _pb_print_bits(&value, sizeof(unsigned long long));
}
#endif