MogileFS::Store::SQLite - For-testing-only not-for-production SQLite storage for MogileFS


mogilefs-server documentation Contained in the mogilefs-server distribution.

Index


Code Index:

NAME

Top

MogileFS::Store::SQLite - For-testing-only not-for-production SQLite storage for MogileFS

SEE ALSO

Top

MogileFS::Store


mogilefs-server documentation Contained in the mogilefs-server distribution.

package MogileFS::Store::SQLite;
use strict;
use warnings;
use DBI;
use DBD::SQLite 1.13;
use MogileFS::Util qw(throw);
use base 'MogileFS::Store';
use File::Temp ();

# --------------------------------------------------------------------------
# Package methods we override
# --------------------------------------------------------------------------

sub post_dbi_connect {
    my $self = shift;
    $self->{dbh}->func(5000, 'busy_timeout');
}

sub want_raise_errors { 1 }

sub dsn_of_dbhost {
    my ($class, $dbname, $host) = @_;
    return "DBI:SQLite:$dbname";
}

sub dsn_of_root {
    my ($class, $dbname, $host) = @_;
    return "DBI:SQLite:$dbname";
}

sub can_replace { 1 }
sub can_insertignore { 0 }
sub unix_timestamp { "strftime('%s','now')" }

# DBD::SQLite doesn't really have any table meta info methods
# And PRAGMA table_info() does not return "real" rows
sub column_type {
    my ($self, $table, $col) = @_;
    my $sth = $self->dbh->prepare("PRAGMA table_info($table)");
    $sth->execute;
    while (my $rec = $sth->fetchrow_arrayref) {
        if ($rec->[1] eq $col) {
            $sth->finish;
            return $rec->[2];
        }
    }
    return undef;
}

# Implement these for native database locking
# sub get_lock {}
# sub release_lock {}

# --------------------------------------------------------------------------
# Store-related things we override
# --------------------------------------------------------------------------

# FIXME: Figure out how to properly detect this.
sub was_deadlock_error {
    return 0;
}

sub was_duplicate_error {
    my $self = shift;
    my $dbh = $self->dbh;
    return 0 unless $dbh->err;
    my $errstr = $dbh->errstr;
    return 1 if $errstr =~ /(?:is|are) not unique/i;
    return 1 if $errstr =~ /must be unique/i;
    return 0;
}

# --------------------------------------------------------------------------
# Test suite things we override
# --------------------------------------------------------------------------

sub new_temp {
    my ($fh, $filename) = File::Temp::tempfile();

    system("$FindBin::Bin/../mogdbsetup", "--type=SQLite", "--yes", "--dbname=$filename")
        and die "Failed to run mogdbsetup ($FindBin::Bin/../mogdbsetup).";

    return MogileFS::Store->new_from_dsn_user_pass("DBI:SQLite:$filename",
                                                   "", "");
}

sub table_exists {
    my ($self, $table) = @_;
    return eval {
        my $sth = $self->dbh->prepare("EXPLAIN SELECT * FROM $table");
        $sth->execute;
        my $rec = $sth->fetchrow_hashref;
        return $rec ? 1 : 0;
    };
}

# --------------------------------------------------------------------------
# Schema
# --------------------------------------------------------------------------

sub TABLE_class {
    "CREATE TABLE class (
            dmid          SMALLINT UNSIGNED NOT NULL,
            classid       TINYINT UNSIGNED NOT NULL,
            classname     VARCHAR(50),
            mindevcount   TINYINT UNSIGNED NOT NULL,
            UNIQUE (dmid,classid),
            UNIQUE      (dmid,classname)
)"
}

sub TABLE_file {
    "CREATE TABLE file (
      fid          INT UNSIGNED NOT NULL PRIMARY KEY,
      dmid          SMALLINT UNSIGNED NOT NULL,
      dkey           VARCHAR(255),
      length        INT UNSIGNED,
      classid       TINYINT UNSIGNED NOT NULL,
      devcount      TINYINT UNSIGNED NOT NULL,
      UNIQUE (dmid, dkey)
)"
}

