~ubuntu-branches/ubuntu/gutsy/howm/gutsy

« back to all changes in this revision

Viewing changes to ext/howm-rast-search.rb

  • Committer: Bazaar Package Importer
  • Author(s): Yuki Fujimura
  • Date: 2006-01-06 18:31:02 UTC
  • Revision ID: james.westby@ubuntu.com-20060106183102-vsqskmgvf9kdbm5b
Tags: upstream-1.3.2
ImportĀ upstreamĀ versionĀ 1.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/ruby
 
2
# shamelessly copied and modified from rast-0.1.0
 
3
#
 
4
# This file is not part of Rast.
 
5
 
6
# This program is free software; you can redistribute it and/or modify
 
7
# it under the terms of the GNU General Public License as published by
 
8
# the Free Software Foundation; either version 2 of the License, or
 
9
# (at your option) any later version.
 
10
#
 
11
# This program is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
# GNU General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License
 
17
# along with this program; if not, write to the Free Software
 
18
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
19
# 02111-1307, USA
 
20
 
 
21
require "rast"
 
22
 
 
23
if ![1,2].member?(ARGV.length)
 
24
  $stderr.printf("usage: %s <db> [<query>]\n", $0)
 
25
  exit(1)
 
26
end
 
27
 
 
28
dbpath = ARGV[0]
 
29
query = ARGV[1] || 'filesize >= 0'
 
30
 
 
31
Rast::DB.open(dbpath, Rast::DB::RDONLY) do |db|
 
32
  result = db.search(query, {"properties" => ["filename"]})
 
33
  result.items.each do |item|
 
34
    puts item.properties[0]
 
35
  end
 
36
end