Class: Innodb::Index

Inherits:
Object
  • Object
show all
Defined in:
lib/innodb/index.rb

Defined Under Namespace

Classes: IndexCursor

Constant Summary collapse

FSEG_LIST_NAMES =
i[
  internal
  leaf
].freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(space, root_page_number, record_describer = nil) ⇒ Index

Returns a new instance of Index.



15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/innodb/index.rb', line 15

def initialize(space, root_page_number, record_describer = nil)
  @space = space
  @record_describer = record_describer || space.record_describer

  @root = page(root_page_number)

  raise "Page #{root_page_number} couldn't be read" unless @root

  # The root page should be an index page.
  raise "Page #{root_page_number} is a #{@root.type} page, not an INDEX page" unless @root.type == :INDEX

  # The root page should be the only page at its level.
  raise "Page #{root_page_number} does not appear to be an index root" if @root.prev || @root.next
end

Instance Attribute Details

#record_describerObject

Returns the value of attribute record_describer.



8
9
10
# File 'lib/innodb/index.rb', line 8

def record_describer
  @record_describer
end

#rootObject (readonly)

Returns the value of attribute root.



6
7
8
# File 'lib/innodb/index.rb', line 6

def root
  @root
end

#spaceObject (readonly)

Returns the value of attribute space.



7
8
9
# File 'lib/innodb/index.rb', line 7

def space
  @space
end

Instance Method Details

#_recurse(parent_page, page_proc, link_proc, depth = 0) ⇒ Object

Internal method used by recurse.



55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/innodb/index.rb', line 55

def _recurse(parent_page, page_proc, link_proc, depth = 0)
  page_proc.call(parent_page, depth) if page_proc && parent_page.type == :INDEX

  parent_page.each_child_page do |child_page_number, child_min_key|
    child_page = page(child_page_number)
    child_page.record_describer = record_describer
    next unless child_page.type == :INDEX

    link_proc&.call(parent_page, child_page, child_min_key, depth + 1)
    _recurse(child_page, page_proc, link_proc, depth + 1)
  end
end

#binary_search(key) ⇒ Object

Search for a record within the entire index like linear_search, but use the page directory to search while making as few record comparisons as possible. If a matching record is not found, nil is returned.



208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# File 'lib/innodb/index.rb', line 208

def binary_search(key)
  Innodb::Stats.increment :binary_search

  page = @root

  if Innodb.debug?
    puts "binary_search: root=%i, level=%i, key=(%s)" % [
      page.offset,
      page.level,
      key.join(", "),
    ]
  end

  # Remove supremum from the page directory, since nothing can be scanned
  # linearly from there anyway.
  while (rec = page.binary_search_by_directory(page.directory[0...-1], key))
    if page.level.positive?
      # If we haven't reached a leaf page yet, move down the tree and search
      # again using binary search.
      page = page(rec.child_page_number)
    else
      # We're on a leaf page, so return the page and record if there is a
      # match. If there is no match, break the loop and cause nil to be
      # returned.
      return rec if rec.compare_key(key).zero?

      break
    end
  end
end

#cursor(record = :min, direction = :forward) ⇒ Object

Return an IndexCursor starting at the given record (an Innodb::Record, :min, or :max) and cursor in the direction given (:forward or :backward).



327
328
329
# File 'lib/innodb/index.rb', line 327

def cursor(record = :min, direction = :forward)
  IndexCursor.new(self, record, direction)
end

#each_fsegObject

Iterate through all file segments in the index.



118
119
120
121
122
123
124
# File 'lib/innodb/index.rb', line 118

def each_fseg
  return enum_for(:each_fseg) unless block_given?

  FSEG_LIST_NAMES.each do |fseg_name|
    yield fseg_name, fseg(fseg_name)
  end
end

#each_fseg_frag_page(fseg) ⇒ Object

Iterate through all frag pages in a given fseg.



134
135
136
137
138
139
140
# File 'lib/innodb/index.rb', line 134

def each_fseg_frag_page(fseg)
  return enum_for(:each_fseg_frag_page, fseg) unless block_given?

  fseg.frag_array_pages.each do |page_number|
    yield page_number, page(page_number)
  end
end

#each_fseg_list(fseg, &block) ⇒ Object

Iterate through all lists in a given fseg.



127
128
129
130
131
# File 'lib/innodb/index.rb', line 127

def each_fseg_list(fseg, &block)
  return enum_for(:each_fseg_list, fseg) unless block_given?

  fseg.each_list(&block)
end

#each_page_at_level(level, &block) ⇒ Object

Iterate through all pages at the given level by finding the first page and following the next pointers in each page.



