Class: Origin::Pipeline

Inherits:
Array
  • Object
show all
Defined in:
lib/origin/pipeline.rb

Overview

Represents an aggregation pipeline.

Since:

  • 2.0.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(aliases = {}) {|_self| ... } ⇒ Pipeline

Initialize the new pipeline.

Examples:

Initialize the new pipeline.

Origin::Pipeline.new(aliases)

Parameters:

  • aliases (Hash) (defaults to: {})

    A hash of mappings from aliases to the actual field names in the database.

Yields:

  • (_self)

Yield Parameters:

Since:

  • 2.0.0



52
53
54
55
# File 'lib/origin/pipeline.rb', line 52

def initialize(aliases = {})
  @aliases = aliases
  yield(self) if block_given?
end

Instance Attribute Details

#aliasesObject (readonly)

Since:

  • 2.0.0



10
11
12
# File 'lib/origin/pipeline.rb', line 10

def aliases
  @aliases
end

#aliases The field aliases.(Thefieldaliases.) ⇒ Object (readonly)



10
# File 'lib/origin/pipeline.rb', line 10

attr_reader :aliases

Instance Method Details

#__deep_copy__Pipeline

Deep copy the aggregation pipeline. Will clone all the values in the pipeline as well as the pipeline itself.

Examples:

Deep copy the pipeline.

pipeline.__deep_copy__

Returns:

Since:

  • 2.0.0



21
22
23
24
25
26
27
# File 'lib/origin/pipeline.rb', line 21

def __deep_copy__
  self.class.new(aliases) do |copy|
    each do |entry|
      copy.push(entry.__deep_copy__)
    end
  end
end

#group(entry) ⇒ Pipeline

Add a group operation to the aggregation pipeline.

Examples:

Add a group operation.

pipeline.group(:count.sum => 1, :max.max => "likes")

Parameters:

  • entry (Hash)

    The group entry.

Returns:

Since:

  • 2.0.0



39
40
41
# File 'lib/origin/pipeline.rb', line 39

def group(entry)
  push("$group" => evolve(entry.__expand_complex__))
end

#project(entry) ⇒ Pipeline

Adds a $project entry to the aggregation pipeline.

Examples:

Add the projection.

pipeline.project(name: 1)

Parameters:

  • entry (Hash)

    The projection.

Returns:

Since:

  • 2.0.0



65
66
67
# File 'lib/origin/pipeline.rb', line 65

def project(entry)
  push("$project" => evolve(entry))
end

#unwind(field) ⇒ Pipeline

Add the $unwind entry to the pipeline.

Examples:

Add the unwind.

pipeline.unwind(:field)

Parameters:

  • field (String, Symbol)

    The name of the field.

Returns:

Since:

  • 2.0.0



79
80
81
82
83
# File 'lib/origin/pipeline.rb', line 79

def unwind(field)
  normalized = field.to_s
  name = aliases[normalized] || normalized
  push("$unwind" => name.__mongo_expression__)
end