sqlcipher/tool/mksqlite3c.tcl

452 lines
12 KiB
Tcl
Raw Normal View History

2008-07-30 09:15:43 -04:00
#!/usr/bin/tclsh
#
# To build a single huge source file holding all of SQLite (or at
2016-12-05 14:29:15 -06:00
# least the core components - the test harness, shell, and TCL
2008-07-30 09:15:43 -04:00
# 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
2016-12-05 14:29:15 -06:00
# the parser are derived from "parse.y" using lemon. And the
2008-07-30 09:15:43 -04:00
# "keywordhash.h" files is generated by a program named "mkkeywordhash".
#
# After the "tsrc" directory has been created and populated, run
# this script:
#
2015-07-10 14:14:29 -05:00
# tclsh mksqlite3c.tcl --srcdir $SRC
2008-07-30 09:15:43 -04:00
#
# The amalgamated SQLite code will be written into sqlite3.c
#
2009-08-11 16:01:51 -04:00
# Begin by reading the "sqlite3.h" header file. Extract the version number
2013-05-21 15:38:11 -05:00
# from in this file. The version number is needed to generate the header
2009-08-11 16:01:51 -04:00
# comment of the amalgamation.
2008-07-30 09:15:43 -04:00
#
2015-07-10 14:14:29 -05:00
set addstatic 1
set linemacros 0
2016-12-05 14:29:15 -06:00
set useapicall 0
2015-07-10 14:14:29 -05:00
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
2016-12-05 14:29:15 -06:00
} elseif {[regexp {^-+useapicall} $x]} {
set useapicall 1
2015-07-10 14:14:29 -05:00
} else {
error "unknown command-line option: $x"
}
2011-12-26 14:52:17 -05:00
}
2008-07-30 09:15:43 -04:00
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
# Open the output file and write a header comment at the beginning
# of the file.
#
set out [open sqlite3.c w]
2011-08-17 13:17:32 -04:00
# Force the output to use unix line endings, even on Windows.
fconfigure $out -translation lf
2008-07-30 09:15:43 -04:00
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
2016-12-05 14:29:15 -06:00
** version $VERSION. By combining all the individual C code files into this
2011-05-05 22:37:34 -04:00
** single large file, the entire code can be compiled as a single translation
2008-07-30 09:15:43 -04:00
** unit. This allows many compilers to do optimizations that would not be
** possible if the files were compiled separately. Performance improvements
2011-02-16 16:14:46 -05:00
** of 5% or more are commonly seen when SQLite is compiled as a single
2008-07-30 09:15:43 -04:00
** 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
2016-12-05 14:29:15 -06:00
** the programming interface to the SQLite library. (If you do not have
2009-08-11 16:01:51 -04:00
** 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.
2008-07-30 09:15:43 -04:00
*/
#define SQLITE_CORE 1
#define SQLITE_AMALGAMATION 1}]
if {$addstatic} {
puts $out \
{#ifndef SQLITE_PRIVATE
# define SQLITE_PRIVATE static
#endif}
}
2016-12-05 14:29:15 -06:00
# These are the header files used by SQLite. The first time any of these
2008-07-30 09:15:43 -04:00
# 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 {
2009-02-19 13:09:17 -05:00
crypto.h
2013-05-31 02:40:08 -04:00
sqlcipher.h
2008-07-30 09:15:43 -04:00
btree.h
btreeInt.h
fts3.h
2009-12-19 15:56:40 -05:00
fts3Int.h
2008-07-30 09:15:43 -04:00
fts3_hash.h
fts3_tokenizer.h
2018-09-18 12:31:37 -04:00
geopoly.c
2008-07-30 09:15:43 -04:00
hash.h
hwtime.h
keywordhash.h
2015-03-20 09:04:26 -05:00
msvc.h
2008-07-30 09:15:43 -04:00
mutex.h
opcodes.h
os_common.h
2014-09-30 08:40:45 -05:00
os_setup.h
os_win.h
2008-07-30 09:15:43 -04:00
os.h
pager.h
parse.h
2009-02-20 15:33:35 -05:00
pcache.h
2015-07-10 14:14:29 -05:00
pragma.h
2008-07-30 09:15:43 -04:00
rtree.h
2016-12-05 14:29:15 -06:00
sqlite3session.h
sqlite3.h
2016-02-23 09:07:39 -06:00
sqlite3ext.h
sqlite3rbu.h
2009-02-20 15:33:35 -05:00
sqliteicu.h
2008-07-30 09:15:43 -04:00
sqliteInt.h
sqliteLimit.h
vdbe.h
vdbeInt.h
2015-07-10 14:14:29 -05:00
vxworks.h
2010-07-22 09:16:22 -04:00
wal.h
2014-04-04 10:16:20 -05:00
whereInt.h
2008-07-30 09:15:43 -04:00
} {
set available_hdr($hdr) 1
}
set available_hdr(sqliteInt.h) 0
2016-12-05 14:29:15 -06:00
set available_hdr(sqlite3session.h) 0
2008-07-30 09:15:43 -04:00
2015-07-10 14:14:29 -05:00
# 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
}
2008-07-30 09:15:43 -04:00
# 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,
2014-04-04 10:16:20 -05:00
# process them appropriately.
2008-07-30 09:15:43 -04:00
#
proc copy_file {filename} {
2016-12-05 14:29:15 -06:00
global seen_hdr available_hdr varonly_hdr cdecllist out
global addstatic linemacros useapicall
2011-12-26 14:52:17 -05:00
set ln 0
2008-07-30 09:15:43 -04:00
set tail [file tail $filename]
section_comment "Begin file $tail"
2011-12-26 14:52:17 -05:00
if {$linemacros} {puts $out "#line 1 \"$filename\""}
2008-07-30 09:15:43 -04:00
set in [open $filename r]
set varpattern {^[a-zA-Z][a-zA-Z_0-9 *]+(sqlite3[_a-zA-Z0-9]+)(\[|;| =)}
2015-07-10 14:14:29 -05:00
set declpattern {([a-zA-Z][a-zA-Z_0-9 ]+ \**)(sqlite3[_a-zA-Z0-9]+)(\(.*)}
2008-07-30 09:15:43 -04:00
if {[file extension $filename]==".h"} {
set declpattern " *$declpattern"
}
2015-07-10 14:14:29 -05:00
set declpattern ^$declpattern\$
2008-07-30 09:15:43 -04:00
while {![eof $in]} {
set line [gets $in]
2011-12-26 14:52:17 -05:00
incr ln
2009-02-20 15:33:35 -05:00
if {[regexp {^\s*#\s*include\s+["<]([^">]+)[">]} $line all hdr]} {
2008-07-30 09:15:43 -04:00
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"
2011-12-26 14:52:17 -05:00
if {$linemacros} {puts $out "#line [expr {$ln+1}] \"$filename\""}
2016-02-23 09:07:39 -06:00
} else {
# Comment out the entire line, replacing any nested comment
# begin/end markers with the harmless substring "**".
puts $out "/* [string map [list /* ** */ **] $line] */"
2008-07-30 09:15:43 -04:00
}
} elseif {![info exists seen_hdr($hdr)]} {
2014-09-30 08:40:45 -05:00
if {![regexp {/\*\s+amalgamator:\s+dontcache\s+\*/} $line]} {
set seen_hdr($hdr) 1
}
2008-07-30 09:15:43 -04:00
puts $out $line
2014-04-04 10:16:20 -05:00
} 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
2011-12-26 14:52:17 -05:00
} else {
2014-04-04 10:16:20 -05:00
# Comment out the entire line, replacing any nested comment
# begin/end markers with the harmless substring "**".
puts $out "/* [string map [list /* ** */ **] $line] */"
2008-07-30 09:15:43 -04:00
}
} elseif {[regexp {^#ifdef __cplusplus} $line]} {
puts $out "#if 0"
2011-12-26 14:52:17 -05:00
} elseif {!$linemacros && [regexp {^#line} $line]} {
2008-07-30 09:15:43 -04:00
# Skip #line directives.
2016-02-23 09:07:39 -06:00
} elseif {$addstatic
&& ![regexp {^(static|typedef|SQLITE_PRIVATE)} $line]} {
2015-07-10 14:14:29 -05:00
# 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
2018-09-18 12:31:37 -04:00
regsub {^SQLITE_API } $rettype {} rettype
2008-07-30 09:15:43 -04:00
# Add the SQLITE_PRIVATE or SQLITE_API keyword before functions.
# so that linkage can be modified at compile-time.
2016-12-05 14:29:15 -06:00
if {[regexp {^sqlite3[a-z]*_} $funcname]} {
2015-07-10 14:14:29 -05:00
set line SQLITE_API
append line " " [string trim $rettype]
if {[string index $rettype end] ne "*"} {
append line " "
}
2016-12-05 14:29:15 -06:00
if {$useapicall} {
if {[lsearch -exact $cdecllist $funcname] >= 0} {
append line SQLITE_CDECL " "
} else {
append line SQLITE_APICALL " "
}
2015-07-10 14:14:29 -05:00
}
2016-12-05 14:29:15 -06:00
append line $funcname $rest
2018-09-18 12:31:37 -04:00
if {$funcname=="sqlite3_sourceid" && !$linemacros} {
# The sqlite3_sourceid() routine is synthesized at the end of
# the amalgamation
puts $out "/* $line */"
} else {
puts $out $line
}
2008-07-30 09:15:43 -04:00
} else {
puts $out "SQLITE_PRIVATE $line"
}
} elseif {[regexp $varpattern $line all varname]} {
2015-07-10 14:14:29 -05:00
# Add the SQLITE_PRIVATE before variable declarations or
# definitions for internal use
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"
2009-02-20 15:33:35 -05:00
}
2008-07-30 09:15:43 -04:00
} elseif {[regexp {^(SQLITE_EXTERN )?void \(\*sqlite3IoTrace\)} $line]} {
2015-07-10 14:14:29 -05:00
regsub {^SQLITE_API } $line {} line
2008-07-30 09:15:43 -04:00
regsub {^SQLITE_EXTERN } $line {} line
2015-03-20 09:04:26 -05:00
puts $out $line
2009-02-20 15:33:35 -05:00
} elseif {[regexp {^void \(\*sqlite3Os} $line]} {
2015-07-10 14:14:29 -05:00
regsub {^SQLITE_API } $line {} line
2009-02-20 15:33:35 -05:00
puts $out "SQLITE_PRIVATE $line"
2008-07-30 09:15:43 -04:00
} else {
puts $out $line
}
} else {
puts $out $line
}
}
close $in
section_comment "End of $tail"
}
# Process the source files. Process files containing commonly
# used subroutines first in order to help the compiler find
# inlining opportunities.
#
2008-07-30 09:15:43 -04:00
foreach file {
2017-09-27 16:07:03 -05:00
ctime.c
2008-07-30 09:15:43 -04:00
sqliteInt.h
2009-02-19 13:09:17 -05:00
crypto.c
crypto_impl.c
crypto_libtomcrypt.c
2019-05-24 13:21:33 -04:00
crypto_nss.c
crypto_openssl.c
crypto_cc.c
2009-02-19 13:09:17 -05:00
2008-07-30 09:15:43 -04:00
global.c
status.c
date.c
os.c
fault.c
2009-02-20 15:33:35 -05:00
mem0.c
2008-07-30 09:15:43 -04:00
mem1.c
mem2.c
mem3.c
mem5.c
mutex.c
2009-02-20 15:33:35 -05:00
mutex_noop.c
2008-07-30 09:15:43 -04:00
mutex_unix.c
mutex_w32.c
malloc.c
printf.c
2016-02-23 09:07:39 -06:00
treeview.c
2008-07-30 09:15:43 -04:00
random.c
2015-03-20 09:04:26 -05:00
threads.c
2008-07-30 09:15:43 -04:00
utf.c
util.c
hash.c
opcodes.c
os_unix.c
os_win.c
2018-09-18 12:31:37 -04:00
memdb.c
2008-07-30 09:15:43 -04:00
bitvec.c
2009-02-20 15:33:35 -05:00
pcache.c
pcache1.c
rowset.c
2008-07-30 09:15:43 -04:00
pager.c
2010-07-22 09:16:22 -04:00
wal.c
2008-07-30 09:15:43 -04:00
btmutex.c
btree.c
2009-02-20 15:33:35 -05:00
backup.c
2008-07-30 09:15:43 -04:00
vdbemem.c
vdbeaux.c
vdbeapi.c
2009-12-19 15:56:40 -05:00
vdbetrace.c
2008-07-30 09:15:43 -04:00
vdbe.c
vdbeblob.c
2011-12-26 14:52:17 -05:00
vdbesort.c
2009-02-20 15:33:35 -05:00
memjournal.c
2008-07-30 09:15:43 -04:00
2009-02-20 15:33:35 -05:00
walker.c
resolve.c
2008-07-30 09:15:43 -04:00
expr.c
alter.c
analyze.c
attach.c
auth.c
build.c
callback.c
delete.c
func.c
2009-12-03 16:24:07 -05:00
fkey.c
2008-07-30 09:15:43 -04:00
insert.c
legacy.c
loadext.c
pragma.c
prepare.c
select.c
table.c
trigger.c
update.c
2018-09-18 12:31:37 -04:00
upsert.c
2008-07-30 09:15:43 -04:00
vacuum.c
vtab.c
2016-02-23 09:07:39 -06:00
wherecode.c
whereexpr.c
2008-07-30 09:15:43 -04:00
where.c
2018-09-18 12:31:37 -04:00
window.c
2008-07-30 09:15:43 -04:00
parse.c
tokenize.c
complete.c
main.c
2009-04-21 10:39:00 -04:00
notify.c
2008-07-30 09:15:43 -04:00
fts3.c
2011-05-05 22:37:34 -04:00
fts3_aux.c
2009-02-20 15:33:35 -05:00
fts3_expr.c
2008-07-30 09:15:43 -04:00
fts3_hash.c
fts3_porter.c
fts3_tokenizer.c
fts3_tokenizer1.c
2013-05-21 15:38:11 -05:00
fts3_tokenize_vtab.c
2009-12-19 15:56:40 -05:00
fts3_write.c
fts3_snippet.c
2012-07-18 14:42:52 -04:00
fts3_unicode.c
fts3_unicode2.c
2008-07-30 09:15:43 -04:00
2018-09-18 12:31:37 -04:00
json1.c
2008-07-30 09:15:43 -04:00
rtree.c
icu.c
2009-02-19 13:09:17 -05:00
2009-02-20 15:33:35 -05:00
fts3_icu.c
2016-02-23 09:07:39 -06:00
sqlite3rbu.c
2015-07-10 14:14:29 -05:00
dbstat.c
2018-09-18 12:31:37 -04:00
dbpage.c
2016-12-05 14:29:15 -06:00
sqlite3session.c
2016-02-23 09:07:39 -06:00
fts5.c
2017-09-27 16:07:03 -05:00
stmt.c
2008-07-30 09:15:43 -04:00
} {
copy_file tsrc/$file
}
2018-09-18 12:31:37 -04:00
# Synthesize an alternative sqlite3_sourceid() implementation that
# that tries to detects changes in the amalgamation source text
# and modify returns a modified source-id if changes are detected.
#
# The only detection mechanism we have is the __LINE__ macro. So only
# edits that changes the number of lines of source code are detected.
#
if {!$linemacros} {
flush $out
set in2 [open sqlite3.c]
set cnt 0
set oldsrcid {}
while {![eof $in2]} {
incr cnt
gets $in2 line
if {[regexp {^#define SQLITE_SOURCE_ID } $line]} {set oldsrcid $line}
}
close $in2
regsub {[0-9a-flt]{4}"} $oldsrcid {alt2"} oldsrcid
puts $out \
"#if __LINE__!=[expr {$cnt+0}]
#undef SQLITE_SOURCE_ID
$oldsrcid
#endif
/* Return the source-id for this library */
SQLITE_API const char *sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; }"
}
puts $out \
"/************************** End of sqlite3.c ******************************/"
2008-07-30 09:15:43 -04:00
close $out