pixeltrix-thinking-sphinx 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. data/LICENCE +20 -0
  2. data/README +107 -0
  3. data/lib/thinking_sphinx.rb +144 -0
  4. data/lib/thinking_sphinx/active_record.rb +245 -0
  5. data/lib/thinking_sphinx/active_record/delta.rb +74 -0
  6. data/lib/thinking_sphinx/active_record/has_many_association.rb +29 -0
  7. data/lib/thinking_sphinx/active_record/search.rb +57 -0
  8. data/lib/thinking_sphinx/adapters/abstract_adapter.rb +34 -0
  9. data/lib/thinking_sphinx/adapters/mysql_adapter.rb +53 -0
  10. data/lib/thinking_sphinx/adapters/postgresql_adapter.rb +129 -0
  11. data/lib/thinking_sphinx/association.rb +144 -0
  12. data/lib/thinking_sphinx/attribute.rb +258 -0
  13. data/lib/thinking_sphinx/collection.rb +142 -0
  14. data/lib/thinking_sphinx/configuration.rb +236 -0
  15. data/lib/thinking_sphinx/core/string.rb +22 -0
  16. data/lib/thinking_sphinx/deltas.rb +22 -0
  17. data/lib/thinking_sphinx/deltas/datetime_delta.rb +50 -0
  18. data/lib/thinking_sphinx/deltas/default_delta.rb +65 -0
  19. data/lib/thinking_sphinx/deltas/delayed_delta.rb +25 -0
  20. data/lib/thinking_sphinx/deltas/delayed_delta/delta_job.rb +24 -0
  21. data/lib/thinking_sphinx/deltas/delayed_delta/flag_as_deleted_job.rb +27 -0
  22. data/lib/thinking_sphinx/deltas/delayed_delta/job.rb +26 -0
  23. data/lib/thinking_sphinx/facet.rb +58 -0
  24. data/lib/thinking_sphinx/facet_collection.rb +44 -0
  25. data/lib/thinking_sphinx/field.rb +172 -0
  26. data/lib/thinking_sphinx/index.rb +414 -0
  27. data/lib/thinking_sphinx/index/builder.rb +233 -0
  28. data/lib/thinking_sphinx/index/faux_column.rb +110 -0
  29. data/lib/thinking_sphinx/rails_additions.rb +133 -0
  30. data/lib/thinking_sphinx/search.rb +638 -0
  31. data/lib/thinking_sphinx/tasks.rb +128 -0
  32. data/spec/unit/thinking_sphinx/active_record/delta_spec.rb +136 -0
  33. data/spec/unit/thinking_sphinx/active_record/has_many_association_spec.rb +53 -0
  34. data/spec/unit/thinking_sphinx/active_record/search_spec.rb +107 -0
  35. data/spec/unit/thinking_sphinx/active_record_spec.rb +256 -0
  36. data/spec/unit/thinking_sphinx/association_spec.rb +247 -0
  37. data/spec/unit/thinking_sphinx/attribute_spec.rb +212 -0
  38. data/spec/unit/thinking_sphinx/collection_spec.rb +14 -0
  39. data/spec/unit/thinking_sphinx/configuration_spec.rb +136 -0
  40. data/spec/unit/thinking_sphinx/core/string_spec.rb +9 -0
  41. data/spec/unit/thinking_sphinx/field_spec.rb +145 -0
  42. data/spec/unit/thinking_sphinx/index/builder_spec.rb +5 -0
  43. data/spec/unit/thinking_sphinx/index/faux_column_spec.rb +30 -0
  44. data/spec/unit/thinking_sphinx/index_spec.rb +54 -0
  45. data/spec/unit/thinking_sphinx/search_spec.rb +59 -0
  46. data/spec/unit/thinking_sphinx_spec.rb +129 -0
  47. data/tasks/distribution.rb +48 -0
  48. data/tasks/rails.rake +1 -0
  49. data/tasks/testing.rb +86 -0
  50. data/vendor/after_commit/LICENSE +20 -0
  51. data/vendor/after_commit/README +16 -0
  52. data/vendor/after_commit/Rakefile +22 -0
  53. data/vendor/after_commit/init.rb +5 -0
  54. data/vendor/after_commit/lib/after_commit.rb +42 -0
  55. data/vendor/after_commit/lib/after_commit/active_record.rb +91 -0
  56. data/vendor/after_commit/lib/after_commit/connection_adapters.rb +103 -0
  57. data/vendor/after_commit/test/after_commit_test.rb +53 -0
  58. data/vendor/delayed_job/lib/delayed/job.rb +251 -0
  59. data/vendor/delayed_job/lib/delayed/message_sending.rb +7 -0
  60. data/vendor/delayed_job/lib/delayed/performable_method.rb +55 -0
  61. data/vendor/delayed_job/lib/delayed/worker.rb +54 -0
  62. data/vendor/riddle/lib/riddle.rb +30 -0
  63. data/vendor/riddle/lib/riddle/client.rb +619 -0
  64. data/vendor/riddle/lib/riddle/client/filter.rb +53 -0
  65. data/vendor/riddle/lib/riddle/client/message.rb +65 -0
  66. data/vendor/riddle/lib/riddle/client/response.rb +84 -0
  67. data/vendor/riddle/lib/riddle/configuration.rb +33 -0
  68. data/vendor/riddle/lib/riddle/configuration/distributed_index.rb +48 -0
  69. data/vendor/riddle/lib/riddle/configuration/index.rb +142 -0
  70. data/vendor/riddle/lib/riddle/configuration/indexer.rb +19 -0
  71. data/vendor/riddle/lib/riddle/configuration/remote_index.rb +17 -0
  72. data/vendor/riddle/lib/riddle/configuration/searchd.rb +25 -0
  73. data/vendor/riddle/lib/riddle/configuration/section.rb +37 -0
  74. data/vendor/riddle/lib/riddle/configuration/source.rb +23 -0
  75. data/vendor/riddle/lib/riddle/configuration/sql_source.rb +34 -0
  76. data/vendor/riddle/lib/riddle/configuration/xml_source.rb +28 -0
  77. data/vendor/riddle/lib/riddle/controller.rb +44 -0
  78. metadata +157 -0
