mirror of
https://github.com/sqlite/sqlite.git
synced 2024-11-21 11:19:14 +01:00
8b3ba8eb5a
that if they get truncated by more than a little whitespace, they will not compile and the truncation can be easily detected. FossilOrigin-Name: c3b624e2a903f0c975bc8b7288b98616a4a22b2a574738d1f578bfad1d6d8b91
517 lines
14 KiB
Tcl
517 lines
14 KiB
Tcl
#!/usr/bin/tclsh
|
|
#
|
|
# To build a single huge source file holding all of SQLite (or at
|
|
# least the core components - the test harness, shell, and TCL
|
|
# interface are omitted.) first do
|
|
#
|
|
# make target_source
|
|
#
|
|
# The make target above moves all of the source code files into
|
|
# a subdirectory named "tsrc". (This script expects to find the files
|
|
# there and will not work if they are not found.) There are a few
|
|
# generated C code files that are also added to the tsrc directory.
|
|
# For example, the "parse.c" and "parse.h" files to implement the
|
|
# the parser are derived from "parse.y" using lemon. And the
|
|
# "keywordhash.h" files is generated by a program named "mkkeywordhash".
|
|
#
|
|
# After the "tsrc" directory has been created and populated, run
|
|
# this script:
|
|
#
|
|
# tclsh mksqlite3c.tcl [flags] [extra source files]
|
|
#
|
|
# The amalgamated SQLite code will be written into sqlite3.c
|
|
#
|
|
|
|
set help {Usage: tclsh mksqlite3c.tcl <options>
|
|
where <options> is zero or more of the following with these effects:
|
|
--nostatic => Do not generate with compile-time modifiable linkage.
|
|
--linemacros=? => Emit #line directives into output or not. (? = 1 or 0)
|
|
--useapicall => Prepend functions with SQLITE_APICALL or SQLITE_CDECL.
|
|
--srcdir $SRC => Specify the directory containing constituent sources.
|
|
--help => See this.
|
|
The value setting options default to --linemacros=1 and '--srcdir tsrc' .
|
|
}
|
|
|
|
# Begin by reading the "sqlite3.h" header file. Extract the version number
|
|
# from in this file. The version number is needed to generate the header
|
|
# comment of the amalgamation.
|
|
#
|
|
|
|
set addstatic 1
|
|
set linemacros 0
|
|
set useapicall 0
|
|
set enable_recover 0
|
|
set srcdir tsrc
|
|
set extrasrc [list]
|
|
|
|
for {set i 0} {$i<[llength $argv]} {incr i} {
|
|
set x [lindex $argv $i]
|
|
if {[regexp {^-?-enable-recover$} $x]} {
|
|
set enable_recover 1
|
|
} elseif {[regexp {^-?-nostatic$} $x]} {
|
|
set addstatic 0
|
|
} elseif {[regexp {^-?-linemacros(?:=([01]))?$} $x ma ulm]} {
|
|
if {$ulm == ""} {set ulm 1}
|
|
set linemacros $ulm
|
|
} elseif {[regexp {^-?-useapicall$} $x]} {
|
|
set useapicall 1
|
|
} elseif {[regexp {^-?-srcdir$} $x]} {
|
|
incr i
|
|
if {$i==[llength $argv]} {
|
|
error "No argument following $x"
|
|
}
|
|
set srcdir [lindex $argv $i]
|
|
} elseif {[regexp {^-?-((help)|\?)$} $x]} {
|
|
puts $help
|
|
exit 0
|
|
} elseif {[regexp {^-?-} $x]} {
|
|
error "unknown command-line option: $x"
|
|
} else {
|
|
lappend extrasrc $x
|
|
}
|
|
}
|
|
set in [open $srcdir/sqlite3.h rb]
|
|
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
|
|
|
|
# Open the output file and write a header comment at the beginning
|
|
# of the file.
|
|
#
|
|
set fname sqlite3.c
|
|
if {$enable_recover} { set fname sqlite3r.c }
|
|
set out [open $fname wb]
|
|
# Force the output to use unix line endings, even on Windows.
|
|
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.
|
|
**}]
|
|
set srcroot [file dirname [file dirname [info script]]]
|
|
if {$tcl_platform(platform)=="windows"} {
|
|
set vsrcprog src-verify.exe
|
|
} else {
|
|
set vsrcprog ./src-verify
|
|
}
|
|
if {[file executable $vsrcprog] && [file readable $srcroot/manifest]} {
|
|
set tmpfile tmp-[clock millisec]-[expr {int(rand()*100000000000)}].txt
|
|
exec $vsrcprog -x $srcroot > $tmpfile
|
|
set fd [open $tmpfile rb]
|
|
set res [string trim [split [read $fd] \n]]
|
|
close $fd
|
|
file delete -force $tmpfile
|
|
puts $out "** The content in this amalgamation comes from Fossil check-in"
|
|
puts -nonewline $out "** [string range [lindex $res 0] 0 35]"
|
|
if {[llength $res]==1} {
|
|
puts $out "."
|
|
} else {
|
|
puts $out " with changes in files:\n**"
|
|
foreach f [lrange $res 1 end] {
|
|
puts $out "** $f"
|
|
}
|
|
}
|
|
} else {
|
|
puts $out "** The origin of the sources used to build this amalgamation"
|
|
puts $out "** is unknown."
|
|
}
|
|
puts $out [subst {*/
|
|
#ifndef SQLITE_AMALGAMATION
|
|
#define SQLITE_CORE 1
|
|
#define SQLITE_AMALGAMATION 1}]
|
|
if {$addstatic} {
|
|
puts $out \
|
|
{#ifndef SQLITE_PRIVATE
|
|
# define SQLITE_PRIVATE static
|
|
#endif}
|
|
}
|
|
|
|
# Examine the parse.c file. If it contains lines of the form:
|
|
#
|
|
# "#ifndef SQLITE_ENABLE_UPDATE_LIMIT
|
|
#
|
|
# then set the SQLITE_UDL_CAPABLE_PARSER flag in the amalgamation.
|
|
#
|
|
set in [open $srcdir/parse.c rb]
|
|
if {[regexp {ifndef SQLITE_ENABLE_UPDATE_DELETE_LIMIT} [read $in]]} {
|
|
puts $out "#define SQLITE_UDL_CAPABLE_PARSER 1"
|
|
}
|
|
close $in
|
|
|
|
# These are the header files used by SQLite. The first time any of these
|
|
# files are seen in a #include statement in the C code, include the complete
|
|
# text of the file in-line. The file only needs to be included once.
|
|
#
|
|
foreach hdr {
|
|
btree.h
|
|
btreeInt.h
|
|
fts3.h
|
|
fts3Int.h
|
|
fts3_hash.h
|
|
fts3_tokenizer.h
|
|
geopoly.c
|
|
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
|
|
rtree.h
|
|
sqlite3session.h
|
|
sqlite3.h
|
|
sqlite3ext.h
|
|
sqlite3rbu.h
|
|
sqliteicu.h
|
|
sqliteInt.h
|
|
sqliteLimit.h
|
|
vdbe.h
|
|
vdbeInt.h
|
|
vxworks.h
|
|
wal.h
|
|
whereInt.h
|
|
sqlite3recover.h
|
|
} {
|
|
set available_hdr($hdr) 1
|
|
}
|
|
set available_hdr(sqliteInt.h) 0
|
|
set available_hdr(os_common.h) 0
|
|
set available_hdr(sqlite3session.h) 0
|
|
|
|
# These headers should be copied into the amalgamation without modifying any
|
|
# of their function declarations or definitions.
|
|
set varonly_hdr(sqlite3.h) 1
|
|
|
|
# These are the functions that accept a variable number of arguments. They
|
|
# always need to use the "cdecl" calling convention even when another calling
|
|
# convention (e.g. "stcall") is being used for the rest of the library.
|
|
set cdecllist {
|
|
sqlite3_config
|
|
sqlite3_db_config
|
|
sqlite3_log
|
|
sqlite3_mprintf
|
|
sqlite3_snprintf
|
|
sqlite3_test_control
|
|
sqlite3_vtab_config
|
|
}
|
|
|
|
# 78 stars used for comment formatting.
|
|
set s78 \
|
|
{*****************************************************************************}
|
|
|
|
# Insert a comment into the code
|
|
#
|
|
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/"
|
|
}
|
|
|
|
# Read the source file named $filename and write it into the
|
|
# sqlite3.c output file. If any #include statements are seen,
|
|
# process them appropriately.
|
|
#
|
|
proc copy_file {filename} {
|
|
global seen_hdr available_hdr varonly_hdr cdecllist out
|
|
global addstatic linemacros useapicall srcdir
|
|
set ln 0
|
|
set tail [file tail $filename]
|
|
section_comment "Begin file $tail"
|
|
if {$linemacros} {puts $out "#line 1 \"$filename\""}
|
|
set in [open $filename rb]
|
|
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 [string trimright [gets $in]]
|
|
incr ln
|
|
if {[regexp {^\s*#\s*include\s+["<]([^">]+)[">]} $line all hdr]} {
|
|
if {[info exists available_hdr($hdr)]} {
|
|
if {$available_hdr($hdr)} {
|
|
set available_hdr($hdr) 0
|
|
section_comment "Include $hdr in the middle of $tail"
|
|
copy_file $srcdir/$hdr
|
|
section_comment "Continuing where we left off in $tail"
|
|
if {$linemacros} {puts $out "#line [expr {$ln+1}] \"$filename\""}
|
|
} else {
|
|
# Comment out the entire line, replacing any nested comment
|
|
# begin/end markers with the harmless substring "**".
|
|
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]} {
|
|
# This include file must be kept because there was a "keep"
|
|
# directive inside of a line comment.
|
|
puts $out $line
|
|
} else {
|
|
# Comment out the entire line, replacing any nested comment
|
|
# begin/end markers with the harmless substring "**".
|
|
puts $out "/* [string map [list /* ** */ **] $line] */"
|
|
}
|
|
} elseif {[regexp {^#ifdef __cplusplus} $line]} {
|
|
puts $out "#if 0"
|
|
} elseif {!$linemacros && [regexp {^#line} $line]} {
|
|
# Skip #line directives.
|
|
} elseif {$addstatic
|
|
&& ![regexp {^(static|typedef|SQLITE_PRIVATE)} $line]} {
|
|
# Skip adding the SQLITE_PRIVATE or SQLITE_API keyword before
|
|
# functions if this header file does not need it.
|
|
if {![info exists varonly_hdr($tail)]
|
|
&& [regexp $declpattern $line all rettype funcname rest]} {
|
|
regsub {^SQLITE_API } $line {} line
|
|
regsub {^SQLITE_API } $rettype {} rettype
|
|
|
|
# Add the SQLITE_PRIVATE or SQLITE_API keyword before functions.
|
|
# so that linkage can be modified at compile-time.
|
|
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
|
|
if {$funcname=="sqlite3_sourceid"} {
|
|
# The sqlite3_sourceid() routine is synthesized at the end of
|
|
# the amalgamation
|
|
puts $out "/* $line */"
|
|
} else {
|
|
puts $out $line
|
|
}
|
|
} else {
|
|
puts $out "SQLITE_PRIVATE $line"
|
|
}
|
|
} elseif {[regexp $varpattern $line all varname]} {
|
|
# Add the SQLITE_PRIVATE before variable declarations or
|
|
# definitions for internal use
|
|
regsub {^SQLITE_API } $line {} line
|
|
if {![regexp {^sqlite3_} $varname]
|
|
&& ![regexp {^sqlite3Show[A-Z]} $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"
|
|
}
|
|
|
|
# Read the source file named $filename and write it into the
|
|
# sqlite3.c output file. The only transformation is the trimming
|
|
# of EOL whitespace.
|
|
#
|
|
proc copy_file_verbatim {filename} {
|
|
global out
|
|
set in [open $filename rb]
|
|
set tail [file tail $filename]
|
|
section_comment "Begin EXTRA_SRC file $tail"
|
|
while {![eof $in]} {
|
|
set line [string trimright [gets $in]]
|
|
puts $out $line
|
|
}
|
|
section_comment "End of EXTRA_SRC $tail"
|
|
}
|
|
|
|
# Process the source files. Process files containing commonly
|
|
# used subroutines first in order to help the compiler find
|
|
# inlining opportunities.
|
|
#
|
|
set flist {
|
|
sqliteInt.h
|
|
os_common.h
|
|
ctime.c
|
|
|
|
global.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_kv.c
|
|
os_unix.c
|
|
os_win.c
|
|
memdb.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
|
|
vdbevtab.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
|
|
upsert.c
|
|
vacuum.c
|
|
vtab.c
|
|
wherecode.c
|
|
whereexpr.c
|
|
where.c
|
|
window.c
|
|
|
|
parse.c
|
|
|
|
tokenize.c
|
|
complete.c
|
|
|
|
main.c
|
|
notify.c
|
|
|
|
fts3.c
|
|
fts3_aux.c
|
|
fts3_expr.c
|
|
fts3_hash.c
|
|
fts3_porter.c
|
|
fts3_tokenizer.c
|
|
fts3_tokenizer1.c
|
|
fts3_tokenize_vtab.c
|
|
fts3_write.c
|
|
fts3_snippet.c
|
|
fts3_unicode.c
|
|
fts3_unicode2.c
|
|
|
|
json.c
|
|
rtree.c
|
|
icu.c
|
|
fts3_icu.c
|
|
sqlite3rbu.c
|
|
dbstat.c
|
|
dbpage.c
|
|
sqlite3session.c
|
|
fts5.c
|
|
stmt.c
|
|
}
|
|
if {$enable_recover} {
|
|
lappend flist sqlite3recover.c dbdata.c
|
|
}
|
|
foreach file $flist {
|
|
copy_file $srcdir/$file
|
|
}
|
|
foreach file $extrasrc {
|
|
copy_file_verbatim $file
|
|
}
|
|
|
|
puts $out \
|
|
"/* Return the source-id for this library */
|
|
SQLITE_API const char *sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; }"
|
|
|
|
puts $out \
|
|
"#endif /* SQLITE_AMALGAMATION */
|
|
/************************** End of sqlite3.c ******************************/"
|
|
|
|
close $out
|