MediaWiki master
SqliteMaintenance.php
Go to the documentation of this file.
1<?php
24use Wikimedia\AtEase\AtEase;
27
28require_once __DIR__ . '/Maintenance.php';
29
36 public function __construct() {
37 parent::__construct();
38 $this->addDescription( 'Performs some operations specific to SQLite database backend' );
39 $this->addOption(
40 'vacuum',
41 'Clean up database by removing deleted pages. Decreases database file size'
42 );
43 $this->addOption( 'integrity', 'Check database for integrity' );
44 $this->addOption( 'backup-to', 'Backup database to the given file', false, true );
45 $this->addOption( 'check-syntax', 'Check SQL file(s) for syntax errors', false, true );
46 }
47
48 public function execute() {
49 // Should work even if we use a non-SQLite database
50 if ( $this->hasOption( 'check-syntax' ) ) {
51 $this->checkSyntax();
52 return;
53 }
54
55 $lb = $this->getServiceContainer()->getDBLoadBalancer();
56 $dbw = $lb->getMaintenanceConnectionRef( DB_PRIMARY );
57 if ( $dbw->getType() !== 'sqlite' ) {
58 $this->error( "This maintenance script requires a SQLite database.\n" );
59
60 return;
61 }
63 '@phan-var DatabaseSqlite $dbw';
64
65 if ( $this->hasOption( 'vacuum' ) ) {
66 $this->vacuum( $dbw );
67 }
68
69 if ( $this->hasOption( 'integrity' ) ) {
70 $this->integrityCheck( $dbw );
71 }
72
73 if ( $this->hasOption( 'backup-to' ) ) {
74 $this->backup( $dbw, $this->getOption( 'backup-to' ) );
75 }
76 }
77
78 private function vacuum( DatabaseSqlite $dbw ) {
79 $prevSize = filesize( $dbw->getDbFilePath() );
80 if ( $prevSize == 0 ) {
81 $this->fatalError( "Can't vacuum an empty database.\n" );
82 }
83
84 $this->output( 'VACUUM: ' );
85 if ( $dbw->query( 'VACUUM', __METHOD__ ) ) {
86 clearstatcache();
87 $newSize = filesize( $dbw->getDbFilePath() );
88 $this->output( sprintf( "Database size was %d, now %d (%.1f%% reduction).\n",
89 $prevSize, $newSize, ( $prevSize - $newSize ) * 100.0 / $prevSize ) );
90 } else {
91 $this->output( 'Error\n' );
92 }
93 }
94
95 private function integrityCheck( IMaintainableDatabase $dbw ) {
96 $this->output( "Performing database integrity checks:\n" );
97 $res = $dbw->query( 'PRAGMA integrity_check', __METHOD__ );
98
99 if ( !$res || $res->numRows() == 0 ) {
100 $this->error( "Error: integrity check query returned nothing.\n" );
101
102 return;
103 }
104
105 foreach ( $res as $row ) {
106 $this->output( $row->integrity_check );
107 }
108 }
109
110 private function backup( DatabaseSqlite $dbw, $fileName ) {
111 $this->output( "Backing up database:\n Locking..." );
112 $dbw->query( 'BEGIN IMMEDIATE TRANSACTION', __METHOD__ );
113 $ourFile = $dbw->getDbFilePath();
114 $this->output( " Copying database file $ourFile to $fileName..." );
115 AtEase::suppressWarnings();
116 if ( !copy( $ourFile, $fileName ) ) {
117 $err = error_get_last();
118 $this->error( " {$err['message']}" );
119 }
120 AtEase::restoreWarnings();
121 $this->output( " Releasing lock...\n" );
122 $dbw->query( 'COMMIT TRANSACTION', __METHOD__ );
123 }
124
125 private function checkSyntax() {
126 if ( !Sqlite::isPresent() ) {
127 $this->error( "Error: SQLite support not found\n" );
128 }
129 $files = [ $this->getOption( 'check-syntax' ) ];
130 $files = array_merge( $files, $this->mArgs );
131 $result = Sqlite::checkSqlSyntax( $files );
132 if ( $result === true ) {
133 $this->output( "SQL syntax check: no errors detected.\n" );
134 } else {
135 $this->error( "Error: $result\n" );
136 }
137 }
138}
139
140$maintClass = SqliteMaintenance::class;
141require_once RUN_MAINTENANCE_IF_MAIN;
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
error( $err, $die=0)
Throw an error to the user.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option was set.
getServiceContainer()
Returns the main service container.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Maintenance script that performs some operations specific to SQLite database backend.
execute()
Do the actual work.
__construct()
Default constructor.
static isPresent()
Checks whether PHP has SQLite support.
Definition Sqlite.php:38
static checkSqlSyntax( $files)
Checks given files for correctness of SQL syntax.
Definition Sqlite.php:49
This is the SQLite database abstraction layer.
query( $sql, $fname=__METHOD__, $flags=0)
Run an SQL query statement and return the result.
Definition Database.php:631
query( $sql, $fname=__METHOD__, $flags=0)
Run an SQL query statement and return the result.
Advanced database interface for IDatabase handles that include maintenance methods.
const DB_PRIMARY
Definition defines.php:28