mariadb/storage/bdb/dist/gen_rec.awk
knielsen@mysql.com bf5a72e3f5 Merge mysql.com:/usr/local/mysql/mysql-mawk
into  mysql.com:/usr/local/mysql/mysql-5.1-new
2005-12-14 13:24:26 +01:00

981 lines
31 KiB
Awk

#!/bin/sh -
#
# See the file LICENSE for redistribution information.
#
# Copyright (c) 1996-2005
# Sleepycat Software. All rights reserved.
#
# $Id: gen_rec.awk,v 12.6 2005/10/12 18:48:44 ubell Exp $
#
# This awk script generates all the log, print, and read routines for the DB
# logging. It also generates a template for the recovery functions (these
# functions must still be edited, but are highly stylized and the initial
# template gets you a fair way along the path).
#
# For a given file prefix.src, we generate a file prefix_auto.c, and a file
# prefix_auto.h that contains:
#
# external declarations for the file's functions
# defines for the physical record types
# (logical types are defined in each subsystem manually)
# structures to contain the data unmarshalled from the log.
#
# This awk script requires that four variables be set when it is called:
#
# source_file -- the C source file being created
# header_file -- the C #include file being created
# template_file -- the template file being created
#
# And stdin must be the input file that defines the recovery setup.
#
# Within each file prefix.src, we use a number of public keywords (documented
# in the reference guide) as well as the following ones which are private to
# DB:
# DBPRIVATE Indicates that a file will be built as part of DB,
# rather than compiled independently, and so can use
# DB-private interfaces (such as DB_LOG_NOCOPY).
# DB A DB handle. Logs the dbreg fileid for that handle,
# and makes the *_log interface take a DB * instead of a
# DB_ENV *.
# PGDBT Just like DBT, only we know it stores a page or page
# header, so we can byte-swap it (once we write the
# byte-swapping code, which doesn't exist yet).
# LOCKS Just like DBT, but uses a print function for locks.
BEGIN {
if (source_file == "" ||
header_file == "" || template_file == "") {
print "Usage: gen_rec.awk requires three variables to be set:"
print "\theader_file\t-- the recover #include file being created"
print "\tprint_file\t-- the print source file being created"
print "\tsource_file\t-- the recover source file being created"
print "\ttemplate_file\t-- the template file being created"
exit
}
FS="[\t ][\t ]*"
CFILE=source_file
HFILE=header_file
PFILE=print_file
TFILE=template_file
dbprivate = 0
buf_only = 1;
}
/^[ ]*DBPRIVATE/ {
dbprivate = 1
}
/^[ ]*PREFIX/ {
prefix = $2
num_funcs = 0;
# Start .c files.
printf("/* Do not edit: automatically built by gen_rec.awk. */\n\n") \
> CFILE
printf("#include \"db_config.h\"\n\n") >> CFILE
printf("/* Do not edit: automatically built by gen_rec.awk. */\n\n") \
> PFILE
printf("#include \"db_config.h\"\n\n") >> PFILE
if (prefix == "__ham")
printf("#ifdef HAVE_HASH\n") >> PFILE
if (prefix == "__qam")
printf("#ifdef HAVE_QUEUE\n") >> PFILE
# Start .h file, make the entire file conditional.
printf("/* Do not edit: automatically built by gen_rec.awk. */\n\n") \
> HFILE
printf("#ifndef\t%s_AUTO_H\n#define\t%s_AUTO_H\n", prefix, prefix) \
>> HFILE;
# Write recovery template file headers
# This assumes we're doing DB recovery.
printf("#include \"db_config.h\"\n\n") > TFILE
printf("#ifndef NO_SYSTEM_INCLUDES\n") >> TFILE
printf("#include <sys/types.h>\n\n") >> TFILE
printf("#include <string.h>\n") >> TFILE
printf("#endif\n\n") >> TFILE
printf("#include \"db_int.h\"\n") >> TFILE
printf("#include \"dbinc/db_page.h\"\n") >> TFILE
printf("#include \"dbinc/%s.h\"\n", prefix) >> TFILE
printf("#include \"dbinc/log.h\"\n\n") >> TFILE
}
/^[ ]*INCLUDE/ {
for (i = 2; i < NF; i++)
printf("%s ", $i) >> CFILE
printf("%s\n", $i) >> CFILE
for (i = 2; i < NF; i++)
printf("%s ", $i) >> PFILE
printf("%s\n", $i) >> PFILE
}
/^[ ]*(BEGIN|IGNORED|BEGIN_BUF)/ {
if (in_begin) {
print "Invalid format: missing END statement"
exit
}
in_begin = 1;
is_dbt = 0;
has_dbp = 0;
is_uint = 0;
need_log_function = ($1 == "BEGIN") || ($1 == "BEGIN_BUF");
not_buf = ($1 == "BEGIN") || ($1 == "IGNORED");
if (not_buf)
buf_only = 0;
nvars = 0;
thisfunc = $2;
funcname = sprintf("%s_%s", prefix, $2);
if (not_buf)
rectype = $3;
funcs[num_funcs] = funcname;
++num_funcs;
}
/^[ ]*(DB|ARG|DBT|LOCKS|PGDBT|POINTER|TIME)/ {
vars[nvars] = $2;
types[nvars] = $3;
atypes[nvars] = $1;
modes[nvars] = $1;
formats[nvars] = $NF;
for (i = 4; i < NF; i++)
types[nvars] = sprintf("%s %s", types[nvars], $i);
if ($1 == "DB") {
has_dbp = 1;
}
if ($1 == "DB" || $1 == "ARG" || $1 == "TIME") {
sizes[nvars] = sprintf("sizeof(u_int32_t)");
is_uint = 1;
} else if ($1 == "POINTER")
sizes[nvars] = sprintf("sizeof(*%s)", $2);
else { # DBT, PGDBT
sizes[nvars] = \
sprintf("sizeof(u_int32_t) + (%s == NULL ? 0 : %s->size)", \
$2, $2);
is_dbt = 1;
}
nvars++;
}
/^[ ]*END/ {
if (!in_begin) {
print "Invalid format: missing BEGIN statement"
exit;
}
# Declare the record type.
if (not_buf) {
printf("#define\tDB_%s\t%d\n", funcname, rectype) >> HFILE
}
# Structure declaration.
printf("typedef struct _%s_args {\n", funcname) >> HFILE
# Here are the required fields for every structure
if (not_buf) {
printf("\tu_int32_t type;\n\tDB_TXN *txnid;\n") >> HFILE
printf("\tDB_LSN prev_lsn;\n") >>HFILE
}
# Here are the specified fields.
for (i = 0; i < nvars; i++) {
t = types[i];
if (modes[i] == "POINTER") {
ndx = index(t, "*");
t = substr(types[i], 1, ndx - 2);
}
printf("\t%s\t%s;\n", t, vars[i]) >> HFILE
}
printf("} %s_args;\n\n", funcname) >> HFILE
# Output the log, print and read functions.
if (need_log_function) {
log_function();
}
if (not_buf) {
print_function();
}
read_function();
# Recovery template
if (not_buf) {
cmd = sprintf(\
"sed -e s/PREF/%s/ -e s/FUNC/%s/ < template/rec_ctemp >> %s",
prefix, thisfunc, TFILE)
system(cmd);
}
# Done writing stuff, reset and continue.
in_begin = 0;
}
END {
# End the conditional for the HFILE
printf("#endif\n") >> HFILE;
if (buf_only == 1)
exit
# Print initialization routine; function prototype
p[1] = sprintf("int %s_init_print %s%s", prefix,
"__P((DB_ENV *, int (***)(DB_ENV *, DBT *, DB_LSN *, ",
"db_recops, void *), size_t *));");
p[2] = "";
proto_format(p, PFILE);
# Create the routine to call __db_add_recovery(print_fn, id)
printf("int\n%s_init_print(dbenv, dtabp, dtabsizep)\n", \
prefix) >> PFILE;
printf("\tDB_ENV *dbenv;\n") >> PFILE;;
printf("\tint (***dtabp)__P((DB_ENV *, DBT *, DB_LSN *,") >> PFILE;
printf(" db_recops, void *));\n") >> PFILE;
printf("\tsize_t *dtabsizep;\n{\n") >> PFILE;
# If application-specific, the user will need a prototype for
# __db_add_recovery, since they won't have DB's.
if (!dbprivate) {
printf("\tint __db_add_recovery __P((DB_ENV *,\n") >> PFILE;
printf(\
"\t int (***)(DB_ENV *, DBT *, DB_LSN *, db_recops, void *),\n") >> PFILE;
printf("\t size_t *,\n") >> PFILE;
printf(\
"\t int (*)(DB_ENV *, DBT *, DB_LSN *, db_recops, void *), u_int32_t));\n") \
>> PFILE;
}
printf("\tint ret;\n\n") >> PFILE;
for (i = 0; i < num_funcs; i++) {
printf("\tif ((ret = __db_add_recovery(dbenv, ") >> PFILE;
printf("dtabp, dtabsizep,\n") >> PFILE;
printf("\t %s_print, DB_%s)) != 0)\n", \
funcs[i], funcs[i]) >> PFILE;
printf("\t\treturn (ret);\n") >> PFILE;
}
printf("\treturn (0);\n}\n") >> PFILE;
if (prefix == "__ham")
printf("#endif /* HAVE_HASH */\n") >> PFILE
if (prefix == "__qam")
printf("#endif /* HAVE_QUEUE */\n") >> PFILE
# We only want to generate *_init_recover functions if this is a
# DB-private, rather than application-specific, set of recovery
# functions. Application-specific recovery functions should be
# dispatched using the DB_ENV->set_app_dispatch callback rather
# than a DB dispatch table ("dtab").
if (!dbprivate)
exit
# Recover initialization routine
p[1] = sprintf("int %s_init_recover %s%s", prefix,
"__P((DB_ENV *, int (***)(DB_ENV *, DBT *, DB_LSN *, ",
"db_recops, void *), size_t *));");
p[2] = "";
proto_format(p, CFILE);
# Create the routine to call db_add_recovery(func, id)
printf("int\n%s_init_recover(dbenv, dtabp, dtabsizep)\n", \
prefix) >> CFILE;
printf("\tDB_ENV *dbenv;\n") >> CFILE;
printf("\tint (***dtabp)__P((DB_ENV *, DBT *, DB_LSN *,") >> CFILE;
printf(" db_recops, void *));\n") >> CFILE;
printf("\tsize_t *dtabsizep;\n{\n\tint ret;\n\n") >> CFILE;
for (i = 0; i < num_funcs; i++) {
printf("\tif ((ret = __db_add_recovery(dbenv, ") >> CFILE;
printf("dtabp, dtabsizep,\n") >> CFILE;
printf("\t %s_recover, DB_%s)) != 0)\n", \
funcs[i], funcs[i]) >> CFILE;
printf("\t\treturn (ret);\n") >> CFILE;
}
printf("\treturn (0);\n}\n") >> CFILE;
}
function log_function()
{
# Write the log function; function prototype
pi = 1;
if (not_buf) {
p[pi++] = sprintf("int %s_log", funcname);
p[pi++] = " ";
if (has_dbp == 1) {
p[pi++] = "__P((DB *";
} else {
p[pi++] = "__P((DB_ENV *";
}
p[pi++] = ", DB_TXN *, DB_LSN *, u_int32_t";
} else {
p[pi++] = sprintf("int %s_buf", funcname);
p[pi++] = " ";
p[pi++] = "__P((u_int8_t *, size_t, size_t *";
}
for (i = 0; i < nvars; i++) {
if (modes[i] == "DB")
continue;
p[pi++] = ", ";
p[pi++] = sprintf("%s%s%s",
(modes[i] == "DBT" || modes[i] == "LOCKS" ||
modes[i] == "PGDBT") ? "const " : "", types[i],
(modes[i] == "DBT" || modes[i] == "LOCKS" ||
modes[i] == "PGDBT") ? " *" : "");
}
p[pi++] = "";
p[pi++] = "));";
p[pi++] = "";
proto_format(p, CFILE);
# Function declaration
if (not_buf && has_dbp == 1) {
printf("int\n%s_log(dbp, txnid, ret_lsnp, flags", \
funcname) >> CFILE;
} else if (not_buf) {
printf("int\n%s_log(dbenv, txnid, ret_lsnp, flags", \
funcname) >> CFILE;
} else {
printf("int\n%s_buf(buf, max, lenp", funcname) >> CFILE;
}
for (i = 0; i < nvars; i++) {
if (modes[i] == "DB") {
# We pass in fileids on the dbp, so if this is one,
# skip it.
continue;
}
printf(",") >> CFILE;
if ((i % 6) == 0)
printf("\n ") >> CFILE;
else
printf(" ") >> CFILE;
printf("%s", vars[i]) >> CFILE;
}
printf(")\n") >> CFILE;
# Now print the parameters
if (not_buf) {
if (has_dbp == 1) {
printf("\tDB *dbp;\n") >> CFILE;
} else {
printf("\tDB_ENV *dbenv;\n") >> CFILE;
}
printf("\tDB_TXN *txnid;\n\tDB_LSN *ret_lsnp;\n") >> CFILE;
printf("\tu_int32_t flags;\n") >> CFILE;
} else {
printf("\tu_int8_t *buf;\n") >> CFILE;
printf("\tsize_t max, *lenp;\n") >> CFILE;
}
for (i = 0; i < nvars; i++) {
# We just skip for modes == DB.
if (modes[i] == "DBT" ||
modes[i] == "LOCKS" || modes[i] == "PGDBT")
printf("\tconst %s *%s;\n", types[i], vars[i]) >> CFILE;
else if (modes[i] != "DB")
printf("\t%s %s;\n", types[i], vars[i]) >> CFILE;
}
# Function body and local decls
printf("{\n") >> CFILE;
if (not_buf) {
printf("\tDBT logrec;\n") >> CFILE;
if (has_dbp == 1)
printf("\tDB_ENV *dbenv;\n") >> CFILE;
if (dbprivate)
printf("\tDB_TXNLOGREC *lr;\n") >> CFILE;
printf("\tDB_LSN *lsnp, null_lsn, *rlsnp;\n") >> CFILE;
printf("\tu_int32_t ") >> CFILE;
if (is_dbt == 1)
printf("zero, ") >> CFILE;
if (is_uint == 1)
printf("uinttmp, ") >> CFILE;
printf("rectype, txn_num;\n") >> CFILE;
printf("\tu_int npad;\n") >> CFILE;
} else {
if (is_dbt == 1)
printf("\tu_int32_t zero;\n") >> CFILE;
if (is_uint == 1)
printf("\tu_int32_t uinttmp;\n") >> CFILE;
printf("\tu_int8_t *endbuf;\n") >> CFILE;
}
printf("\tu_int8_t *bp;\n") >> CFILE;
printf("\tint ") >> CFILE;
if (dbprivate && not_buf) {
printf("is_durable, ") >> CFILE;
}
printf("ret;\n\n") >> CFILE;
# Initialization
if (not_buf) {
if (has_dbp == 1)
printf("\tdbenv = dbp->dbenv;\n") >> CFILE;
if (dbprivate)
printf("\tCOMPQUIET(lr, NULL);\n\n") >> CFILE;
printf("\trectype = DB_%s;\n", funcname) >> CFILE;
printf("\tnpad = 0;\n") >> CFILE;
printf("\trlsnp = ret_lsnp;\n\n") >> CFILE;
}
printf("\tret = 0;\n\n") >> CFILE;
if (not_buf) {
if (dbprivate) {
printf("\tif (LF_ISSET(DB_LOG_NOT_DURABLE)") \
>> CFILE;
if (has_dbp == 1) {
printf(" ||\n\t ") >> CFILE;
printf("F_ISSET(dbp, DB_AM_NOT_DURABLE)) {\n") \
>> CFILE;
} else {
printf(") {\n") >> CFILE;
printf("\t\tif (txnid == NULL)\n") >> CFILE;
printf("\t\t\treturn (0);\n") >> CFILE;
}
printf("\t\tis_durable = 0;\n") >> CFILE;
printf("\t} else\n") >> CFILE;
printf("\t\tis_durable = 1;\n\n") >> CFILE;
}
printf("\tif (txnid == NULL) {\n") >> CFILE;
printf("\t\ttxn_num = 0;\n") >> CFILE;
printf("\t\tlsnp = &null_lsn;\n") >> CFILE;
printf("\t\tnull_lsn.file = null_lsn.offset = 0;\n") >> CFILE;
printf("\t} else {\n") >> CFILE;
if (dbprivate && funcname != "__db_debug") {
printf(\
"\t\tif (TAILQ_FIRST(&txnid->kids) != NULL &&\n") >> CFILE;
printf("\t\t (ret = __txn_activekids(") >> CFILE;
printf("dbenv, rectype, txnid)) != 0)\n") >> CFILE;
printf("\t\t\treturn (ret);\n") >> CFILE;
}
printf("\t\t/*\n\t\t * We need to assign begin_lsn while ") \
>> CFILE;
printf("holding region mutex.\n") >> CFILE;
printf("\t\t * That assignment is done inside the ") >> CFILE;
printf("DbEnv->log_put call,\n\t\t * ") >> CFILE;
printf("so pass in the appropriate memory location to be ") \
>> CFILE;
printf("filled\n\t\t * in by the log_put code.\n\t\t */\n") \
>> CFILE;
printf("\t\tDB_SET_TXN_LSNP(txnid, &rlsnp, &lsnp);\n") >> CFILE;
printf("\t\ttxn_num = txnid->txnid;\n") >> CFILE;
printf("\t}\n\n") >> CFILE;
# If we're logging a DB handle, make sure we have a log
# file ID for it.
db_handle_id_function(modes, nvars);
# Malloc
printf("\tlogrec.size = ") >> CFILE;
printf("sizeof(rectype) + ") >> CFILE;
printf("sizeof(txn_num) + sizeof(DB_LSN)") >> CFILE;
for (i = 0; i < nvars; i++)
printf("\n\t + %s", sizes[i]) >> CFILE;
printf(";\n") >> CFILE
if (dbprivate) {
printf("\tif (CRYPTO_ON(dbenv)) {\n") >> CFILE;
printf("\t\tnpad =\n") >> CFILE;
printf("\t\t ((DB_CIPHER *)dbenv->crypto_handle)") \
>> CFILE;
printf("->adj_size(logrec.size);\n") >> CFILE;
printf("\t\tlogrec.size += npad;\n\t}\n\n") >> CFILE
printf("\tif (is_durable || txnid == NULL) {\n") \
>> CFILE;
printf("\t\tif ((ret =\n\t\t __os_malloc(dbenv, ") \
>> CFILE;
printf("logrec.size, &logrec.data)) != 0)\n") >> CFILE;
printf("\t\t\treturn (ret);\n") >> CFILE;
printf("\t} else {\n") >> CFILE;
write_malloc("\t\t",
"lr", "logrec.size + sizeof(DB_TXNLOGREC)", CFILE)
printf("#ifdef DIAGNOSTIC\n") >> CFILE;
printf("\t\tif ((ret =\n\t\t __os_malloc(dbenv, ") \
>> CFILE;
printf("logrec.size, &logrec.data)) != 0) {\n") \
>> CFILE;
printf("\t\t\t__os_free(dbenv, lr);\n") >> CFILE;
printf("\t\t\treturn (ret);\n") >> CFILE;
printf("\t\t}\n") >> CFILE;
printf("#else\n") >> CFILE;
printf("\t\tlogrec.data = lr->data;\n") >> CFILE;
printf("#endif\n") >> CFILE;
printf("\t}\n") >> CFILE;
} else {
write_malloc("\t", "logrec.data", "logrec.size", CFILE)
printf("\tbp = logrec.data;\n\n") >> CFILE;
}
printf("\tif (npad > 0)\n") >> CFILE;
printf("\t\tmemset((u_int8_t *)logrec.data + logrec.size ") \
>> CFILE;
printf("- npad, 0, npad);\n\n") >> CFILE;
printf("\tbp = logrec.data;\n\n") >> CFILE;
# Copy args into buffer
printf("\tmemcpy(bp, &rectype, sizeof(rectype));\n") >> CFILE;
printf("\tbp += sizeof(rectype);\n\n") >> CFILE;
printf("\tmemcpy(bp, &txn_num, sizeof(txn_num));\n") >> CFILE;
printf("\tbp += sizeof(txn_num);\n\n") >> CFILE;
printf("\tmemcpy(bp, lsnp, sizeof(DB_LSN));\n") >> CFILE;
printf("\tbp += sizeof(DB_LSN);\n\n") >> CFILE;
} else {
# If we're logging a DB handle, make sure we have a log
# file ID for it.
db_handle_id_function(modes, nvars);
printf("\tbp = buf;\n") >> CFILE;
printf("\tendbuf = bp + max;\n\n") >> CFILE
}
for (i = 0; i < nvars; i++) {
if (modes[i] == "ARG" || modes[i] == "TIME") {
printf("\tuinttmp = (u_int32_t)%s;\n", \
vars[i]) >> CFILE;
if (!not_buf) {
printf(\
"\tif (bp + sizeof(uinttmp) > endbuf)\n") \
>> CFILE;
printf("\t\treturn (ENOMEM);\n") >> CFILE;
}
printf("\tmemcpy(bp, &uinttmp, sizeof(uinttmp));\n") \
>> CFILE;
printf("\tbp += sizeof(uinttmp);\n\n") >> CFILE;
} else if (modes[i] == "DBT" || \
modes[i] == "LOCKS" || modes[i] == "PGDBT") {
printf("\tif (%s == NULL) {\n", vars[i]) >> CFILE;
printf("\t\tzero = 0;\n") >> CFILE;
if (!not_buf) {
printf(\
"\t\tif (bp + sizeof(u_int32_t) > endbuf)\n") \
>> CFILE;
printf("\t\t\treturn (ENOMEM);\n") >> CFILE;
}
printf("\t\tmemcpy(bp, &zero, sizeof(u_int32_t));\n") \
>> CFILE;
printf("\t\tbp += sizeof(u_int32_t);\n") >> CFILE;
printf("\t} else {\n") >> CFILE;
if (!not_buf) {
printf(\
"\t\tif (bp + sizeof(%s->size) > endbuf)\n", \
vars[i]) >> CFILE;
printf("\t\t\treturn (ENOMEM);\n") >> CFILE;
}
printf("\t\tmemcpy(bp, &%s->size, ", vars[i]) >> CFILE;
printf("sizeof(%s->size));\n", vars[i]) >> CFILE;
printf("\t\tbp += sizeof(%s->size);\n", vars[i]) \
>> CFILE;
if (!not_buf) {
printf("\t\tif (bp + %s->size > endbuf)\n", \
vars[i]) >> CFILE;
printf("\t\t\treturn (ENOMEM);\n") >> CFILE;
}
printf("\t\tmemcpy(bp, %s->data, %s->size);\n", \
vars[i], vars[i]) >> CFILE;
printf("\t\tbp += %s->size;\n\t}\n\n", \
vars[i]) >> CFILE;
} else if (modes[i] == "DB") {
printf("\tuinttmp = ") >> CFILE;
printf("(u_int32_t)dbp->log_filename->id;\n") >> CFILE;
printf("\tmemcpy(bp, &uinttmp, sizeof(uinttmp));\n") \
>> CFILE;
printf("\tbp += sizeof(uinttmp);\n\n") >> CFILE;
} else { # POINTER
if (!not_buf) {
printf("\tif (bp + %s > endbuf)\n", \
sizes[i]) >> CFILE;
printf("\t\treturn (ENOMEM);\n") >> CFILE;
}
printf("\tif (%s != NULL)\n", vars[i]) >> CFILE;
printf("\t\tmemcpy(bp, %s, %s);\n", vars[i], \
sizes[i]) >> CFILE;
printf("\telse\n") >> CFILE;
printf("\t\tmemset(bp, 0, %s);\n", sizes[i]) >> CFILE;
printf("\tbp += %s;\n\n", sizes[i]) >> CFILE;
}
}
# Error checking. User code won't have DB_ASSERT available, but
# this is a pretty unlikely assertion anyway, so we just leave it out
# rather than requiring assert.h.
if (not_buf) {
if (dbprivate) {
printf("\tDB_ASSERT((u_int32_t)") >> CFILE;
printf("(bp - (u_int8_t *)logrec.data) ") >> CFILE;
printf("<= logrec.size);\n\n") >> CFILE;
# Save the log record off in the txn's linked list,
# or do log call.
# We didn't call the crypto alignment function when
# we created this log record (because we don't have
# the right header files to find the function), so
# we have to copy the log record to make sure the
# alignment is correct.
printf("\tif (is_durable || txnid == NULL) {\n") \
>> CFILE;
# Output the log record and update the return LSN.
printf("\t\tif ((ret = __log_put(dbenv, rlsnp,") \
>> CFILE;
printf("(DBT *)&logrec,\n") >> CFILE;
printf("\t\t flags | DB_LOG_NOCOPY)) == 0") >> CFILE;
printf(" && txnid != NULL) {\n") >> CFILE;
printf("\t\t\t*lsnp = *rlsnp;\n") >> CFILE;
printf("\t\t\tif (rlsnp != ret_lsnp)\n") >> CFILE;
printf("\t\t\t\t *ret_lsnp = *rlsnp;\n") >> CFILE;
printf("\t\t}\n\t} else {\n") >> CFILE;
printf("#ifdef DIAGNOSTIC\n") >> CFILE;
# Add the debug bit if we are logging a ND record.
printf("\t\t/*\n") >> CFILE;
printf("\t\t * Set the debug bit if we are") >> CFILE;
printf(" going to log non-durable\n") >> CFILE;
printf("\t\t * transactions so they will be ignored") \
>> CFILE;
printf(" by recovery.\n") >> CFILE;
printf("\t\t */\n") >> CFILE;
printf("\t\tmemcpy(lr->data, logrec.data, ") >> CFILE
printf("logrec.size);\n") >> CFILE;
printf("\t\trectype |= DB_debug_FLAG;\n") >> CFILE;
printf("\t\tmemcpy(") >> CFILE
printf("logrec.data, &rectype, sizeof(rectype));\n\n") \
>> CFILE;
# Output the log record.
printf("\t\tret = __log_put(dbenv,\n") >> CFILE;
printf("\t\t rlsnp, (DBT *)&logrec, ") >> CFILE;
printf("flags | DB_LOG_NOCOPY);\n") >> CFILE;
printf("#else\n") >> CFILE;
printf("\t\tret = 0;\n") >> CFILE;
printf("#endif\n") >> CFILE;
# Add a ND record to the txn list.
printf("\t\tSTAILQ_INSERT_HEAD(&txnid") >> CFILE;
printf("->logs, lr, links);\n") >> CFILE;
printf("\t\tF_SET((TXN_DETAIL *)") >> CFILE;
printf("txnid->td, TXN_DTL_INMEMORY);\n") >> CFILE;
# Update the return LSN.
printf("\t\tLSN_NOT_LOGGED(*ret_lsnp);\n") >> CFILE;
printf("\t}\n\n") >> CFILE;
} else {
printf("\tif ((ret = dbenv->log_put(dbenv, rlsnp,") >> CFILE;
printf(" (DBT *)&logrec,\n") >> CFILE;
printf("\t flags | DB_LOG_NOCOPY)) == 0") >> CFILE;
printf(" && txnid != NULL) {\n") >> CFILE;
# Update the transactions last_lsn.
printf("\t\t*lsnp = *rlsnp;\n") >> CFILE;
printf("\t\tif (rlsnp != ret_lsnp)\n") >> CFILE;
printf("\t\t\t *ret_lsnp = *rlsnp;\n") >> CFILE;
printf("\t}\n") >> CFILE;
}
# If out of disk space log writes may fail. If we are debugging
# that print out which records did not make it to disk.
printf("#ifdef LOG_DIAGNOSTIC\n") >> CFILE
printf("\tif (ret != 0)\n") >> CFILE;
printf("\t\t(void)%s_print(dbenv,\n", funcname) >> CFILE;
printf("\t\t (DBT *)&logrec, ret_lsnp, ") >> CFILE
printf("DB_TXN_PRINT, NULL);\n#endif\n\n") >> CFILE
# Free and return
if (dbprivate) {
printf("#ifdef DIAGNOSTIC\n") >> CFILE
write_free("\t", "logrec.data", CFILE)
printf("#else\n") >> CFILE
printf("\tif (is_durable || txnid == NULL)\n") >> CFILE;
write_free("\t\t", "logrec.data", CFILE)
printf("#endif\n") >> CFILE
} else {
write_free("\t", "logrec.data", CFILE)
}
} else {
printf("\t*lenp = (u_int32_t)(bp - buf);\n\n") >> CFILE
}
printf("\treturn (ret);\n}\n\n") >> CFILE;
}
# If we're logging a DB handle, make sure we have a log
# file ID for it.
function db_handle_id_function(modes, n)
{
for (i = 0; i < n; i++)
if (modes[i] == "DB") {
# We actually log the DB handle's fileid; from
# that ID we're able to acquire an open handle
# at recovery time.
printf(\
"\tDB_ASSERT(dbp->log_filename != NULL);\n") \
>> CFILE;
printf("\tif (dbp->log_filename->id == ") \
>> CFILE;
printf("DB_LOGFILEID_INVALID &&\n\t ") \
>> CFILE
printf("(ret = __dbreg_lazy_id(dbp)) != 0)\n") \
>> CFILE
printf("\t\treturn (ret);\n\n") >> CFILE;
break;
}
}
function print_function()
{
# Write the print function; function prototype
p[1] = sprintf("int %s_print", funcname);
p[2] = " ";
p[3] = "__P((DB_ENV *, DBT *, DB_LSN *, db_recops, void *));";
p[4] = "";
proto_format(p, PFILE);
# Function declaration
printf("int\n%s_print(dbenv, ", funcname) >> PFILE;
printf("dbtp, lsnp, notused2, notused3)\n") >> PFILE;
printf("\tDB_ENV *dbenv;\n") >> PFILE;
printf("\tDBT *dbtp;\n") >> PFILE;
printf("\tDB_LSN *lsnp;\n") >> PFILE;
printf("\tdb_recops notused2;\n\tvoid *notused3;\n{\n") >> PFILE;
# Locals
printf("\t%s_args *argp;\n", funcname) >> PFILE;
for (i = 0; i < nvars; i ++)
if (modes[i] == "TIME") {
printf("\tstruct tm *lt;\n") >> PFILE
printf("\ttime_t timeval;\n") >> PFILE
break;
}
for (i = 0; i < nvars; i ++)
if (modes[i] == "DBT" || modes[i] == "PGDBT") {
printf("\tu_int32_t i;\n") >> PFILE
printf("\tint ch;\n") >> PFILE
break;
}
printf("\tint ret;\n\n") >> PFILE;
# Get rid of complaints about unused parameters.
printf("\tnotused2 = DB_TXN_PRINT;\n\tnotused3 = NULL;\n\n") >> PFILE;
# Call read routine to initialize structure
printf("\tif ((ret = %s_read(dbenv, dbtp->data, &argp)) != 0)\n", \
funcname) >> PFILE;
printf("\t\treturn (ret);\n") >> PFILE;
# Print values in every record
printf("\t(void)printf(\n\t \"[%%lu][%%lu]%s%%s: ",\
funcname) >> PFILE;
printf("rec: %%lu txnid %%lx ") >> PFILE;
printf("prevlsn [%%lu][%%lu]\\n\",\n") >> PFILE;
printf("\t (u_long)lsnp->file,\n") >> PFILE;
printf("\t (u_long)lsnp->offset,\n") >> PFILE;
printf("\t (argp->type & DB_debug_FLAG) ? \"_debug\" : \"\",\n") \
>> PFILE;
printf("\t (u_long)argp->type,\n") >> PFILE;
printf("\t (u_long)argp->txnid->txnid,\n") >> PFILE;
printf("\t (u_long)argp->prev_lsn.file,\n") >> PFILE;
printf("\t (u_long)argp->prev_lsn.offset);\n") >> PFILE;
# Now print fields of argp
for (i = 0; i < nvars; i ++) {
if (modes[i] == "TIME") {
printf("\ttimeval = (time_t)argp->%s;\n",
vars[i]) >> PFILE;
printf("\tlt = localtime(&timeval);\n") >> PFILE;
printf("\t(void)printf(\n\t \"\\t%s: ",
vars[i]) >> PFILE;
} else
printf("\t(void)printf(\"\\t%s: ", vars[i]) >> PFILE;
if (modes[i] == "DBT" || modes[i] == "PGDBT") {
printf("\");\n") >> PFILE;
printf("\tfor (i = 0; i < ") >> PFILE;
printf("argp->%s.size; i++) {\n", vars[i]) >> PFILE;
printf("\t\tch = ((u_int8_t *)argp->%s.data)[i];\n", \
vars[i]) >> PFILE;
printf("\t\tprintf(isprint(ch) || ch == 0x0a") >> PFILE;
printf(" ? \"%%c\" : \"%%#x \", ch);\n") >> PFILE;
printf("\t}\n\t(void)printf(\"\\n\");\n") >> PFILE;
} else if (types[i] == "DB_LSN *") {
printf("[%%%s][%%%s]\\n\",\n", \
formats[i], formats[i]) >> PFILE;
printf("\t (u_long)argp->%s.file,", \
vars[i]) >> PFILE;
printf(" (u_long)argp->%s.offset);\n", \
vars[i]) >> PFILE;
} else if (modes[i] == "TIME") {
# Time values are displayed in two ways: the standard
# string returned by ctime, and in the input format
# expected by db_recover -t.
printf(\
"%%%s (%%.24s, 20%%02lu%%02lu%%02lu%%02lu%%02lu.%%02lu)\\n\",\n", \
formats[i]) >> PFILE;
printf("\t (long)argp->%s, ", vars[i]) >> PFILE;
printf("ctime(&timeval),", vars[i]) >> PFILE;
printf("\n\t (u_long)lt->tm_year - 100, ") >> PFILE;
printf("(u_long)lt->tm_mon+1,") >> PFILE;
printf("\n\t (u_long)lt->tm_mday, ") >> PFILE;
printf("(u_long)lt->tm_hour,") >> PFILE;
printf("\n\t (u_long)lt->tm_min, ") >> PFILE;
printf("(u_long)lt->tm_sec);\n") >> PFILE;
} else if (modes[i] == "LOCKS") {
printf("\\n\");\n") >> PFILE;
printf("\t__lock_list_print(dbenv, &argp->locks);\n") \
>> PFILE;
} else {
if (formats[i] == "lx")
printf("0x") >> PFILE;
printf("%%%s\\n\", ", formats[i]) >> PFILE;
if (formats[i] == "lx" || formats[i] == "lu")
printf("(u_long)") >> PFILE;
if (formats[i] == "ld")
printf("(long)") >> PFILE;
printf("argp->%s);\n", vars[i]) >> PFILE;
}
}
printf("\t(void)printf(\"\\n\");\n") >> PFILE;
write_free("\t", "argp", PFILE);
printf("\treturn (0);\n") >> PFILE;
printf("}\n\n") >> PFILE;
}
function read_function()
{
# Write the read function; function prototype
if (not_buf)
p[1] = sprintf("int %s_read __P((DB_ENV *, void *,", funcname);
else
p[1] = sprintf("int %s_read __P((DB_ENV *, void *, void **,", \
funcname);
p[2] = " ";
p[3] = sprintf("%s_args **));", funcname);
p[4] = "";
proto_format(p, CFILE);
# Function declaration
if (not_buf)
printf("int\n%s_read(dbenv, recbuf, argpp)\n", funcname) \
>> CFILE;
else
printf(\
"int\n%s_read(dbenv, recbuf, nextp, argpp)\n", funcname) \
>> CFILE;
# Now print the parameters
printf("\tDB_ENV *dbenv;\n") >> CFILE;
printf("\tvoid *recbuf;\n") >> CFILE;
if (!not_buf)
printf("\tvoid **nextp;\n") >> CFILE;
printf("\t%s_args **argpp;\n", funcname) >> CFILE;
# Function body and local decls
printf("{\n\t%s_args *argp;\n", funcname) >> CFILE;
if (is_uint == 1)
printf("\tu_int32_t uinttmp;\n") >> CFILE;
printf("\tu_int8_t *bp;\n") >> CFILE;
if (dbprivate) {
# We only use dbenv and ret in the private malloc case.
printf("\tint ret;\n\n") >> CFILE;
} else {
printf("\t/* Keep the compiler quiet. */\n") >> CFILE;
printf("\n\tdbenv = NULL;\n") >> CFILE;
}
if (not_buf) {
malloc_size = sprintf("sizeof(%s_args) + sizeof(DB_TXN)", \
funcname)
} else {
malloc_size = sprintf("sizeof(%s_args)", funcname)
}
write_malloc("\t", "argp", malloc_size, CFILE)
# Set up the pointers to the txnid.
printf("\tbp = recbuf;\n") >> CFILE;
if (not_buf) {
printf("\targp->txnid = (DB_TXN *)&argp[1];\n\n") >> CFILE;
# First get the record type, prev_lsn, and txnid fields.
printf("\tmemcpy(&argp->type, bp, sizeof(argp->type));\n") \
>> CFILE;
printf("\tbp += sizeof(argp->type);\n\n") >> CFILE;
printf("\tmemcpy(&argp->txnid->txnid, bp, ") >> CFILE;
printf("sizeof(argp->txnid->txnid));\n") >> CFILE;
printf("\tbp += sizeof(argp->txnid->txnid);\n\n") >> CFILE;
printf("\tmemcpy(&argp->prev_lsn, bp, sizeof(DB_LSN));\n") \
>> CFILE;
printf("\tbp += sizeof(DB_LSN);\n\n") >> CFILE;
}
# Now get rest of data.
for (i = 0; i < nvars; i ++) {
if (modes[i] == "DBT" || \
modes[i] == "LOCKS" || modes[i] == "PGDBT") {
printf("\tmemset(&argp->%s, 0, sizeof(argp->%s));\n", \
vars[i], vars[i]) >> CFILE;
printf("\tmemcpy(&argp->%s.size, ", vars[i]) >> CFILE;
printf("bp, sizeof(u_int32_t));\n") >> CFILE;
printf("\tbp += sizeof(u_int32_t);\n") >> CFILE;
printf("\targp->%s.data = bp;\n", vars[i]) >> CFILE;
printf("\tbp += argp->%s.size;\n", vars[i]) >> CFILE;
} else if (modes[i] == "ARG" || modes[i] == "TIME" ||
modes[i] == "DB") {
printf("\tmemcpy(&uinttmp, bp, sizeof(uinttmp));\n") \
>> CFILE;
printf("\targp->%s = (%s)uinttmp;\n", vars[i], \
types[i]) >> CFILE;
printf("\tbp += sizeof(uinttmp);\n") >> CFILE;
} else { # POINTER
printf("\tmemcpy(&argp->%s, bp, ", vars[i]) >> CFILE;
printf(" sizeof(argp->%s));\n", vars[i]) >> CFILE;
printf("\tbp += sizeof(argp->%s);\n", vars[i]) >> CFILE;
}
printf("\n") >> CFILE;
}
# Free and return
if (!not_buf)
printf("\t*nextp = bp;\n") >> CFILE;
printf("\t*argpp = argp;\n") >> CFILE;
printf("\treturn (0);\n}\n\n") >> CFILE;
}
# proto_format --
# Pretty-print a function prototype.
function proto_format(p, fp)
{
printf("/*\n") >> fp;
s = "";
for (i = 1; i in p; ++i)
s = s p[i];
t = " * PUBLIC: "
if (length(s) + length(t) < 80)
printf("%s%s", t, s) >> fp;
else {
split(s, p, "__P");
len = length(t) + length(p[1]);
printf("%s%s", t, p[1]) >> fp
n = split(p[2], comma, ",");
comma[1] = "__P" comma[1];
for (i = 1; i <= n; i++) {
if (len + length(comma[i]) > 70) {
printf("\n * PUBLIC: ") >> fp;
len = 0;
}
printf("%s%s", comma[i], i == n ? "" : ",") >> fp;
len += length(comma[i]) + 2;
}
}
printf("\n */\n") >> fp;
delete p;
}
function write_malloc(tab, ptr, size, file)
{
if (dbprivate) {
print(tab "if ((ret = __os_malloc(dbenv,") >> file
print(tab " " size ", &" ptr ")) != 0)") >> file
print(tab "\treturn (ret);") >> file;
} else {
print(tab "if ((" ptr " = malloc(" size ")) == NULL)") >> file
print(tab "\treturn (ENOMEM);") >> file
}
}
function write_free(tab, ptr, file)
{
if (dbprivate) {
print(tab "__os_free(dbenv, " ptr ");") >> file
} else {
print(tab "free(" ptr ");") >> file
}
}