1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
|
# encoding: utf-8
# acts_as_xapian/lib/acts_as_xapian.rb:
# Xapian full text search in Ruby on Rails.
#
# Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved.
# Email: hello@mysociety.org; WWW: http://www.mysociety.org/
#
# Documentation
# =============
#
# See ../README.txt foocumentation. Please update that file if you edit
# code.
# Make it so if Xapian isn't installed, the Rails app doesn't fail completely,
# just when somebody does a search.
begin
require 'xapian'
$acts_as_xapian_bindings_available = true
rescue LoadError
STDERR.puts "acts_as_xapian: No Ruby bindings for Xapian installed"
$acts_as_xapian_bindings_available = false
end
module Xapian
class QueryParser
def unstem(term)
words = []
Xapian._safelyIterate(unstem_begin(term), unstem_end(term)) do |item|
words << item.term
end
words
end
end
end
module ActsAsXapian
######################################################################
# Module level variables
# TODO: must be some kind of cattr_accessor that can do this better
def ActsAsXapian.bindings_available
$acts_as_xapian_bindings_available
end
class NoXapianRubyBindingsError < StandardError
end
@@db = nil
@@db_path = nil
@@writable_db = nil
@@init_values = []
# There used to be a problem with this module being loaded more than once.
# Keep a check here, so we can tell if the problem recurs.
if $acts_as_xapian_class_var_init
raise "The acts_as_xapian module has already been loaded"
else
$acts_as_xapian_class_var_init = true
end
def ActsAsXapian.db
@@db
end
def ActsAsXapian.db_path=(db_path)
@@db_path = db_path
end
def ActsAsXapian.db_path
@@db_path
end
def ActsAsXapian.writable_db
@@writable_db
end
def ActsAsXapian.stemmer
@@stemmer
end
def ActsAsXapian.term_generator
@@term_generator
end
def ActsAsXapian.enquire
@@enquire
end
def ActsAsXapian.query_parser
@@query_parser
end
def ActsAsXapian.values_by_prefix
@@values_by_prefix
end
def ActsAsXapian.config
@@config
end
######################################################################
# Initialisation
def ActsAsXapian.init(classname = nil, options = nil)
if not classname.nil?
# store class and options for use later, when we open the db in readable_init
@@init_values.push([classname,options])
end
end
# Reads the config file (if any) and sets up the path to the database we'll be using
def ActsAsXapian.prepare_environment
return unless @@db_path.nil?
# barf if we can't figure out the environment
environment = (ENV['RAILS_ENV'] or Rails.env)
raise "Set RAILS_ENV, so acts_as_xapian can find the right Xapian database" if not environment
# check for a config file
config_file = Rails.root.join("config","xapian.yml")
@@config = File.exists?(config_file) ? YAML.load_file(config_file)[environment] : {}
# figure out where the DBs should go
if config['base_db_path']
db_parent_path = Rails.root.join(config['base_db_path'])
else
db_parent_path = File.join(File.dirname(__FILE__), 'xapiandbs')
end
# make the directory for the xapian databases to go in
Dir.mkdir(db_parent_path) unless File.exists?(db_parent_path)
@@db_path = File.join(db_parent_path, environment)
# make some things that don't depend on the db
# TODO: this gets made once for each acts_as_xapian. Oh well.
@@stemmer = Xapian::Stem.new('english')
end
# Opens / reopens the db for reading
# TODO: we perhaps don't need to rebuild database and enquire and queryparser -
# but db.reopen wasn't enough by itself, so just do everything it's easier.
def ActsAsXapian.readable_init
raise NoXapianRubyBindingsError.new("Xapian Ruby bindings not installed") unless ActsAsXapian.bindings_available
raise "acts_as_xapian hasn't been called in any models" if @@init_values.empty?
prepare_environment
# We need to reopen the database each time, so Xapian gets changes to it.
# Calling reopen() does not always pick up changes for reasons that I can
# only speculate about at the moment. (It is easy to reproduce this by
# changing the code below to use reopen() rather than open() followed by
# close(), and running rake spec.)
if !@@db.nil?
@@db.close
end
# basic Xapian objects
begin
@@db = Xapian::Database.new(@@db_path)
@@enquire = Xapian::Enquire.new(@@db)
rescue IOError => e
raise "Failed to open Xapian database #{@@db_path}: #{e.message}"
end
init_query_parser
end
# Make a new query parser
def ActsAsXapian.init_query_parser
# for queries
@@query_parser = Xapian::QueryParser.new
@@query_parser.stemmer = @@stemmer
@@query_parser.stemming_strategy = Xapian::QueryParser::STEM_SOME
@@query_parser.database = @@db
@@query_parser.default_op = Xapian::Query::OP_AND
begin
@@query_parser.set_max_wildcard_expansion(1000)
rescue NoMethodError
# The set_max_wildcard_expansion method was introduced in Xapian 1.2.7,
# so may legitimately not be available.
#
# Large installations of Alaveteli should consider
# upgrading, because uncontrolled wildcard expansion
# can crash the whole server: see http://trac.xapian.org/ticket/350
end
@@stopper = Xapian::SimpleStopper.new
@@stopper.add("and")
@@stopper.add("of")
@@stopper.add("&")
@@query_parser.stopper = @@stopper
@@terms_by_capital = {}
@@values_by_number = {}
@@values_by_prefix = {}
@@value_ranges_store = []
for init_value_pair in @@init_values
classname = init_value_pair[0]
options = init_value_pair[1]
# go through the various field types, and tell query parser about them,
# and error check them - i.e. check for consistency between models
@@query_parser.add_boolean_prefix("model", "M")
@@query_parser.add_boolean_prefix("modelid", "I")
if options[:terms]
for term in options[:terms]
raise "Use a single capital letter for term code" if not term[1].match(/^[A-Z]$/)
raise "M and I are reserved for use as the model/id term" if term[1] == "M" or term[1] == "I"
raise "model and modelid are reserved for use as the model/id prefixes" if term[2] == "model" or term[2] == "modelid"
raise "Z is reserved for stemming terms" if term[1] == "Z"
raise "Already have code '" + term[1] + "' in another model but with different prefix '" + @@terms_by_capital[term[1]] + "'" if @@terms_by_capital.include?(term[1]) && @@terms_by_capital[term[1]] != term[2]
@@terms_by_capital[term[1]] = term[2]
# TODO: use boolean here so doesn't stem our URL names in WhatDoTheyKnow
# If making acts_as_xapian generic, would really need to make the :terms have
# another option that lets people choose non-boolean for terms that need it
# (i.e. searching explicitly within a free text field)
@@query_parser.add_boolean_prefix(term[2], term[1])
end
end
if options[:values]
for value in options[:values]
raise "Value index '"+value[1].to_s+"' must be an integer, is " + value[1].class.to_s if value[1].class != 1.class
raise "Already have value index '" + value[1].to_s + "' in another model but with different prefix '" + @@values_by_number[value[1]].to_s + "'" if @@values_by_number.include?(value[1]) && @@values_by_number[value[1]] != value[2]
# date types are special, mark them so the first model they're seen for
if !@@values_by_number.include?(value[1])
if value[3] == :date
value_range = Xapian::DateValueRangeProcessor.new(value[1])
elsif value[3] == :string
value_range = Xapian::StringValueRangeProcessor.new(value[1])
elsif value[3] == :number
value_range = Xapian::NumberValueRangeProcessor.new(value[1])
else
raise "Unknown value type '" + value[3].to_s + "'"
end
@@query_parser.add_valuerangeprocessor(value_range)
# stop it being garbage collected, as
# add_valuerangeprocessor ref is outside Ruby's GC
@@value_ranges_store.push(value_range)
end
@@values_by_number[value[1]] = value[2]
@@values_by_prefix[value[2]] = value[1]
end
end
end
end
def ActsAsXapian.writable_init(suffix = "")
raise NoXapianRubyBindingsError.new("Xapian Ruby bindings not installed") unless ActsAsXapian.bindings_available
raise "acts_as_xapian hasn't been called in any models" if @@init_values.empty?
# if DB is not nil, then we're already initialised, so don't do it
# again TODO: reopen it each time, xapian_spec.rb needs this so database
# gets written twice correctly.
# return unless @@writable_db.nil?
prepare_environment
full_path = @@db_path + suffix
# for indexing
@@writable_db = Xapian::WritableDatabase.new(full_path, Xapian::DB_CREATE_OR_OPEN)
@@enquire = Xapian::Enquire.new(@@writable_db)
@@term_generator = Xapian::TermGenerator.new()
@@term_generator.set_flags(Xapian::TermGenerator::FLAG_SPELLING, 0)
@@term_generator.database = @@writable_db
@@term_generator.stemmer = @@stemmer
end
######################################################################
# Search with a query or for similar models
# Base class for Search and Similar below
class QueryBase
attr_accessor :offset
attr_accessor :limit
attr_accessor :query
attr_accessor :matches
attr_accessor :query_models
attr_accessor :runtime
attr_accessor :cached_results
def initialize_db
self.runtime = 0.0
ActsAsXapian.readable_init
if ActsAsXapian.db.nil?
raise "ActsAsXapian not initialized"
end
end
MSET_MAX_TRIES = 5
MSET_MAX_DELAY = 5
# Set self.query before calling this
def initialize_query(options)
#raise options.to_yaml
self.runtime += Benchmark::realtime {
offset = options[:offset] || 0; offset = offset.to_i
limit = options[:limit]
raise "please specifiy maximum number of results to return with parameter :limit" if not limit
limit = limit.to_i
sort_by_prefix = options[:sort_by_prefix] || nil
sort_by_ascending = options[:sort_by_ascending].nil? ? true : options[:sort_by_ascending]
collapse_by_prefix = options[:collapse_by_prefix] || nil
ActsAsXapian.enquire.query = self.query
if sort_by_prefix.nil?
ActsAsXapian.enquire.sort_by_relevance!
else
value = ActsAsXapian.values_by_prefix[sort_by_prefix]
raise "couldn't find prefix '" + sort_by_prefix.to_s + "'" if value.nil?
ActsAsXapian.enquire.sort_by_value_then_relevance!(value, sort_by_ascending)
end
if collapse_by_prefix.nil?
ActsAsXapian.enquire.collapse_key = Xapian.BAD_VALUENO
else
value = ActsAsXapian.values_by_prefix[collapse_by_prefix]
raise "couldn't find prefix '" + collapse_by_prefix + "'" if value.nil?
ActsAsXapian.enquire.collapse_key = value
end
tries = 0
delay = 1
begin
self.matches = ActsAsXapian.enquire.mset(offset, limit, 100)
rescue IOError => e
if e.message =~ /DatabaseModifiedError: /
# This should be a transient error, so back off and try again, up to a point
if tries > MSET_MAX_TRIES
raise "Received DatabaseModifiedError from Xapian even after retrying #{MSET_MAX_TRIES} times"
else
sleep delay
end
tries += 1
delay *= 2
delay = MSET_MAX_DELAY if delay > MSET_MAX_DELAY
ActsAsXapian.db.reopen()
retry
else
raise
end
end
self.cached_results = nil
}
end
# Return a description of the query
def description
self.query.description
end
# Does the query have non-prefixed search terms in it?
def has_normal_search_terms?
ret = false
#x = ''
for t in self.query.terms
term = t.term
#x = x + term.to_yaml + term.size.to_s + term[0..0] + "*"
if term.size >= 2 && term[0..0] == 'Z'
# normal terms begin Z (for stemmed), then have no capital letter prefix
if term[1..1] == term[1..1].downcase
ret = true
end
end
end
return ret
end
# Estimate total number of results
def matches_estimated
self.matches.matches_estimated
end
# Return query string with spelling correction
def spelling_correction
correction = ActsAsXapian.query_parser.get_corrected_query_string
if correction.empty?
return nil
end
if correction.respond_to?(:force_encoding)
correction = correction.force_encoding('UTF-8')
end
correction
end
# Return array of models found
def results
# If they've already pulled out the results, just return them.
if !self.cached_results.nil?
return self.cached_results
end
docs = []
self.runtime += Benchmark::realtime {
# Pull out all the results
iter = self.matches._begin
while not iter.equals(self.matches._end)
docs.push({:data => iter.document.data,
:percent => iter.percent,
:weight => iter.weight,
:collapse_count => iter.collapse_count})
iter.next
end
}
# Log time taken, excluding database lookups below which will be displayed separately by ActiveRecord
if ActiveRecord::Base.logger
ActiveRecord::Base.logger.add(Logger::DEBUG, " Xapian query (#{'%.5fs' % self.runtime}) #{self.log_description}")
end
# Look up without too many SQL queries
lhash = {}
lhash.default = []
for doc in docs
k = doc[:data].split('-')
lhash[k[0]] = lhash[k[0]] + [k[1]]
end
# for each class, look up all ids
chash = {}
for cls, ids in lhash
conditions = [ "#{cls.constantize.table_name}.#{cls.constantize.primary_key} in (?)", ids ]
found = cls.constantize.find(:all, :conditions => conditions, :include => cls.constantize.xapian_options[:eager_load])
for f in found
chash[[cls, f.id]] = f
end
end
# now get them in right order again
results = []
docs.each do |doc|
k = doc[:data].split('-')
model_instance = chash[[k[0], k[1].to_i]]
if model_instance
results << { :model => model_instance,
:percent => doc[:percent],
:weight => doc[:weight],
:collapse_count => doc[:collapse_count] }
end
end
self.cached_results = results
return results
end
end
# Search for a query string, returns an array of hashes in result order.
# Each hash contains the actual Rails object in :model, and other detail
# about relevancy etc. in other keys.
class Search < QueryBase
attr_accessor :query_string
# Note that model_classes is not only sometimes useful here - it's
# essential to make sure the classes have been loaded, and thus
# acts_as_xapian called on them, so we know the fields for the query
# parser.
# model_classes - model classes to search within, e.g. [PublicBody,
# User]. Can take a single model class, or you can express the model
# class names in strings if you like.
# query_string - user inputed query string, with syntax much like Google Search
def initialize(model_classes, query_string, options = {}, user_query = nil)
# Check parameters, convert to actual array of model classes
new_model_classes = []
model_classes = [model_classes] if model_classes.class != Array
for model_class in model_classes
raise "pass in the model class itself, or a string containing its name" if model_class.class != Class && model_class.class != String
model_class = model_class.constantize if model_class.class == String
new_model_classes.push(model_class)
end
model_classes = new_model_classes
# Set things up
self.initialize_db
# Case of a string, searching for a Google-like syntax query
self.query_string = query_string
# Construct query which only finds things from specified models
model_query = Xapian::Query.new(Xapian::Query::OP_OR, model_classes.map{|mc| "M" + mc.to_s})
if user_query.nil?
user_query = ActsAsXapian.query_parser.parse_query(
self.query_string,
Xapian::QueryParser::FLAG_BOOLEAN | Xapian::QueryParser::FLAG_PHRASE |
Xapian::QueryParser::FLAG_LOVEHATE |
Xapian::QueryParser::FLAG_SPELLING_CORRECTION)
end
self.query = Xapian::Query.new(Xapian::Query::OP_AND, model_query, user_query)
# Call base class constructor
self.initialize_query(options)
end
# Return just normal words in the query i.e. Not operators, ones in
# date ranges or similar. Use this for cheap highlighting with
# TextHelper::highlight, and excerpt.
def words_to_highlight(opts = {})
default_opts = { :include_original => false, :regex => false }
opts = default_opts.merge(opts)
# Reject all prefixes other than Z, which we know is reserved for stems
terms = query.terms.reject { |t| t.term.first.match(/^[A-Y]$/) }
# Collect the stems including the Z prefix
raw_stems = terms.map { |t| t.term if t.term.start_with?('Z') }.compact.uniq.sort
# Collect stems, chopping the Z prefix off
stems = raw_stems.map { |t| t[1..-1] }.compact.sort
# Collect the non-stem terms
words = terms.map { |t| t.term unless t.term.start_with?('Z') }.compact.sort
# Add the unstemmed words from the original query
# Sometimes stems can be unhelpful with the :regex option, for example
# stemming 'boring' results in us trying to highlight 'bore'.
if opts[:include_original]
raw_stems.each do |raw_stem|
words << ActsAsXapian.query_parser.unstem(raw_stem).uniq
end
words = words.any? ? words.flatten.uniq : []
end
if opts[:regex]
stems.map! { |w| /\b(#{ w })\w*\b/iu }
words.map! { |w| /\b(#{ w })\b/iu }
end
if RUBY_VERSION.to_f >= 1.9
(stems + words).map! do |term|
term.is_a?(String) ? term.force_encoding('UTF-8') : term
end
else
stems + words
end
end
# Text for lines in log file
def log_description
"Search: " + self.query_string
end
end
# Search for models which contain theimportant terms taken from a specified
# list of models. i.e. Use to find documents similar to one (or more)
# documents, or use to refine searches.
class Similar < QueryBase
attr_accessor :query_models
attr_accessor :important_terms
# model_classes - model classes to search within, e.g. [PublicBody, User]
# query_models - list of models you want to find things similar to
def initialize(model_classes, query_models, options = {})
self.initialize_db
self.runtime += Benchmark::realtime {
# Case of an array, searching for models similar to those models in the array
self.query_models = query_models
# Find the documents by their unique term
input_models_query = Xapian::Query.new(Xapian::Query::OP_OR, query_models.map{|m| "I" + m.xapian_document_term})
ActsAsXapian.enquire.query = input_models_query
matches = ActsAsXapian.enquire.mset(0, 100, 100) # TODO: so this whole method will only work with 100 docs
# Get set of relevant terms for those documents
selection = Xapian::RSet.new()
iter = matches._begin
while not iter.equals(matches._end)
selection.add_document(iter)
iter.next
end
# Bit weird that the function to make esets is part of the enquire
# object. This explains what exactly it does, which is to exclude
# terms in the existing query.
# http://thread.gmane.org/gmane.comp.search.xapian.general/3673/focus=3681
eset = ActsAsXapian.enquire.eset(40, selection)
# Do main search for them
self.important_terms = []
iter = eset._begin
while not iter.equals(eset._end)
self.important_terms.push(iter.term)
iter.next
end
similar_query = Xapian::Query.new(Xapian::Query::OP_OR, self.important_terms)
# Exclude original
combined_query = Xapian::Query.new(Xapian::Query::OP_AND_NOT, similar_query, input_models_query)
# Restrain to model classes
model_query = Xapian::Query.new(Xapian::Query::OP_OR, model_classes.map{|mc| "M" + mc.to_s})
self.query = Xapian::Query.new(Xapian::Query::OP_AND, model_query, combined_query)
}
# Call base class constructor
self.initialize_query(options)
end
# Text for lines in log file
def log_description
"Similar: " + self.query_models.to_s
end
end
######################################################################
# Index
# Offline indexing job queue model, create with migration made
# using "script/generate acts_as_xapian" as described in ../README.txt
class ActsAsXapianJob < ActiveRecord::Base
end
# Update index with any changes needed, call this offline. Usually call it
# from a script that exits - otherwise Xapian's writable database won't
# flush your changes. Specifying flush will reduce performance, but make
# sure that each index update is definitely saved to disk before
# logging in the database that it has been.
def ActsAsXapian.update_index(flush = false, verbose = false)
# STDOUT.puts("start of ActsAsXapian.update_index") if verbose
# Before calling writable_init we have to make sure every model class has been initialized.
# i.e. has had its class code loaded, so acts_as_xapian has been called inside it, and
# we have the info from acts_as_xapian.
model_classes = ActsAsXapianJob.find_by_sql("select model from acts_as_xapian_jobs group by model").map {|a| a.model.constantize}
# If there are no models in the queue, then nothing to do
return if model_classes.size == 0
ActsAsXapian.writable_init
# Abort if full rebuild is going on
new_path = ActsAsXapian.db_path + ".new"
if File.exist?(new_path)
raise "aborting incremental index update while full index rebuild happens; found existing " + new_path
end
ids_to_refresh = ActsAsXapianJob.find(:all).map() { |i| i.id }
for id in ids_to_refresh
job = nil
begin
ActiveRecord::Base.transaction do
begin
job = ActsAsXapianJob.find(id, :lock =>true)
rescue ActiveRecord::RecordNotFound => e
# This could happen if while we are working the model
# was updated a second time by another process. In that case
# ActsAsXapianJob.delete_all in xapian_mark_needs_index below
# might have removed the first job record while we are working on it.
#STDERR.puts("job with #{id} vanished under foot") if verbose
next
end
STDOUT.puts("ActsAsXapian.update_index #{job.action} #{job.model} #{job.model_id.to_s} #{Time.now.to_s}") if verbose
begin
if job.action == 'update'
# TODO: Index functions may reference other models, so we could eager load here too?
model = job.model.constantize.find(job.model_id) # :include => cls.constantize.xapian_options[:include]
model.xapian_index
elsif job.action == 'destroy'
# Make dummy model with right id, just for destruction
model = job.model.constantize.new
model.id = job.model_id
model.xapian_destroy
else
raise "unknown ActsAsXapianJob action '" + job.action + "'"
end
rescue ActiveRecord::RecordNotFound => e
# this can happen if the record was hand deleted in the database
job.action = 'destroy'
retry
end
if flush
ActsAsXapian.writable_db.flush
end
job.destroy
end
rescue => detail
# print any error, and carry on so other things are indexed
STDERR.puts(detail.backtrace.join("\n") + "\nFAILED ActsAsXapian.update_index job #{id} #{$!} " + (job.nil? ? "" : "model " + job.model + " id " + job.model_id.to_s))
end
end
# We close the database when we're finished to remove the lock file. Since writable_init
# reopens it and recreates the environment every time we don't need to do further cleanup
ActsAsXapian.writable_db.flush
ActsAsXapian.writable_db.close
end
def ActsAsXapian._is_xapian_db(path)
is_db = File.exist?(File.join(path, "iamflint")) || File.exist?(File.join(path, "iamchert"))
return is_db
end
# You must specify *all* the models here, this totally rebuilds the Xapian
# database. You'll want any readers to reopen the database after this.
#
# Incremental update_index calls above are suspended while this rebuild
# happens (i.e. while the .new database is there) - any index update jobs
# are left in the database, and will run after the rebuild has finished.
def ActsAsXapian.rebuild_index(model_classes, verbose = false, terms = true, values = true, texts = true, safe_rebuild = true)
#raise "when rebuilding all, please call as first and only thing done in process / task" if not ActsAsXapian.writable_db.nil?
prepare_environment
update_existing = !(terms == true && values == true && texts == true)
# Delete any existing .new database, and open a new one which is a copy of the current one
new_path = ActsAsXapian.db_path + ".new"
old_path = ActsAsXapian.db_path
if File.exist?(new_path)
raise "found existing " + new_path + " which is not Xapian flint database, please delete for me" if not ActsAsXapian._is_xapian_db(new_path)
FileUtils.rm_r(new_path)
end
if update_existing
FileUtils.cp_r(old_path, new_path)
end
ActsAsXapian.writable_init
ActsAsXapian.writable_db.close # just to make an empty one to read
# Index everything
if safe_rebuild
_rebuild_index_safely(model_classes, verbose, terms, values, texts)
else
@@db_path = ActsAsXapian.db_path + ".new"
ActsAsXapian.writable_init
# Save time by running the indexing in one go and in-process
for model_class in model_classes
STDOUT.puts("ActsAsXapian.rebuild_index: Rebuilding #{model_class.to_s}") if verbose
model_class.find(:all).each do |model|
STDOUT.puts("ActsAsXapian.rebuild_index #{model_class} #{model.id}") if verbose
model.xapian_index(terms, values, texts)
end
end
ActsAsXapian.writable_db.flush
ActsAsXapian.writable_db.close
end
# Rename into place
temp_path = old_path + ".tmp"
if File.exist?(temp_path)
@@db_path = old_path
raise "temporary database found " + temp_path + " which is not Xapian flint database, please delete for me" if not ActsAsXapian._is_xapian_db(temp_path)
FileUtils.rm_r(temp_path)
end
if File.exist?(old_path)
FileUtils.mv old_path, temp_path
end
FileUtils.mv new_path, old_path
# Delete old database
if File.exist?(temp_path)
if not ActsAsXapian._is_xapian_db(temp_path)
@@db_path = old_path
raise "old database now at " + temp_path + " is not Xapian flint database, please delete for me"
end
FileUtils.rm_r(temp_path)
end
# You'll want to restart your FastCGI or Mongrel processes after this,
# so they get the new db
@@db_path = old_path
end
def ActsAsXapian._rebuild_index_safely(model_classes, verbose, terms, values, texts)
batch_size = 1000
for model_class in model_classes
model_class_count = model_class.count
0.step(model_class_count, batch_size) do |i|
# We fork here, so each batch is run in a different process. This is
# because otherwise we get a memory "leak" and you can't rebuild very
# large databases (however long you have!)
ActiveRecord::Base.connection.disconnect!
pid = Process.fork # TODO: this will only work on Unix, tough
if pid
Process.waitpid(pid)
if not $?.success?
raise "batch fork child failed, exiting also"
end
# database connection doesn't survive a fork, rebuild it
else
# fully reopen the database each time (with a new object)
# (so doc ids and so on aren't preserved across the fork)
ActiveRecord::Base.establish_connection
@@db_path = ActsAsXapian.db_path + ".new"
ActsAsXapian.writable_init
STDOUT.puts("ActsAsXapian.rebuild_index: New batch. #{model_class.to_s} from #{i} to #{i + batch_size} of #{model_class_count} pid #{Process.pid.to_s}") if verbose
model_class.find(:all, :limit => batch_size, :offset => i, :order => :id).each do |model|
STDOUT.puts("ActsAsXapian.rebuild_index #{model_class} #{model.id}") if verbose
model.xapian_index(terms, values, texts)
end
ActsAsXapian.writable_db.flush
ActsAsXapian.writable_db.close
# database connection won't survive a fork, so shut it down
ActiveRecord::Base.connection.disconnect!
# brutal exit, so other shutdown code not run (for speed and safety)
Kernel.exit! 0
end
ActiveRecord::Base.establish_connection
end
end
end
######################################################################
# Instance methods that get injected into your model.
module InstanceMethods
# Used internally
def xapian_document_term
self.class.to_s + "-" + self.id.to_s
end
def xapian_value(field, type = nil, index_translations = false)
if index_translations && self.respond_to?("translations")
if type == :date or type == :boolean
value = single_xapian_value(field, type = type)
else
values = []
for locale in self.translations.map{|x| x.locale}
I18n.with_locale(locale) do
values << single_xapian_value(field, type=type)
end
end
if values[0].kind_of?(Array)
values = values.flatten
value = values.reject{|x| x.nil?}
else
values = values.reject{|x| x.nil?}
value = values.join(" ")
end
end
else
value = single_xapian_value(field, type = type)
end
return value
end
# Extract value of a field from the model
def single_xapian_value(field, type = nil)
value = self.send(field.to_sym) || self[field]
if type == :date
if value.kind_of?(Time)
value.utc.strftime("%Y%m%d")
elsif value.kind_of?(Date)
value.to_time.utc.strftime("%Y%m%d")
else
raise "Only Time or Date types supported by acts_as_xapian for :date fields, got " + value.class.to_s
end
elsif type == :boolean
value ? true : false
else
# Arrays are for terms which require multiple of them, e.g. tags
if value.kind_of?(Array)
value.map {|v| v.to_s}
else
value.to_s
end
end
end
# Store record in the Xapian database
def xapian_index(terms = true, values = true, texts = true)
# if we have a conditional function for indexing, call it and destroy object if failed
if self.class.xapian_options.include?(:if)
if_value = xapian_value(self.class.xapian_options[:if], :boolean)
if not if_value
self.xapian_destroy
return
end
end
existing_query = Xapian::Query.new("I" + self.xapian_document_term)
ActsAsXapian.enquire.query = existing_query
match = ActsAsXapian.enquire.mset(0,1,1).matches[0]
if !match.nil?
doc = match.document
else
doc = Xapian::Document.new
doc.data = self.xapian_document_term
doc.add_term("M" + self.class.to_s)
doc.add_term("I" + doc.data)
end
# work out what to index
# 1. Which terms to index? We allow the user to specify particular ones
terms_to_index = []
drop_all_terms = false
if terms and self.xapian_options[:terms]
terms_to_index = self.xapian_options[:terms].dup
if terms.is_a?(String)
terms_to_index.reject!{|term| !terms.include?(term[1])}
if terms_to_index.length == self.xapian_options[:terms].length
drop_all_terms = true
end
else
drop_all_terms = true
end
end
# 2. Texts to index? Currently, it's all or nothing
texts_to_index = []
if texts and self.xapian_options[:texts]
texts_to_index = self.xapian_options[:texts]
end
# 3. Values to index? Currently, it's all or nothing
values_to_index = []
if values and self.xapian_options[:values]
values_to_index = self.xapian_options[:values]
end
# clear any existing data that we might want to replace
if drop_all_terms && texts
# as an optimisation, if we're reindexing all of both, we remove everything
doc.clear_terms
doc.add_term("M" + self.class.to_s)
doc.add_term("I" + doc.data)
else
term_prefixes_to_index = terms_to_index.map {|x| x[1]}
for existing_term in doc.terms
first_letter = existing_term.term[0...1]
if !"MI".include?(first_letter) # it's not one of the reserved value
if first_letter.match("^[A-Z]+") # it's a "value" (rather than indexed text)
if term_prefixes_to_index.include?(first_letter) # it's a value that we've been asked to index
doc.remove_term(existing_term.term)
end
elsif texts
doc.remove_term(existing_term.term) # it's text and we've been asked to reindex it
end
end
end
end
for term in terms_to_index
value = xapian_value(term[0])
if value.kind_of?(Array)
for v in value
doc.add_term(term[1] + v)
end
else
doc.add_term(term[1] + value)
end
end
if values
doc.clear_values
for value in values_to_index
doc.add_value(value[1], xapian_value(value[0], value[3]))
end
end
if texts
ActsAsXapian.term_generator.document = doc
for text in texts_to_index
ActsAsXapian.term_generator.increase_termpos # stop phrases spanning different text fields
# TODO: the "1" here is a weight that could be varied for a boost function
ActsAsXapian.term_generator.index_text(xapian_value(text, nil, true), 1)
end
end
ActsAsXapian.writable_db.replace_document("I" + doc.data, doc)
end
# Delete record from the Xapian database
def xapian_destroy
ActsAsXapian.writable_db.delete_document("I" + self.xapian_document_term)
end
# Used to mark changes needed by batch indexer
def xapian_mark_needs_index
xapian_create_job('update', self.class.base_class.to_s, self.id)
end
def xapian_mark_needs_destroy
xapian_create_job('destroy', self.class.base_class.to_s, self.id)
end
# Allow reindexing to be skipped if a flag is set
def xapian_mark_needs_index_if_reindex
return true if (self.respond_to?(:no_xapian_reindex) && self.no_xapian_reindex == true)
xapian_mark_needs_index
end
def xapian_create_job(action, model, model_id)
begin
ActiveRecord::Base.transaction(:requires_new => true) do
ActsAsXapianJob.delete_all([ "model = ? and model_id = ?", model, model_id])
xapian_before_create_job_hook(action, model, model_id)
ActsAsXapianJob.create!(:model => model,
:model_id => model_id,
:action => action)
end
rescue ActiveRecord::RecordNotUnique => e
# Given the error handling in ActsAsXapian::update_index, we can just fail silently if
# another process has inserted an acts_as_xapian_jobs record for this model.
raise unless (e.message =~ /duplicate key value violates unique constraint "index_acts_as_xapian_jobs_on_model_and_model_id"/)
end
end
# A hook method that can be used in tests to simulate e.g. an external process inserting a record
def xapian_before_create_job_hook(action, model, model_id)
end
end
######################################################################
# Main entry point, add acts_as_xapian to your model.
module ActsMethods
# See top of this file for docs
def acts_as_xapian(options)
# Give error only on queries if bindings not available
if not ActsAsXapian.bindings_available
return
end
include InstanceMethods
cattr_accessor :xapian_options
self.xapian_options = options
ActsAsXapian.init(self.class.to_s, options)
after_save :xapian_mark_needs_index_if_reindex
after_destroy :xapian_mark_needs_destroy
end
end
end
# Reopen ActiveRecord and include the acts_as_xapian method
ActiveRecord::Base.extend ActsAsXapian::ActsMethods
|