Fix sessions module handling of sqlite_stat1 rows with (idx IS NULL).
[sqlite.git] / tool / split-sqlite3c.tcl
blob230e3f2549c95fcc7f9a0a7d03489c27fe7ada4a
1 #!/usr/bin/tclsh
3 # This script splits the sqlite3.c amalgamated source code files into
4 # several smaller files such that no single files is more than a fixed
5 # number of lines in length (32k or 64k). Each of the split out files
6 # is #include-ed by the master file.
8 # Splitting files up this way allows them to be used with older compilers
9 # that cannot handle really long source files.
11 set MAX 32768 ;# Maximum number of lines per file.
13 set BEGIN {^/\*+ Begin file ([a-zA-Z0-9_.]+) \*+/}
14 set END {^/\*+ End of %s \*+/}
16 set in [open sqlite3.c]
17 set out1 [open sqlite3-all.c w]
18 fconfigure $out1 -translation lf
20 # Copy the header from sqlite3.c into sqlite3-all.c
22 while {[gets $in line]} {
23 if {[regexp $BEGIN $line]} break
24 puts $out1 $line
27 # Gather the complete content of a file into memory. Store the
28 # content in $bufout. Store the number of lines is $nout
30 proc gather_one_file {firstline bufout nout} {
31 regexp $::BEGIN $firstline all filename
32 set end [format $::END $filename]
33 upvar $bufout buf $nout n
34 set buf $firstline\n
35 global in
36 set n 0
37 while {[gets $in line]>=0} {
38 incr n
39 append buf $line\n
40 if {[regexp $end $line]} break
44 # Write a big chunk of text in to an auxiliary file "sqlite3-NNN.c".
45 # Also add an appropriate #include to sqlite3-all.c
47 set filecnt 0
48 proc write_one_file {content} {
49 global filecnt
50 incr filecnt
51 set out [open sqlite3-$filecnt.c w]
52 fconfigure $out -translation lf
53 puts -nonewline $out $content
54 close $out
55 puts $::out1 "#include \"sqlite3-$filecnt.c\""
58 # Continue reading input. Store chunks in separate files and add
59 # the #includes to the main sqlite3-all.c file as necessary to reference
60 # the extra chunks.
62 set all {}
63 set N 0
64 while {[regexp $BEGIN $line]} {
65 set buf {}
66 set n 0
67 gather_one_file $line buf n
68 if {$n+$N>=$MAX} {
69 write_one_file $all
70 set all {}
71 set N 0
73 append all $buf
74 incr N $n
75 while {[gets $in line]>=0} {
76 if {[regexp $BEGIN $line]} break
77 puts $out1 $line
80 if {$N>0} {
81 write_one_file $all
83 close $out1
84 close $in