156
157
158
159
160
# File 'lib/innodb/index.rb', line 156

def each_page_at_level(level, &block)
  return enum_for(:each_page_at_level, level) unless block_given?

  each_page_from(min_page_at_level(level), &block)
end

#each_page_from(page) ⇒ Object

Iterate through all pages at this level starting with the provided page.



143
144
145
146
147
148
149
150
151
152
# File 'lib/innodb/index.rb', line 143

def each_page_from(page)
  return enum_for(:each_page_from, page) unless block_given?

  while page && page.type == :INDEX
    yield page
    break unless page.next

    page = page(page.next)
  end
end

#each_record(&block) ⇒ Object

Iterate through all records on all leaf pages in ascending order.



163
164
165
166
167
168
169
# File 'lib/innodb/index.rb', line 163

def each_record(&block)
  return enum_for(:each_record) unless block_given?

  each_page_at_level(0) do |page|
    page.each_record(&block)
  end
end

#field_namesObject



113
114
115
# File 'lib/innodb/index.rb', line 113

def field_names
  record_describer.field_names
end

#fseg(name) ⇒ Object

Return the file segment with the given name from the fseg header.



109
110
111
# File 'lib/innodb/index.rb', line 109

def fseg(name)
  @root.fseg_header[name]
end

#idObject

A helper function to access the index ID in the page header.



39
40
41
# File 'lib/innodb/index.rb', line 39

def id
  @root.page_header.index_id
end

#linear_search(key) ⇒ Object

Search for a record within the entire index, walking down the non-leaf pages until a leaf page is found, and then verifying that the record returned on the leaf page is an exact match for the key. If a matching record is not found, nil is returned (either because linear_search_in_page returns nil breaking the loop, or because compare_key returns non-zero).



176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# File 'lib/innodb/index.rb', line 176

def linear_search(key)
  Innodb::Stats.increment :linear_search

  page = @root

  if Innodb.debug?
    puts "linear_search: root=%i, level=%i, key=(%s)" % [
      page.offset,
      page.level,
      key.join(", "),
    ]
  end

  while (rec = page.linear_search_from_cursor(page.record_cursor(page.infimum.next), key))
    if page.level.positive?
      # If we haven't reached a leaf page yet, move down the tree and search
      # again using linear search.
      page = page(rec.child_page_number)
    else
      # We're on a leaf page, so return the page and record if there is a
      # match. If there is no match, break the loop and cause nil to be
      # returned.
      return rec if rec.compare_key(key).zero?

      break
    end
  end
end

#max_page_at_level(level) ⇒ Object

Return the last leaf page in the index by walking down the right side of the B-tree until a page at the given level is encountered.



93
94
95
96
97
98
99
100
101
# File 'lib/innodb/index.rb', line 93

def max_page_at_level(level)
  page = @root
  record = @root.max_record
  while record && page.level > level
    page = page(record.child_page_number)
    record = page.max_record
  end
  page if page.level == level
end

#max_recordObject

Return the maximum record in the index.



104
105
106
# File 'lib/innodb/index.rb', line 104

def max_record
  max_page_at_level(0)&.max_record
end

#min_page_at_level(level) ⇒ Object

Return the first leaf page in the index by walking down the left side of the B-tree until a page at the given level is encountered.



76
77
78
79
80
81
82
83
84
# File 'lib/innodb/index.rb', line 76

def min_page_at_level(level)
  page = @root
  record = @root.min_record
  while record && page.level > level
    page = page(record.child_page_number)
    record = page.min_record
  end
  page if page.level == level
end

#min_recordObject

Return the minimum record in the index.



87
88
89
# File 'lib/innodb/index.rb', line 87

def min_record
  min_page_at_level(0)&.min_record
end

#node_type(page) ⇒ Object

Return the type of node that the given page represents in the index tree.



44
45
46
47
48
49
50
51
52
# File 'lib/innodb/index.rb', line 44

def node_type(page)
  if @root.offset == page.offset
    :root
  elsif page.level.zero?
    :leaf
  else
    :internal
  end
end

#page(page_number) ⇒ Object



30
31
32
33
34
35
36
# File 'lib/innodb/index.rb', line 30

def page(page_number)
  page = @space.page(page_number)
  raise "Page #{page_number} couldn't be read" unless page

  page.record_describer = @record_describer
  page
end

#recurse(page_proc, link_proc) ⇒ Object

Walk an index tree depth-first, calling procs for each page and link in the tree.



70
71
72
# File 'lib/innodb/index.rb', line 70

def recurse(page_proc, link_proc)
  _recurse(@root, page_proc, link_proc)
end