sub TABLE_device {
    "CREATE TABLE device (
        devid   MEDIUMINT UNSIGNED NOT NULL,
        hostid     MEDIUMINT UNSIGNED NOT NULL,

        status  ENUM('alive','dead','down','readonly','drain'),
        weight  MEDIUMINT DEFAULT 100,

        mb_total   MEDIUMINT UNSIGNED,
        mb_used    MEDIUMINT UNSIGNED,
        mb_asof    INT UNSIGNED,
        PRIMARY KEY (devid),
        INDEX   (status)
        )"
}

sub TABLE_tempfile {
    "CREATE TABLE tempfile (
      fid          INTEGER PRIMARY KEY AUTOINCREMENT,
      createtime   INT UNSIGNED NOT NULL,
      classid      TINYINT UNSIGNED NOT NULL,
      dmid          SMALLINT UNSIGNED NOT NULL,
      dkey           VARCHAR(255),
      devids       VARCHAR(60)
)"
}

sub TABLE_unreachable_fids {
    "CREATE TABLE unreachable_fids (
      fid        INT UNSIGNED NOT NULL,
      lastupdate INT UNSIGNED NOT NULL,
      PRIMARY KEY (fid)
)"
}

sub INDEXES_unreachable_fids {
    ("CREATE INDEX lastupdate ON unreachable_fids (lastupdate)");
}

sub TABLE_file_on {
    "CREATE TABLE file_on (
      fid          INT UNSIGNED NOT NULL,
      devid        MEDIUMINT UNSIGNED NOT NULL,
      PRIMARY KEY (fid, devid)
)"
}

sub TABLE_fsck_log {
    "CREATE TABLE fsck_log (
        logid  INTEGER PRIMARY KEY AUTOINCREMENT,
        utime  INT UNSIGNED NOT NULL,
        fid    INT UNSIGNED NULL,
        evcode CHAR(4),
        devid  MEDIUMINT UNSIGNED
        )"
}

sub INDEXES_file_on {
    ("CREATE INDEX devid ON file_on (devid)");
}

sub INDEXES_device {
    ("CREATE INDEX status ON device (status)");
}

sub INDEXES_file_to_replicate {
    ("CREATE INDEX nexttry ON file_to_replicate (nexttry)");
}

sub INDEXES_file_to_delete_later {
    ("CREATE INDEX delafter ON file_to_delete_later (delafter)");
}

sub INDEXES_fsck_log {
    ("CREATE INDEX utime ON fsck_log (utime)");
}

sub INDEXES_file_to_queue {
    ("CREATE INDEX type_nexttry ON file_to_queue (type,nexttry)");
}
sub INDEXES_file_to_delete2 {
    ("CREATE INDEX file_to_delete2_nexttry ON file_to_delete2 (nexttry)");
}

sub filter_create_sql {
    my ($self, $sql) = @_;
    $sql =~ s/\bENUM\(.+?\)/TEXT/g;

    my ($table) = $sql =~ /create\s+table\s+(\S+)/i;
    die "didn't find table" unless $table;
    if ($self->can("INDEXES_$table")) {
        $sql =~ s!,\s+INDEX\s+(\w+\s+)?\(.+?\)!!mg;
    }

    return $sql;
}

# eh.  this is really atomic at all, but a) this is a demo db module,
# nobody should use SQLite in production, b) this method is going
# away, c) everything in SQLite is pretty atomic anyway with the
# db-level locks, d) the devcount field is no longer used.  so i'm not
# caring much about doing this correctly.
sub update_devcount_atomic {
    my ($self, $fidid) = @_;
    $self->update_devcount($fidid);
}

# SQLite is just for testing, so don't upgrade
sub upgrade_add_device_drain {
    return 1;
}
sub upgrade_modify_server_settings_value { 1 }
sub upgrade_add_file_to_queue_arg { 1 }

# inefficient, but no warning and no locking
sub should_begin_replicating_fidid {
    my ($self, $fidid) = @_;
    return 1;
}

# no locking
sub note_done_replicating {
    my ($self, $fidid) = @_;
}


1;

__END__