Sha256: d6dc77ad5ddf603cc6c6aa38cf753667d686884f4ea98c93e6059180d2602dcf

Contents?: true

Size: 1.88 KB

Versions: 4

Compression:

Stored size: 1.88 KB

Contents

#!/usr/bin/env ruby

require 'rubygems'
$: << "../lib"
$: << "../ext"
require 'libsql'

#--
# Create a database and a table to put some results from the functions in
#--
db = ::Libsql::Database.new( ":memory:" )
db.execute( "CREATE TABLE atest( words )" )

#------------------------------------------------------------------------------
# Create unique word count aggregate 
#------------------------------------------------------------------------------
class UniqueWordCount < ::Libsql::Aggregate
  attr_accessor :words

  def initialize
    @name = 'unique_word_count'
    @arity = 1
    @words = Hash.new { |h,k| h[k] = 0 }
  end

  def step( str )
    str.split(/\W+/).each do |word|
      words[ word.downcase ] += 1
    end
    return nil
  end

  def finalize
    return words.size
  end
end

db.define_aggregate( 'unique_word_count', UniqueWordCount )

#------------------------------------------------------------------------------
# Now we have a new aggregate function, lets insert some rows into the database
# and see what we can find.
#------------------------------------------------------------------------------
sql = "INSERT INTO atest( words ) VALUES( ? )"
verify = {}
db.prepare( sql ) do |stmt|
  DATA.each do |words|
    words.strip!
    puts "Inserting #{words}"
    stmt.execute( words )
    words.split(/\W+/).each { |w| verify[w] = true }
  end
end

#------------------------------------------------------------------------------
# And show the results
#------------------------------------------------------------------------------
puts
puts "Getting results..."
puts
all_rows = db.execute("SELECT unique_word_count( words ) AS uwc FROM atest")
puts "#{all_rows.first['uwc']} unique words found"
puts "#{verify.size} unique words to verify"

__END__
some random
words with
which
to play
and there should
be a couple of different
words that appear
more than once and
some that appear only
once

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
libsql-0.1.0-x64-mingw-ucrt examples/define_aggregate.rb
libsql-0.1.0-x64-mingw32 examples/define_aggregate.rb
libsql-0.1.0-x86-mingw32 examples/define_aggregate.rb
libsql-0.1.0 examples/define_aggregate.rb