2 # restart using a Tcl shell \
3 exec sh
-c '
for tclshell in tclsh tclsh83 cygtclsh80
; do
\
4 ( echo |
$tclshell ) 2> /dev
/null
&& exec $tclshell "`( cygpath -w \"$0\" ) 2> /dev/null || echo $0`" "$@" ; \
6 echo
"file2c.tcl: cannot find Tcl shell" ; exit 1'
"$0" "$@"
8 #===============================================================================
12 # Convert a file into a header that can be #included from C.
14 #===============================================================================
15 #####ECOSGPLCOPYRIGHTBEGIN####
16 ## -------------------------------------------
17 ## This file is part of eCos, the Embedded Configurable Operating System.
18 ## Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
20 ## eCos is free software; you can redistribute it and/or modify it under
21 ## the terms of the GNU General Public License as published by the Free
22 ## Software Foundation; either version 2 or (at your option) any later version.
24 ## eCos is distributed in the hope that it will be useful, but WITHOUT ANY
25 ## WARRANTY; without even the implied warranty of MERCHANTABILITY or
26 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
29 ## You should have received a copy of the GNU General Public License along
30 ## with eCos; if not, write to the Free Software Foundation, Inc.,
31 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
33 ## As a special exception, if other files instantiate templates or use macros
34 ## or inline functions from this file, or you compile this file and link it
35 ## with other works to produce a work based on this file, this file does not
36 ## by itself cause the resulting work to be covered by the GNU General Public
37 ## License. However the source code for this file must still be made available
38 ## in accordance with section (3) of the GNU General Public License.
40 ## This exception does not invalidate any other reasons why a work based on
41 ## this file might be covered by the GNU General Public License.
43 ## Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
44 ## at http://sources.redhat.com/ecos/ecos-license/
45 ## -------------------------------------------
46 #####ECOSGPLCOPYRIGHTEND####
47 #===============================================================================
48 ######DESCRIPTIONBEGIN####
50 # Author(s): jlarmour,bartv
55 # Usage: file2c.tcl <file to encode> <output C header file>
57 #####DESCRIPTIONEND####
58 #===============================================================================
63 puts "Usage: file2c.tcl <file to encode> <output C file>"
66 set infile
[lindex $argv 0]
67 set outfile
[lindex $argv 1]
68 set label [string range
$outfile [expr 1+[string last
/ $outfile]] [expr [string last .
$outfile]-1]]
71 set infilefd
[open $infile "r"]
72 fconfigure $infilefd -translation binary
73 set data
[read $infilefd]
78 error "Unable to read file $infile: $message"
84 set outfilefd
[ open $outfile "w" ]
88 error "Unable to create file $outfile: $message"
91 append result
"/* This is a generated file. Do not edit. */\n\n"
92 append result
"const unsigned char filedata_$label\[\] = {\n"
94 set datalength
[ string length
$data ]
96 set aligned_datalength
[expr $datalength - ($datalength % 8)]
98 for { set i
0 } {$i < $aligned_datalength} {incr i
8} {
99 binary scan $data "@[set i]H16" var0
100 append result
[format " 0x%2s, 0x%2s, 0x%2s, 0x%2s, 0x%2s, 0x%2s, 0x%2s, 0x%2s,\n" \
101 [string range
$var0 0 1] \
102 [string range
$var0 2 3] \
103 [string range
$var0 4 5] \
104 [string range
$var0 6 7] \
105 [string range
$var0 8 9] \
106 [string range
$var0 10 11] \
107 [string range
$var0 12 13] \
108 [string range
$var0 14 15]]
111 if { $aligned_datalength != $datalength } {
113 for { set i
$aligned_datalength } {$i < $datalength} {incr i
} {
114 binary scan $data "@[set i]H2" var0
115 append result
[format "0x%2s, " $var0]
119 # Remove either comma+newline or comma+space from the end
120 set result
[string range
$result 0 [expr [string length
$result] - 3]]
124 puts $outfilefd $result