@@ -0,0 +1,17 @@
1
+ module Riddle
2
+ class Configuration
3
+ class RemoteIndex
4
+ attr_accessor :address, :port, :name
5
+
6
+ def initialize(address, port, name)
7
+ @address = address
8
+ @port = port
9
+ @name = name
10
+ end
11
+
12
+ def remote
13
+ "#{address}:#{port}"
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,25 @@
1
+ module Riddle
2
+ class Configuration
3
+ class Searchd < Riddle::Configuration::Section
4
+ self.settings = [:address, :port, :log, :query_log, :read_timeout,
5
+ :max_children, :pid_file, :max_matches, :seamless_rotate,
6
+ :preopen_indexes, :unlink_old]
7
+
8
+ attr_accessor *self.settings
9
+
10
+ def render
11
+ raise ConfigurationError unless valid?
12
+
13
+ (
14
+ ["searchd", "{"] +
15
+ settings_body +
16
+ ["}", ""]
17
+ ).join("\n")
18
+ end
19
+
20
+ def valid?
21
+ !( @port.nil? || @pid_file.nil? )
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,37 @@
1
+ module Riddle
2
+ class Configuration
3
+ class Section
4
+ class << self
5
+ attr_accessor :settings
6
+ end
7
+
8
+ settings = []
9
+
10
+ def valid?
11
+ true
12
+ end
13
+
14
+ private
15
+
16
+ def settings_body
17
+ self.class.settings.select { |setting|
18
+ !send(setting).nil?
19
+ }.collect { |setting|
20
+ if send(setting) == ""
21
+ conf = " #{setting} = "
22
+ else
23
+ conf = setting_to_array(setting).collect { |set|
24
+ " #{setting} = #{set}"
25
+ }
26
+ end
27
+ conf.length == 0 ? nil : conf
28
+ }.flatten.compact
29
+ end
30
+
31
+ def setting_to_array(setting)
32
+ value = send(setting)
33
+ value.is_a?(Array) ? value : [value]
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,23 @@
1
+ module Riddle
2
+ class Configuration
3
+ class Source < Riddle::Configuration::Section
4
+ attr_accessor :name, :parent, :type
5
+
6
+ def render
7
+ raise ConfigurationError unless valid?
8
+
9
+ inherited_name = "#{name}"
10
+ inherited_name << " : #{parent}" if parent
11
+ (
12
+ ["source #{inherited_name}", "{"] +
13
+ settings_body +
14
+ ["}", ""]
15
+ ).join("\n")
16
+ end
17
+
18
+ def valid?
19
+ !( @name.nil? || @type.nil? )
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,34 @@
1
+ module Riddle
2
+ class Configuration
3
+ class SQLSource < Riddle::Configuration::Source
4
+ self.settings = [:type, :sql_host, :sql_user, :sql_pass, :sql_db,
5
+ :sql_port, :sql_sock, :mysql_connect_flags, :sql_query_pre, :sql_query,
6
+ :sql_query_range, :sql_range_step, :sql_attr_uint, :sql_attr_bool,
7
+ :sql_attr_timestamp, :sql_attr_str2ordinal, :sql_attr_float,
8
+ :sql_attr_multi, :sql_query_post, :sql_query_post_index,
9
+ :sql_ranged_throttle, :sql_query_info]
10
+
11
+ attr_accessor *self.settings
12
+
13
+ def initialize(name, type)
14
+ @name = name
15
+ @type = type
16
+
17
+ @sql_query_pre = []
18
+ @sql_attr_uint = []
19
+ @sql_attr_bool = []
20
+ @sql_attr_timestamp = []
21
+ @sql_attr_str2ordinal = []
22
+ @sql_attr_float = []
23
+ @sql_attr_multi = []
24
+ @sql_query_post = []
25
+ @sql_query_post_index = []
26
+ end
27
+
28
+ def valid?
29
+ super && (!( @sql_host.nil? || @sql_user.nil? || @sql_db.nil? ||
30
+ @sql_query.nil? ) || !@parent.nil?)
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,28 @@
1
+ module Riddle
2
+ class Configuration
3
+ class XMLSource < Riddle::Configuration::Source
4
+ self.settings = [:type, :xmlpipe_command, :xmlpipe_field,
5
+ :xmlpipe_attr_uint, :xmlpipe_attr_bool, :xmlpipe_attr_timestamp,
6
+ :xmlpipe_attr_str2ordinal, :xmlpipe_attr_float, :xmlpipe_attr_multi]
7
+
8
+ attr_accessor *self.settings
9
+
10
+ def initialize(name, type)
11
+ @name = name
12
+ @type = type
13
+
14
+ @xmlpipe_field = []
15
+ @xmlpipe_attr_uint = []
16
+ @xmlpipe_attr_bool = []
17
+ @xmlpipe_attr_timestamp = []
18
+ @xmlpipe_attr_str2ordinal = []
19
+ @xmlpipe_attr_float = []
20
+ @xmlpipe_attr_multi = []
21
+ end
22
+
23
+ def valid?
24
+ super && ( !@xmlpipe_command.nil? || !parent.nil? )
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,44 @@
1
+ module Riddle
2
+ class Controller
3
+ def initialize(configuration, path)
4
+ @configuration = configuration
5
+ @path = path
6
+ end
7
+
8
+ def index
9
+ cmd = "indexer --config #{@path} --all"
10
+ cmd << " --rotate" if running?
11
+ `#{cmd}`
12
+ end
13
+
14
+ def start
15
+ return if running?
16
+
17
+ cmd = "searchd --pidfile --config #{@path}"
18
+ `#{cmd}`
19
+
20
+ sleep(1)
21
+
22
+ unless running?
23
+ puts "Failed to start searchd daemon. Check #{@configuration.searchd.log}."
24
+ end
25
+ end
26
+
27
+ def stop
28
+ return unless running?
29
+ `kill #{pid}`
30
+ end
31
+
32
+ def pid
33
+ if File.exists?("#{@configuration.searchd.pid_file}")
34
+ `cat #{@configuration.searchd.pid_file}`[/\d+/]
35
+ else
36
+ nil
37
+ end
38
+ end
39
+
40
+ def running?
41
+ pid && `ps #{pid} | wc -l`.to_i > 1
42
+ end
43
+ end
44
+ end
metadata ADDED
@@ -0,0 +1,157 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pixeltrix-thinking-sphinx
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.5
5
+ platform: ruby
6
+ authors:
7
+ - Pat Allan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-01-17 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: A concise and easy-to-use Ruby library that connects ActiveRecord to the Sphinx search daemon, managing configuration, indexing and searching.
17
+ email: pat@freelancing-gods.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - lib/thinking_sphinx/active_record/delta.rb
26
+ - lib/thinking_sphinx/active_record/has_many_association.rb
27
+ - lib/thinking_sphinx/active_record/search.rb
28
+ - lib/thinking_sphinx/active_record.rb
29
+ - lib/thinking_sphinx/adapters/abstract_adapter.rb
30
+ - lib/thinking_sphinx/adapters/mysql_adapter.rb
31
+ - lib/thinking_sphinx/adapters/postgresql_adapter.rb
32
+ - lib/thinking_sphinx/association.rb
33
+ - lib/thinking_sphinx/attribute.rb
34
+ - lib/thinking_sphinx/collection.rb
35
+ - lib/thinking_sphinx/configuration.rb
36
+ - lib/thinking_sphinx/core/string.rb
37
+ - lib/thinking_sphinx/deltas/datetime_delta.rb
38
+ - lib/thinking_sphinx/deltas/default_delta.rb
39
+ - lib/thinking_sphinx/deltas/delayed_delta/delta_job.rb
40
+ - lib/thinking_sphinx/deltas/delayed_delta/flag_as_deleted_job.rb
41
+ - lib/thinking_sphinx/deltas/delayed_delta/job.rb
42
+ - lib/thinking_sphinx/deltas/delayed_delta.rb
43
+ - lib/thinking_sphinx/deltas.rb
44
+ - lib/thinking_sphinx/facet.rb
45
+ - lib/thinking_sphinx/facet_collection.rb
46
+ - lib/thinking_sphinx/field.rb
47
+ - lib/thinking_sphinx/index/builder.rb
48
+ - lib/thinking_sphinx/index/faux_column.rb
49
+ - lib/thinking_sphinx/index.rb
50
+ - lib/thinking_sphinx/rails_additions.rb
51
+ - lib/thinking_sphinx/search.rb
52
+ - lib/thinking_sphinx/tasks.rb
53
+ - lib/thinking_sphinx.rb
54
+ - LICENCE
55
+ - README
56
+ - tasks/distribution.rb
57
+ - tasks/rails.rake
58
+ - tasks/testing.rb
59
+ - vendor/after_commit
60
+ - vendor/after_commit/init.rb
61
+ - vendor/after_commit/lib
62
+ - vendor/after_commit/lib/after_commit
63
+ - vendor/after_commit/lib/after_commit/active_record.rb
64
+ - vendor/after_commit/lib/after_commit/connection_adapters.rb
65
+ - vendor/after_commit/lib/after_commit.rb
66
+ - vendor/after_commit/LICENSE
67
+ - vendor/after_commit/Rakefile
68
+ - vendor/after_commit/README
69
+ - vendor/after_commit/test
70
+ - vendor/after_commit/test/after_commit_test.rb
71
+ - vendor/delayed_job
72
+ - vendor/delayed_job/lib
73
+ - vendor/delayed_job/lib/delayed
74
+ - vendor/delayed_job/lib/delayed/job.rb
75
+ - vendor/delayed_job/lib/delayed/message_sending.rb
76
+ - vendor/delayed_job/lib/delayed/performable_method.rb
77
+ - vendor/delayed_job/lib/delayed/worker.rb
78
+ - vendor/riddle
79
+ - vendor/riddle/lib
80
+ - vendor/riddle/lib/riddle
81
+ - vendor/riddle/lib/riddle/client
82
+ - vendor/riddle/lib/riddle/client/filter.rb
83
+ - vendor/riddle/lib/riddle/client/message.rb
84
+ - vendor/riddle/lib/riddle/client/response.rb
85
+ - vendor/riddle/lib/riddle/client.rb
86
+ - vendor/riddle/lib/riddle/configuration
87
+ - vendor/riddle/lib/riddle/configuration/distributed_index.rb
88
+ - vendor/riddle/lib/riddle/configuration/index.rb
89
+ - vendor/riddle/lib/riddle/configuration/indexer.rb
90
+ - vendor/riddle/lib/riddle/configuration/remote_index.rb
91
+ - vendor/riddle/lib/riddle/configuration/searchd.rb
92
+ - vendor/riddle/lib/riddle/configuration/section.rb
93
+ - vendor/riddle/lib/riddle/configuration/source.rb
94
+ - vendor/riddle/lib/riddle/configuration/sql_source.rb
95
+ - vendor/riddle/lib/riddle/configuration/xml_source.rb
96
+ - vendor/riddle/lib/riddle/configuration.rb
97
+ - vendor/riddle/lib/riddle/controller.rb
98
+ - vendor/riddle/lib/riddle.rb
99
+ - spec/unit/thinking_sphinx/active_record/delta_spec.rb
100
+ - spec/unit/thinking_sphinx/active_record/has_many_association_spec.rb
101
+ - spec/unit/thinking_sphinx/active_record/search_spec.rb
102
+ - spec/unit/thinking_sphinx/active_record_spec.rb
103
+ - spec/unit/thinking_sphinx/association_spec.rb
104
+ - spec/unit/thinking_sphinx/attribute_spec.rb
105
+ - spec/unit/thinking_sphinx/collection_spec.rb
106
+ - spec/unit/thinking_sphinx/configuration_spec.rb
107
+ - spec/unit/thinking_sphinx/core/string_spec.rb
108
+ - spec/unit/thinking_sphinx/field_spec.rb
109
+ - spec/unit/thinking_sphinx/index/builder_spec.rb
110
+ - spec/unit/thinking_sphinx/index/faux_column_spec.rb
111
+ - spec/unit/thinking_sphinx/index_spec.rb
112
+ - spec/unit/thinking_sphinx/search_spec.rb
113
+ - spec/unit/thinking_sphinx_spec.rb
114
+ has_rdoc: true
115
+ homepage: http://ts.freelancing-gods.com
116
+ post_install_message:
117
+ rdoc_options:
118
+ - --title
119
+ - Thinking Sphinx -- Rails/Merb Sphinx Plugin
120
+ - --line-numbers
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: "0"
128
+ version:
129
+ required_rubygems_version: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ version: "0"
134
+ version:
135
+ requirements: []
136
+
137
+ rubyforge_project: thinking-sphinx
138
+ rubygems_version: 1.2.0
139
+ signing_key:
140
+ specification_version: 2
141
+ summary: A concise and easy-to-use Ruby library that connects ActiveRecord to the Sphinx search daemon, managing configuration, indexing and searching.
142
+ test_files:
143
+ - spec/unit/thinking_sphinx/active_record/delta_spec.rb
144
+ - spec/unit/thinking_sphinx/active_record/has_many_association_spec.rb
145
+ - spec/unit/thinking_sphinx/active_record/search_spec.rb
146
+ - spec/unit/thinking_sphinx/active_record_spec.rb
147
+ - spec/unit/thinking_sphinx/association_spec.rb
148
+ - spec/unit/thinking_sphinx/attribute_spec.rb
149
+ - spec/unit/thinking_sphinx/collection_spec.rb
150
+ - spec/unit/thinking_sphinx/configuration_spec.rb
151
+ - spec/unit/thinking_sphinx/core/string_spec.rb
152
+ - spec/unit/thinking_sphinx/field_spec.rb
153
+ - spec/unit/thinking_sphinx/index/builder_spec.rb
154
+ - spec/unit/thinking_sphinx/index/faux_column_spec.rb
155
+ - spec/unit/thinking_sphinx/index_spec.rb
156
+ - spec/unit/thinking_sphinx/search_spec.rb
157
+ - spec/unit/thinking_sphinx_spec.rb