Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sharding: extract dynamic column related code
New API: * Groonga::LabeledArguments
- Loading branch information
Showing
8 changed files
with
181 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,4 +25,6 @@ | |
|
|
||
| require "eval_context" | ||
|
|
||
| require "labeled_arguments" | ||
|
|
||
| require "command_line_parser" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| module Groonga | ||
| class LabeledArguments | ||
| include Enumerable | ||
|
|
||
| def initialize(arguments, prefix_pattern) | ||
| @arguments = arguments | ||
| @pattern = /\A#{prefix_pattern}\[(.+?)\]\.(.+)\z/ | ||
| end | ||
|
|
||
| def each(&block) | ||
| labeled_arguments = {} | ||
| @arguments.each do |key, value| | ||
| match_data = @pattern.match(key) | ||
| next if match_data.nil? | ||
| labeled_argument = (labeled_arguments[match_data[1]] ||= {}) | ||
| labeled_argument[match_data[2]] = value | ||
| end | ||
| labeled_arguments.each(&block) | ||
| end | ||
| end | ||
| end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,135 @@ | ||
| module Groonga | ||
| module Sharding | ||
| class DynamicColumns | ||
| class << self | ||
| def parse(input) | ||
| initial_contexts = [] | ||
| filtered_contexts = [] | ||
| output_contexts = [] | ||
| labeled_arguments = LabeledArguments.new(input, /columns?/) | ||
| labeled_arguments.each do |label, arguments| | ||
| contexts = nil | ||
| case arguments["stage"] | ||
| when "initial" | ||
| contexts = initial_contexts | ||
| when "filtered" | ||
| contexts = filtered_contexts | ||
| when "output" | ||
| contexts = output_contexts | ||
| else | ||
| next | ||
| end | ||
| contexts << DynamicColumnExecuteContext.new(label, arguments) | ||
| end | ||
|
|
||
| new(initial_contexts, | ||
| filtered_contexts, | ||
| output_contexts) | ||
| end | ||
| end | ||
|
|
||
| def initialize(initial_contexts, | ||
| filtered_contexts, | ||
| output_contexts) | ||
| @initial_contexts = initial_contexts | ||
| @filtered_contexts = filtered_contexts | ||
| @output_contexts = output_contexts | ||
| end | ||
|
|
||
| def each_initial(&block) | ||
| @initial_contexts.each(&block) | ||
| end | ||
|
|
||
| def each_filtered(&block) | ||
| @filtered_contexts.each(&block) | ||
| end | ||
|
|
||
| def each_output(&block) | ||
| @output_contexts.each(&block) | ||
| end | ||
|
|
||
| def close | ||
| @initial_contexts.each do |context| | ||
| context.close | ||
| end | ||
| @filtered_contexts.each do |context| | ||
| context.close | ||
| end | ||
| @output_contexts.each do |context| | ||
| context.close | ||
| end | ||
| end | ||
| end | ||
|
|
||
| class DynamicColumnExecuteContext | ||
| include KeysParsable | ||
|
|
||
| attr_reader :label | ||
| attr_reader :stage | ||
| attr_reader :type | ||
| attr_reader :flags | ||
| attr_reader :value | ||
| attr_reader :window_sort_keys | ||
| attr_reader :window_group_keys | ||
| def initialize(label, arguments) | ||
| @label = label | ||
| @stage = arguments["stage"] | ||
| @type = parse_type(arguments["type"]) | ||
| @flags = parse_flags(arguments["flags"] || "COLUMN_SCALAR") | ||
| @value = arguments["value"] | ||
| @window_sort_keys = parse_keys(arguments["window.sort_keys"]) | ||
| @window_group_keys = parse_keys(arguments["window.group_keys"]) | ||
| end | ||
|
|
||
| def close | ||
| end | ||
|
|
||
| def apply(table, condition=nil) | ||
| column = table.create_column(@label, @flags, @type) | ||
| return if table.empty? | ||
|
|
||
| expression = Expression.create(table) | ||
| begin | ||
| expression.parse(@value) | ||
| if @window_sort_keys.empty? and @window_group_keys.empty? | ||
| expression.condition = condition if condition | ||
| table.apply_expression(column, expression) | ||
| else | ||
| table.apply_window_function(column, expression, | ||
| :sort_keys => @window_sort_keys, | ||
| :group_keys => @window_group_keys) | ||
| end | ||
| ensure | ||
| expression.close | ||
| end | ||
| end | ||
|
|
||
| private | ||
| def parse_type(type_raw) | ||
| return nil if type_raw.nil? | ||
|
|
||
| type = Context.instance[type_raw] | ||
| if type.nil? | ||
| message = "#{error_message_tag} unknown type: <#{type_raw}>" | ||
| raise InvalidArgument, message | ||
| end | ||
|
|
||
| case type | ||
| when Type, Table | ||
| type | ||
| else | ||
| message = "#{error_message_tag} invalid type: #{type.grn_inspect}" | ||
| raise InvalidArgument, message | ||
| end | ||
| end | ||
|
|
||
| def parse_flags(flags_raw) | ||
| Column.parse_flags(error_message_tag, flags_raw) | ||
| end | ||
|
|
||
| def error_message_tag | ||
| "[logical_select][columns][#{@stage}][#{@label}]" | ||
| end | ||
| end | ||
| end | ||
| end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| module Groonga | ||
| module Sharding | ||
| module KeysParsable | ||
| private | ||
| def parse_keys(raw_keys) | ||
| return [] if raw_keys.nil? | ||
|
|
||
| raw_keys.strip.split(/ *, */) | ||
| end | ||
| end | ||
| end | ||
| end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters