Class: Bmg::Operator::Project
- Inherits:
-
Object
- Object
- Bmg::Operator::Project
- Includes:
- Unary
- Defined in:
- lib/bmg/operator/project.rb
Overview
Project operator.
Projects operand’s tuples on given attributes, that is, keep those attributes only. The operator takes care of removing duplicates.
Example:
[{ a: 1, b: 2 }] project [:b] => [{ b: 2 }]
All attributes in the attrlist SHOULD be existing attributes of the input tuples.
Instance Attribute Summary
Attributes included from Bmg::Operator
Instance Method Summary collapse
- #delete(predicate = Predicate.tautology) ⇒ Object
- #each ⇒ Object
-
#initialize(type, operand, attrlist) ⇒ Project
constructor
A new instance of Project.
- #insert(arg) ⇒ Object
- #to_ast ⇒ Object
- #update(tuple, predicate = Predicate.tautology) ⇒ Object
Methods included from Unary
Methods included from Bmg::Operator
Methods included from Relation
#_count, #bind, #count, #debug, empty, #empty?, new, #one, #one_or_nil, #to_csv, #to_json, #to_xlsx, #type, #visit, #with_type, #with_type_attrlist, #with_typecheck, #without_typecheck, #y_by_x, #ys_by_x
Methods included from Algebra
#allbut, #autosummarize, #autowrap, #constants, #extend, #group, #image, #join, #left_join, #matching, #materialize, #minus, #not_matching, #page, #project, #rename, #restrict, #spied, #summarize, #transform, #ungroup, #union, #unspied, #unwrap
Methods included from Algebra::Shortcuts
#cross_product, #exclude, #image, #images, #join, #left_join, #matching, #not_matching, #prefix, #rxmatch, #suffix, #ungroup, #unwrap, #where
Constructor Details
#initialize(type, operand, attrlist) ⇒ Project
Returns a new instance of Project.
19 20 21 22 23 |
# File 'lib/bmg/operator/project.rb', line 19 def initialize(type, operand, attrlist) @type = type @operand = operand @attrlist = attrlist end |
Instance Method Details
#delete(predicate = Predicate.tautology) ⇒ Object
56 57 58 |
# File 'lib/bmg/operator/project.rb', line 56 def delete(predicate = Predicate.tautology) operand.delete(predicate) end |
#each ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/bmg/operator/project.rb', line 31 def each return to_enum unless block_given? seen = {} @operand.each do |tuple| projected = tuple_project(tuple) unless seen.has_key?(projected) yield(projected) seen[projected] = true end end end |
#insert(arg) ⇒ Object
43 44 45 46 47 48 49 50 |
# File 'lib/bmg/operator/project.rb', line 43 def insert(arg) case arg when Hash then operand.insert(valid_tuple!(arg)) when Enumerable then operand.insert(arg.map{|t| valid_tuple!(t) }) else super end end |
#to_ast ⇒ Object
60 61 62 |
# File 'lib/bmg/operator/project.rb', line 60 def to_ast [ :project, operand.to_ast, attrlist ] end |
#update(tuple, predicate = Predicate.tautology) ⇒ Object
52 53 54 |
# File 'lib/bmg/operator/project.rb', line 52 def update(tuple, predicate = Predicate.tautology) operand.update(valid_tuple!(tuple), predicate) end |