|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set addstatic 1 |
|
|
set linemacros 0 |
|
|
set useapicall 0 |
|
|
for {set i 0} {$i<[llength $argv]} {incr i} { |
|
|
set x [lindex $argv $i] |
|
|
if {[regexp {^-+nostatic$} $x]} { |
|
|
set addstatic 0 |
|
|
} elseif {[regexp {^-+linemacros} $x]} { |
|
|
set linemacros 1 |
|
|
} elseif {[regexp {^-+useapicall} $x]} { |
|
|
set useapicall 1 |
|
|
} else { |
|
|
error "unknown command-line option: $x" |
|
|
} |
|
|
} |
|
|
set in [open tsrc/sqlite3.h] |
|
|
set cnt 0 |
|
|
set VERSION ????? |
|
|
while {![eof $in]} { |
|
|
set line [gets $in] |
|
|
if {$line=="" && [eof $in]} break |
|
|
incr cnt |
|
|
regexp {#define\s+SQLITE_VERSION\s+"(.*)"} $line all VERSION |
|
|
} |
|
|
close $in |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set out [open sqlite3.c w] |
|
|
|
|
|
fconfigure $out -translation lf |
|
|
set today [clock format [clock seconds] -format "%Y-%m-%d %H:%M:%S UTC" -gmt 1] |
|
|
puts $out [subst \ |
|
|
{/****************************************************************************** |
|
|
** This file is an amalgamation of many separate C source files from SQLite |
|
|
** version $VERSION. By combining all the individual C code files into this |
|
|
** single large file, the entire code can be compiled as a single translation |
|
|
** unit. This allows many compilers to do optimizations that would not be |
|
|
** possible if the files were compiled separately. Performance improvements |
|
|
** of 5% or more are commonly seen when SQLite is compiled as a single |
|
|
** translation unit. |
|
|
** |
|
|
** This file is all you need to compile SQLite. To use SQLite in other |
|
|
** programs, you need this file and the "sqlite3.h" header file that defines |
|
|
** the programming interface to the SQLite library. (If you do not have |
|
|
** the "sqlite3.h" header file at hand, you will find a copy embedded within |
|
|
** the text of this file. Search for "Begin file sqlite3.h" to find the start |
|
|
** of the embedded sqlite3.h header file.) Additional code files may be needed |
|
|
** if you want a wrapper to interface SQLite with your choice of programming |
|
|
** language. The code for the "sqlite3" command-line shell is also in a |
|
|
** separate file. This file contains only code for the core SQLite library. |
|
|
*/ |
|
|
|
|
|
|
|
|
if {$addstatic} { |
|
|
puts $out \ |
|
|
{#ifndef SQLITE_PRIVATE |
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach hdr { |
|
|
btree.h |
|
|
btreeInt.h |
|
|
hash.h |
|
|
hwtime.h |
|
|
keywordhash.h |
|
|
msvc.h |
|
|
mutex.h |
|
|
opcodes.h |
|
|
os_common.h |
|
|
os_setup.h |
|
|
os_win.h |
|
|
os.h |
|
|
pager.h |
|
|
parse.h |
|
|
pcache.h |
|
|
pragma.h |
|
|
sqlite3.h |
|
|
sqlite3ext.h |
|
|
sqliteicu.h |
|
|
sqliteInt.h |
|
|
sqliteLimit.h |
|
|
vdbe.h |
|
|
vdbeInt.h |
|
|
vxworks.h |
|
|
wal.h |
|
|
whereInt.h |
|
|
} { |
|
|
set available_hdr($hdr) 1 |
|
|
} |
|
|
set available_hdr(sqliteInt.h) 0 |
|
|
|
|
|
|
|
|
|
|
|
set varonly_hdr(sqlite3.h) 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set cdecllist { |
|
|
sqlite3_config |
|
|
sqlite3_db_config |
|
|
sqlite3_log |
|
|
sqlite3_mprintf |
|
|
sqlite3_snprintf |
|
|
sqlite3_test_control |
|
|
sqlite3_vtab_config |
|
|
} |
|
|
|
|
|
|
|
|
set s78 \ |
|
|
{*****************************************************************************} |
|
|
|
|
|
|
|
|
|
|
|
proc section_comment {text} { |
|
|
global out s78 |
|
|
set n [string length $text] |
|
|
set nstar [expr {60 - $n}] |
|
|
set stars [string range $s78 0 $nstar] |
|
|
puts $out "/************** $text $stars/" |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
proc copy_file {filename} { |
|
|
global seen_hdr available_hdr varonly_hdr cdecllist out |
|
|
global addstatic linemacros useapicall |
|
|
set ln 0 |
|
|
set tail [file tail $filename] |
|
|
section_comment "Begin file $tail" |
|
|
if {$linemacros} {puts $out "#line 1 \"$filename\""} |
|
|
set in [open $filename r] |
|
|
set varpattern {^[a-zA-Z][a-zA-Z_0-9 *]+(sqlite3[_a-zA-Z0-9]+)(\[|;| =)} |
|
|
set declpattern {([a-zA-Z][a-zA-Z_0-9 ]+ \**)(sqlite3[_a-zA-Z0-9]+)(\(.*)} |
|
|
if {[file extension $filename]==".h"} { |
|
|
set declpattern " *$declpattern" |
|
|
} |
|
|
set declpattern ^$declpattern\$ |
|
|
while {![eof $in]} { |
|
|
set line [gets $in] |
|
|
incr ln |
|
|
if {[regexp {^\s*#\s*include\s+["<]([^">]+)[">]} $line all hdr]} { |
|
|
if {[info exists available_hdr($hdr)]} { |
|
|
if {$available_hdr($hdr)} { |
|
|
if {$hdr!="os_common.h" && $hdr!="hwtime.h"} { |
|
|
set available_hdr($hdr) 0 |
|
|
} |
|
|
section_comment "Include $hdr in the middle of $tail" |
|
|
copy_file tsrc/$hdr |
|
|
section_comment "Continuing where we left off in $tail" |
|
|
if {$linemacros} {puts $out "#line [expr {$ln+1}] \"$filename\""} |
|
|
} else { |
|
|
|
|
|
|
|
|
puts $out "/* [string map [list /* ** */ **] $line] */" |
|
|
} |
|
|
} elseif {![info exists seen_hdr($hdr)]} { |
|
|
if {![regexp {/\*\s+amalgamator:\s+dontcache\s+\*/} $line]} { |
|
|
set seen_hdr($hdr) 1 |
|
|
} |
|
|
puts $out $line |
|
|
} elseif {[regexp {/\*\s+amalgamator:\s+keep\s+\*/} $line]} { |
|
|
|
|
|
|
|
|
puts $out $line |
|
|
} else { |
|
|
|
|
|
|
|
|
puts $out "/* [string map [list /* ** */ **] $line] */" |
|
|
} |
|
|
} elseif {[regexp {^#ifdef __cplusplus} $line]} { |
|
|
puts $out "#if 0" |
|
|
} elseif {!$linemacros && [regexp {^#line} $line]} { |
|
|
|
|
|
} elseif {$addstatic |
|
|
&& ![regexp {^(static|typedef|SQLITE_PRIVATE)} $line]} { |
|
|
|
|
|
|
|
|
if {![info exists varonly_hdr($tail)] |
|
|
&& [regexp $declpattern $line all rettype funcname rest]} { |
|
|
regsub {^SQLITE_API } $line {} line |
|
|
|
|
|
|
|
|
if {[regexp {^sqlite3[a-z]*_} $funcname]} { |
|
|
set line SQLITE_API |
|
|
append line " " [string trim $rettype] |
|
|
if {[string index $rettype end] ne "*"} { |
|
|
append line " " |
|
|
} |
|
|
if {$useapicall} { |
|
|
if {[lsearch -exact $cdecllist $funcname] >= 0} { |
|
|
append line SQLITE_CDECL " " |
|
|
} else { |
|
|
append line SQLITE_APICALL " " |
|
|
} |
|
|
} |
|
|
append line $funcname $rest |
|
|
puts $out $line |
|
|
} else { |
|
|
puts $out "SQLITE_PRIVATE $line" |
|
|
} |
|
|
} elseif {[regexp $varpattern $line all varname]} { |
|
|
|
|
|
|
|
|
regsub {^SQLITE_API } $line {} line |
|
|
if {![regexp {^sqlite3_} $varname]} { |
|
|
regsub {^extern } $line {} line |
|
|
puts $out "SQLITE_PRIVATE $line" |
|
|
} else { |
|
|
if {[regexp {const char sqlite3_version\[\];} $line]} { |
|
|
set line {const char sqlite3_version[] = SQLITE_VERSION;} |
|
|
} |
|
|
regsub {^SQLITE_EXTERN } $line {} line |
|
|
puts $out "SQLITE_API $line" |
|
|
} |
|
|
} elseif {[regexp {^(SQLITE_EXTERN )?void \(\*sqlite3IoTrace\)} $line]} { |
|
|
regsub {^SQLITE_API } $line {} line |
|
|
regsub {^SQLITE_EXTERN } $line {} line |
|
|
puts $out $line |
|
|
} elseif {[regexp {^void \(\*sqlite3Os} $line]} { |
|
|
regsub {^SQLITE_API } $line {} line |
|
|
puts $out "SQLITE_PRIVATE $line" |
|
|
} else { |
|
|
puts $out $line |
|
|
} |
|
|
} else { |
|
|
puts $out $line |
|
|
} |
|
|
} |
|
|
close $in |
|
|
section_comment "End of $tail" |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach file { |
|
|
sqliteInt.h |
|
|
|
|
|
global.c |
|
|
ctime.c |
|
|
status.c |
|
|
date.c |
|
|
os.c |
|
|
|
|
|
fault.c |
|
|
mem0.c |
|
|
mem1.c |
|
|
mem2.c |
|
|
mem3.c |
|
|
mem5.c |
|
|
mutex.c |
|
|
mutex_noop.c |
|
|
mutex_unix.c |
|
|
mutex_w32.c |
|
|
malloc.c |
|
|
printf.c |
|
|
treeview.c |
|
|
random.c |
|
|
threads.c |
|
|
utf.c |
|
|
util.c |
|
|
hash.c |
|
|
opcodes.c |
|
|
|
|
|
os_unix.c |
|
|
os_win.c |
|
|
|
|
|
bitvec.c |
|
|
pcache.c |
|
|
pcache1.c |
|
|
rowset.c |
|
|
pager.c |
|
|
wal.c |
|
|
|
|
|
btmutex.c |
|
|
btree.c |
|
|
backup.c |
|
|
|
|
|
vdbemem.c |
|
|
vdbeaux.c |
|
|
vdbeapi.c |
|
|
vdbetrace.c |
|
|
vdbe.c |
|
|
vdbeblob.c |
|
|
vdbesort.c |
|
|
memjournal.c |
|
|
|
|
|
walker.c |
|
|
resolve.c |
|
|
expr.c |
|
|
alter.c |
|
|
analyze.c |
|
|
attach.c |
|
|
auth.c |
|
|
build.c |
|
|
callback.c |
|
|
delete.c |
|
|
func.c |
|
|
fkey.c |
|
|
insert.c |
|
|
legacy.c |
|
|
loadext.c |
|
|
pragma.c |
|
|
prepare.c |
|
|
select.c |
|
|
table.c |
|
|
trigger.c |
|
|
update.c |
|
|
vacuum.c |
|
|
vtab.c |
|
|
wherecode.c |
|
|
whereexpr.c |
|
|
where.c |
|
|
window.c |
|
|
|
|
|
parse.c |
|
|
|
|
|
tokenize.c |
|
|
complete.c |
|
|
|
|
|
main.c |
|
|
notify.c |
|
|
} { |
|
|
copy_file tsrc/$file |
|
|
} |
|
|
|
|
|
close $out |
|
|
|