-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathbin2c.c
161 lines (154 loc) · 5.1 KB
/
bin2c.c
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
/*
* bin_to_c - convert binary data into c-compatible data tables
* Written by Larry Bank
* Copyright (c) 2009 BitBank Software, Inc.
*
* The MIT License (MIT)
*
* Copyright (c) 2015 bitbank2
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
FILE *ihandle;
void MakeC(unsigned char *, int, int);
void GetLeafName(char *fname, char *leaf);
void FixName(char *name);
int main(int argc, char *argv[])
{
int iSize, iData;
unsigned char *p;
char szLeaf[256];
if (argc != 2) {
printf("bin_to_c Copyright (c) 2013 BitBank Software, Inc.\n");
printf("Usage: bin_to_c <filename>\n");
printf("output is written to stdout\n");
return 0; // no filename passed
}
ihandle = fopen(argv[1], "rb"); // open input file
if (ihandle == NULL) {
printf("Unable to open file: %s\n", argv[1]);
return -1; // bad filename passed
}
fseek(ihandle, 0L, SEEK_END); // get the file size
iSize = (int) ftell(ihandle);
fseek(ihandle, 0, SEEK_SET);
p = (unsigned char *) malloc(0x10000); // allocate 64k to play with
GetLeafName(argv[1], szLeaf);
printf("//\n// %s\n//\n", szLeaf); // comment header with filename
FixName(szLeaf); // remove unusable characters
printf("const uint8_t %s[] = {", szLeaf); // start of data array
while (iSize) {
iData = fread(p, 1, 0x10000, ihandle); // try to read 64k
MakeC(p, iData, iSize == iData); // create the output data
iSize -= iData;
}
free(p);
fclose(ihandle);
printf("};\n"); // final closing brace
return 0;
} /* main() */
/*
* Generate C hex characters from each byte of file data
*/
void MakeC(unsigned char *p, int iLen, int bLast)
{
int i, j, iCount;
char szTemp[256], szOut[256];
iCount = 0;
for (i = 0; i < iLen >> 4; i++) // do lines of 16 bytes
{
strcpy(szOut, "\t");
for (j = 0; j < 16; j++) {
if (iCount == iLen - 1 && bLast) // last one, skip the comma
sprintf(szTemp, "0x%02x", p[(i * 16) + j]);
else
sprintf(szTemp, "0x%02x,", p[(i * 16) + j]);
strcat(szOut, szTemp);
iCount++;
}
if (!bLast || iCount != iLen)
strcat(szOut, "\n");
printf("%s", szOut);
}
p += (iLen & 0xfff0); // point to last section
if (iLen & 0xf) // any remaining characters?
{
strcpy(szOut, "\t");
for (j = 0; j < (iLen & 0xf); j++) {
if (iCount == iLen - 1 && bLast)
sprintf(szTemp, "0x%02x", p[j]);
else
sprintf(szTemp, "0x%02x,", p[j]);
strcat(szOut, szTemp);
iCount++;
}
if (!bLast)
strcat(szOut, "\n");
printf("%s", szOut);
}
} /* MakeC() */
/*
* Make sure the name can be used in C/C++ as a variable
* replace invalid characters and make sure it starts with a letter
*/
void FixName(char *name)
{
char c, *d, *s, szTemp[256];
int i, iLen;
iLen = strlen(name);
d = szTemp;
s = name;
if (s[0] >= '0' && s[0] <= '9') // starts with a digit
*d++ = '_'; // Insert an underscore
for (i = 0; i < iLen; i++) {
c = *s++;
// these characters can't be in a variable name
if (c < ' ' || (c >= '!' && c < '0') || (c > 'Z' && c < 'a'))
c = '_'; // convert all to an underscore
*d++ = c;
}
*d++ = 0;
strcpy(name, szTemp);
} /* FixName() */
/*
* Trim off the leaf name from a fully
* formed file pathname
*/
void GetLeafName(char *fname, char *leaf)
{
int i, iLen;
iLen = strlen(fname);
for (i = iLen - 1; i >= 0; i--) {
if (fname[i] == '\\' || fname[i] == '/') // Windows or Linux
break;
}
strcpy(leaf, &fname[i + 1]);
// remove the filename extension
iLen = strlen(leaf);
for (i = iLen - 1; i >= 0; i--) {
if (leaf[i] == '.') {
leaf[i] = 0;
break;
}
}
} /* GetLeafName() */