Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
s_recover
Package: mysql-3.23.35.tar.gz [view]
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 1k
Category:
MySQL
Development Platform:
Visual C++
- #!/bin/sh -
- # $Id: s_recover,v 1.3 2000/03/30 05:24:36 krinsky Exp $
- #
- # Build the automatically generated logging/recovery files.
- DIR="db btree hash log qam txn"
- t=/tmp/__db_$$
- loglist=../test/logtrack.list
- rm -f $t
- rm -f $loglist
- trap 'rm -f $t; exit 1' 1 2 3 13 15
- # Check to make sure we haven't duplicated a log record entry, and build
- # the list of log record types that the test suite uses.
- for i in $DIR; do
- p=none
- for f in ../$i/*.src; do
- # Grab the PREFIX; there should only be one per file, and
- # so it's okay to just take the first.
- grep '^PREFIX' $f | head -1
- egrep '^DEPRECATED[ ]|^BEGIN[ ]' $f |
- awk '{print $1 "t" $2 "t" $3}'
- done
- done > $loglist
- grep -v '^PREFIX' $loglist | awk '{print $2 "t" $3}' | sort +1 -n |
- uniq -d -f 1 > $t
- [ -s $t ] && {
- echo "DUPLICATE LOG VALUES:"
- cat $t
- rm -f $t
- exit 1
- }
- rm -f $t
- for i in db btree hash log qam txn; do
- for f in ../$i/*.src; do
- subsystem=`basename $f .src`
- header_file=../include/${subsystem}_auto.h
- source_file=../$i/${subsystem}_auto.c
- template_file=template/rec_${subsystem}
- template_source=.
- echo "Building $source_file, $header_file, $template_file"
- rm -f $header_file $source_file $template_file
- awk -f gen_rec.awk
- -v subsystem=$subsystem
- -v source_file=$source_file
- -v header_file=$header_file
- -v template_file=$template_file
- -v template_dir=. < $f
- chmod 444 $header_file $source_file $template_file
- done
- done