Remove .a files before running ar, to avoid problems with renamed files remaining...
[kugel-rb.git] / rbutil / sansapatcher / bin2c.c
blob7b0606912b606307d92d8df2794ba652abdd8417
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 Dave Chapman
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include <stdio.h>
23 #include <string.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <unistd.h>
27 #include <fcntl.h>
28 #include <stdlib.h>
30 #ifndef O_BINARY
31 #define O_BINARY 0
32 #endif
34 static off_t filesize(int fd)
36 struct stat buf;
38 fstat(fd,&buf);
39 return buf.st_size;
42 static int write_cfile(const unsigned char* buf, off_t len, const char* cname)
44 char filename[256];
45 FILE* fp;
46 int i;
48 snprintf(filename,256,"%s.c",cname);
50 fp = fopen(filename,"w+");
51 if (fp == NULL) {
52 fprintf(stderr,"Couldn't open %s\n",filename);
53 return -1;
56 fprintf(fp,"/* Generated by bin2c */\n\n");
57 fprintf(fp,"unsigned char %s[] = {",cname);
59 for (i=0;i<len;i++) {
60 if ((i % 16) == 0) {
61 fprintf(fp,"\n ");
63 if (i == (len-1)) {
64 fprintf(fp,"0x%02x",buf[i]);
65 } else {
66 fprintf(fp,"0x%02x, ",buf[i]);
69 fprintf(fp,"\n};\n");
71 fclose(fp);
72 return 0;
75 static int write_hfile(off_t len, const char* cname)
77 char filename[256];
78 FILE* fp;
80 snprintf(filename,256,"%s.h",cname);
81 fp = fopen(filename,"w+");
82 if (fp == NULL) {
83 fprintf(stderr,"Couldn't open %s\n",filename);
84 return -1;
87 fprintf(fp,"/* Generated by bin2c */\n\n");
88 fprintf(fp,"#define LEN_%s %d\n",cname,(int)len);
89 fprintf(fp,"extern unsigned char %s[];\n",cname);
90 fclose(fp);
91 return 0;
94 int main (int argc, char* argv[])
96 char* infile;
97 char* cname;
98 int fd;
99 unsigned char* buf;
100 int len;
101 int n;
103 if (argc != 3) {
104 fprintf(stderr,"Usage: bin2c file cname\n");
105 return 0;
108 infile=argv[1];
109 cname=argv[2];
111 fd = open(infile,O_RDONLY|O_BINARY);
112 if (fd < 0) {
113 fprintf(stderr,"Can not open %s\n",infile);
114 return 0;
117 len = filesize(fd);
119 buf = malloc(len);
120 n = read(fd,buf,len);
121 if (n < len) {
122 fprintf(stderr,"Short read, aborting\n");
123 return 0;
125 close(fd);
127 if (write_cfile(buf,len,cname) < 0) {
128 return -1;
130 if (write_hfile(len,cname) < 0) {
131 return -1;
134 return 0;