Sha256: fc791876b3dfca27adfc19cf35b4f096371c240144eefc229c9ca717207acad2

Contents?: true

Size: 1.72 KB

Versions: 4

Compression:

Stored size: 1.72 KB

Contents

require 'libsql/sqlite3/constants'
module ::Libsql::SQLite3
  class Database
    # 
    # A Stat represents a single Database Status code and its current highwater mark.
    #
    # Some stats may not have a current or a highwater value, in those cases
    # the associated _has_current?_ or _has_highwater?_ method returns false and the
    # _current_ or _highwater_ method also returns +nil+.
    #
    class Stat
      attr_reader :name
      attr_reader :code

      def initialize( api_db, name )
        @name      = name
        @code      = ::Libsql::SQLite3::Constants::DBStatus.value_from_name( name )
        @current   = nil
        @highwater = nil
        @api_db    = api_db 
      end

      def current
        update!
        return @current
      end

      def highwater
        update!
        return @highwater
      end

      #
      # reset the given stat's highwater mark.  This will also populate the
      # _@current_ and _@highwater_ instance variables
      #
      def reset!
        update!( true )
      end
    end

    #
    # Top level Status object holding all the Stat objects indicating the DBStatus
    # of the SQLite3 C library.
    #
    class DBStatus
      ::Libsql::SQLite3::Constants::DBStatus.constants.each do |const_name|
        method_name = const_name.downcase
        module_eval( <<-code, __FILE__, __LINE__ )
        def #{method_name}
          @#{method_name} ||=  ::Libsql::SQLite3::Database::Stat.new( self.api_db, '#{method_name}' )   
        end
      code
      end

      attr_reader :api_db

      def initialize( api_db )
        @api_db = api_db
      end
    end

    # return the DBstatus object for the sqlite database
    def status
      @status ||= DBStatus.new( self )
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
libsql-0.1.0-x64-mingw-ucrt lib/libsql/sqlite3/database/status.rb
libsql-0.1.0-x64-mingw32 lib/libsql/sqlite3/database/status.rb
libsql-0.1.0-x86-mingw32 lib/libsql/sqlite3/database/status.rb
libsql-0.1.0 lib/libsql/sqlite3/database/status.rb