Class: Innodb::System
- Inherits:
-
Object
- Object
- Innodb::System
- Defined in:
- lib/innodb/system.rb
Constant Summary collapse
- SYSTEM_SPACE_ID =
The space ID of the system space, always 0.
0
Instance Attribute Summary collapse
-
#config ⇒ Object
readonly
A hash of configuration options by configuration key.
-
#data_dictionary ⇒ Object
readonly
The Innodb::DataDictionary for this system.
-
#orphans ⇒ Object
readonly
Array of space names for which a space file was not found.
-
#spaces ⇒ Object
readonly
A hash of spaces by space ID.
Instance Method Summary collapse
-
#add_space(space) ⇒ Object
Add an already-constructed Innodb::Space object.
-
#add_space_file(space_filenames) ⇒ Object
Add a space by filename.
-
#add_space_orphan(space_file) ⇒ Object
Add an orphaned space.
-
#add_table(table_name) ⇒ Object
Add a space by table name, constructing an appropriate filename from the provided table name.
-
#clustered_index_by_table_id(table_id) ⇒ Object
Return the clustered index given a table ID.
-
#clustered_index_by_table_name(table_name) ⇒ Object
Return the clustered index name given a table name.
-
#each_column_name_by_table_name(table_name) ⇒ Object
Iterate through all column names by table name.
-
#each_index_field_name_by_index_name(table_name, index_name) ⇒ Object
Iterate through all field names in a given index by table name and index name.
-
#each_index_name_by_table_name(table_name) ⇒ Object
Iterate through all index names by table name.
-
#each_orphan(&block) ⇒ Object
Iterate throught all orphaned spaces.
-
#each_table_name ⇒ Object
Iterate through all table names.
- #history ⇒ Object
-
#index_by_name(table_name, index_name) ⇒ Object
Return an Innodb::Index object given a table name and index name.
-
#index_name_by_id(index_id) ⇒ Object
Return the index name given an index ID.
-
#initialize(arg, data_directory: nil) ⇒ System
constructor
A new instance of System.
-
#space(space_id) ⇒ Object
Return an Innodb::Space object for a given space ID, looking up and adding the single-table space if necessary.
-
#space_by_table_name(table_name) ⇒ Object
Return an Innodb::Space object by table name.
-
#system_space ⇒ Object
A helper to get the system space.
-
#table_and_index_name_by_id(index_id) ⇒ Object
Return an array of the table name and index name given an index ID.
-
#table_name_by_id(table_id) ⇒ Object
Return the table name given a table ID.
Constructor Details
#initialize(arg, data_directory: nil) ⇒ System
Returns a new instance of System.
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/innodb/system.rb', line 22 def initialize(arg, data_directory: nil) if arg.is_a?(Array) && arg.size > 1 data_filenames = arg else arg = arg.first if arg.is_a?(Array) if File.directory?(arg) data_filenames = Dir.glob("#{arg}/ibdata?").sort raise "Couldn't find any ibdata files in #{arg}" if data_filenames.empty? else data_filenames = [arg] end end @spaces = {} @orphans = [] @config = { data_directory: data_directory || File.dirname(data_filenames.first), } add_space_file(data_filenames) @data_dictionary = Innodb::DataDictionary.new(system_space) end |
Instance Attribute Details
#config ⇒ Object (readonly)
A hash of configuration options by configuration key.
8 9 10 |
# File 'lib/innodb/system.rb', line 8 def config @config end |
#data_dictionary ⇒ Object (readonly)
The Innodb::DataDictionary for this system.
17 18 19 |
# File 'lib/innodb/system.rb', line 17 def data_dictionary @data_dictionary end |
#orphans ⇒ Object (readonly)
Array of space names for which a space file was not found.
14 15 16 |
# File 'lib/innodb/system.rb', line 14 def orphans @orphans end |
#spaces ⇒ Object (readonly)
A hash of spaces by space ID.
11 12 13 |
# File 'lib/innodb/system.rb', line 11 def spaces @spaces end |
Instance Method Details
#add_space(space) ⇒ Object
Add an already-constructed Innodb::Space object.
52 53 54 55 56 |
# File 'lib/innodb/system.rb', line 52 def add_space(space) raise "Object was not an Innodb::Space" unless space.is_a?(Innodb::Space) spaces[space.space_id.to_i] = space end |
#add_space_file(space_filenames) ⇒ Object
Add a space by filename.
59 60 61 62 63 |
# File 'lib/innodb/system.rb', line 59 def add_space_file(space_filenames) space = Innodb::Space.new(space_filenames) space.innodb_system = self add_space(space) end |
#add_space_orphan(space_file) ⇒ Object
Add an orphaned space.
66 67 68 |
# File 'lib/innodb/system.rb', line 66 def add_space_orphan(space_file) orphans << space_file end |
#add_table(table_name) ⇒ Object
Add a space by table name, constructing an appropriate filename from the provided table name.
72 73 74 75 76 77 78 79 |
# File 'lib/innodb/system.rb', line 72 def add_table(table_name) space_file = "%s/%s.ibd" % [config[:data_directory], table_name] if File.exist?(space_file) add_space_file(space_file) else add_space_orphan(table_name) end end |
#clustered_index_by_table_id(table_id) ⇒ Object
Return the clustered index given a table ID.
197 198 199 200 201 202 |
# File 'lib/innodb/system.rb', line 197 def clustered_index_by_table_id(table_id) table_name = table_name_by_id(table_id) return unless table_name index_by_name(table_name, clustered_index_by_table_name(table_name)) end |
#clustered_index_by_table_name(table_name) ⇒ Object
Return the clustered index name given a table name.
171 172 173 |
# File 'lib/innodb/system.rb', line 171 def clustered_index_by_table_name(table_name) data_dictionary.clustered_index_name_by_table_name(table_name) end |
#each_column_name_by_table_name(table_name) ⇒ Object
Iterate through all column names by table name.
127 128 129 130 131 132 133 134 135 |
# File 'lib/innodb/system.rb', line 127 def each_column_name_by_table_name(table_name) return enum_for(:each_column_name_by_table_name, table_name) unless block_given? data_dictionary.each_column_by_table_name(table_name) do |record| yield record["NAME"] end nil end |
#each_index_field_name_by_index_name(table_name, index_name) ⇒ Object
Iterate through all field names in a given index by table name and index name.
150 151 152 153 154 155 156 157 158 |
# File 'lib/innodb/system.rb', line 150 def each_index_field_name_by_index_name(table_name, index_name) return enum_for(:each_index_field_name_by_index_name, table_name, index_name) unless block_given? data_dictionary.each_field_by_index_name(table_name, index_name) do |record| yield record["COL_NAME"] end nil end |
#each_index_name_by_table_name(table_name) ⇒ Object
Iterate through all index names by table name.
138 139 140 141 142 143 144 145 146 |
# File 'lib/innodb/system.rb', line 138 def each_index_name_by_table_name(table_name) return enum_for(:each_index_name_by_table_name, table_name) unless block_given? data_dictionary.each_index_by_table_name(table_name) do |record| yield record["NAME"] end nil end |
#each_orphan(&block) ⇒ Object
Iterate throught all orphaned spaces.
118 119 120 121 122 123 124 |
# File 'lib/innodb/system.rb', line 118 def each_orphan(&block) return enum_for(:each_orphan) unless block_given? orphans.each(&block) nil end |
#each_table_name ⇒ Object
Iterate through all table names.
107 108 109 110 111 112 113 114 115 |
# File 'lib/innodb/system.rb', line 107 def each_table_name return enum_for(:each_table_name) unless block_given? data_dictionary.each_table do |record| yield record["NAME"] end nil end |
#history ⇒ Object
204 205 206 |
# File 'lib/innodb/system.rb', line 204 def history Innodb::History.new(self) end |
#index_by_name(table_name, index_name) ⇒ Object
Return an Innodb::Index object given a table name and index name.
188 189 190 191 192 193 194 |
# File 'lib/innodb/system.rb', line 188 def index_by_name(table_name, index_name) index_record = data_dictionary.index_by_name(table_name, index_name) index_space = space(index_record["SPACE"]) describer = data_dictionary.record_describer_by_index_name(table_name, index_name) index_space.index(index_record["PAGE_NO"], describer) end |
#index_name_by_id(index_id) ⇒ Object
Return the index name given an index ID.
166 167 168 |
# File 'lib/innodb/system.rb', line 166 def index_name_by_id(index_id) data_dictionary.index_by_id(index_id).fetch("NAME", nil) end |
#space(space_id) ⇒ Object
Return an Innodb::Space object for a given space ID, looking up and adding the single-table space if necessary.
83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/innodb/system.rb', line 83 def space(space_id) return spaces[space_id] if spaces[space_id] unless (table_record = data_dictionary.table_by_space_id(space_id)) raise "Table with space ID #{space_id} not found" end add_table(table_record["NAME"]) spaces[space_id] end |
#space_by_table_name(table_name) ⇒ Object
Return an Innodb::Space object by table name.
96 97 98 99 100 101 102 103 104 |
# File 'lib/innodb/system.rb', line 96 def space_by_table_name(table_name) unless (table_record = data_dictionary.table_by_name(table_name)) raise "Table #{table_name} not found" end return if table_record["SPACE"].zero? space(table_record["SPACE"]) end |
#system_space ⇒ Object
A helper to get the system space.
47 48 49 |
# File 'lib/innodb/system.rb', line 47 def system_space spaces[SYSTEM_SPACE_ID] end |
#table_and_index_name_by_id(index_id) ⇒ Object
Return an array of the table name and index name given an index ID.
176 177 178 179 180 181 182 183 184 185 |
# File 'lib/innodb/system.rb', line 176 def table_and_index_name_by_id(index_id) if (dd_index = data_dictionary.data_dictionary_index_ids[index_id]) # This is a data dictionary index, which won't be found in the data # dictionary itself. [dd_index[:table], dd_index[:index]] elsif (index_record = data_dictionary.index_by_id(index_id)) # This is a system or user index. [table_name_by_id(index_record["TABLE_ID"]), index_record["NAME"]] end end |
#table_name_by_id(table_id) ⇒ Object
Return the table name given a table ID.
161 162 163 |
# File 'lib/innodb/system.rb', line 161 def table_name_by_id(table_id) data_dictionary.table_by_id(table_id).fetch("NAME", nil) end |