nobrainer 0.13.0 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/lib/no_brainer/config.rb +6 -4
  3. data/lib/no_brainer/connection.rb +14 -12
  4. data/lib/no_brainer/criteria/core.rb +1 -6
  5. data/lib/no_brainer/criteria/delete.rb +2 -2
  6. data/lib/no_brainer/criteria/order_by.rb +33 -10
  7. data/lib/no_brainer/criteria/preload.rb +0 -5
  8. data/lib/no_brainer/criteria/update.rb +2 -2
  9. data/lib/no_brainer/criteria/where.rb +34 -7
  10. data/lib/no_brainer/decorated_symbol.rb +2 -1
  11. data/lib/no_brainer/document/association/belongs_to.rb +19 -11
  12. data/lib/no_brainer/document/association/core.rb +1 -1
  13. data/lib/no_brainer/document/association/has_many.rb +10 -4
  14. data/lib/no_brainer/document/attributes.rb +29 -4
  15. data/lib/no_brainer/document/callbacks.rb +3 -2
  16. data/lib/no_brainer/document/core.rb +14 -5
  17. data/lib/no_brainer/document/criteria.rb +9 -9
  18. data/lib/no_brainer/document/dirty.rb +11 -5
  19. data/lib/no_brainer/document/dynamic_attributes.rb +4 -0
  20. data/lib/no_brainer/document/id.rb +49 -4
  21. data/lib/no_brainer/document/index.rb +12 -3
  22. data/lib/no_brainer/document/persistance.rb +5 -9
  23. data/lib/no_brainer/document/readonly.rb +7 -0
  24. data/lib/no_brainer/document/serialization.rb +4 -0
  25. data/lib/no_brainer/document/types.rb +62 -13
  26. data/lib/no_brainer/document/uniqueness.rb +99 -0
  27. data/lib/no_brainer/document/validation.rb +8 -24
  28. data/lib/no_brainer/document.rb +3 -1
  29. data/lib/no_brainer/error.rb +9 -9
  30. data/lib/no_brainer/index_manager.rb +4 -2
  31. data/lib/no_brainer/loader.rb +1 -1
  32. data/lib/no_brainer/query_runner/logger.rb +31 -19
  33. data/lib/no_brainer/query_runner/missing_index.rb +15 -3
  34. data/lib/no_brainer/query_runner/{connection.rb → reconnect.rb} +16 -5
  35. data/lib/no_brainer/query_runner/table_on_demand.rb +14 -25
  36. data/lib/no_brainer/query_runner/write_error.rb +5 -8
  37. data/lib/no_brainer/query_runner.rb +2 -2
  38. data/lib/no_brainer/rql.rb +25 -0
  39. data/lib/nobrainer.rb +5 -6
  40. metadata +70 -69
  41. data/lib/no_brainer/util.rb +0 -23
@@ -3,8 +3,8 @@ class NoBrainer::QueryRunner::TableOnDemand < NoBrainer::QueryRunner::Middleware
3
3
  @runner.call(env)
4
4
  rescue RuntimeError => e
5
5
  if NoBrainer::Config.auto_create_tables &&
6
- e.message =~ /^Table `(.+)` does not exist\.$/
7
- auto_create_table(env, $1)
6
+ e.message =~ /^Table `(.+)\.(.+)` does not exist\.$/
7
+ auto_create_table(env, $1, $2)
8
8
  retry
9
9
  end
10
10
  raise
@@ -12,33 +12,22 @@ class NoBrainer::QueryRunner::TableOnDemand < NoBrainer::QueryRunner::Middleware
12
12
 
13
13
  private
14
14
 
15
- def auto_create_table(env, table_name)
16
- if env[:auto_create_table] == table_name
17
- raise "Auto table creation is not working with #{table_name}"
15
+ def auto_create_table(env, database_name, table_name)
16
+ klass = NoBrainer::Document.all.select { |m| m.table_name == table_name }.first
17
+ if klass.nil?
18
+ raise "Auto table creation is not working for `#{database_name}.#{table_name}` -- Can't find the corresponding model."
18
19
  end
19
- env[:auto_create_table] = table_name
20
20
 
21
- # FIXME This stinks.
22
- database_names = find_db_names(env[:query])
23
- case database_names.size
24
- when 0 then NoBrainer.table_create(table_name)
25
- when 1 then NoBrainer.with_database(database_names.first) { NoBrainer.table_create(table_name) }
26
- else raise "Ambiguous database name for creation on demand: #{database_names}"
21
+ if env[:auto_create_table] == [database_name, table_name]
22
+ raise "Auto table creation is not working for `#{database_name}.#{table_name}`"
23
+ end
24
+ env[:auto_create_table] = [database_name, table_name]
25
+
26
+ NoBrainer.with_database(database_name) do
27
+ NoBrainer.table_create(table_name, :primary_key => klass.pk_name)
27
28
  end
28
29
  rescue RuntimeError => e
29
30
  # We might have raced with another table create
30
- raise unless e.message =~ /Table `#{table_name}` already exists/
31
- end
32
-
33
- def find_db_names(terms)
34
- terms = terms.body.args if terms.is_a?(RethinkDB::RQL)
35
- terms.map do |term|
36
- next unless term.is_a?(Term)
37
- if term.type == Term::TermType::DB
38
- term.args.first.datum.r_str
39
- else
40
- find_db_names(term.args)
41
- end
42
- end.flatten.uniq
31
+ raise unless e.message =~ /Table `#{database_name}\.#{table_name}` already exists/
43
32
  end
44
33
  end
@@ -1,13 +1,10 @@
1
1
  class NoBrainer::QueryRunner::WriteError < NoBrainer::QueryRunner::Middleware
2
2
  def call(env)
3
- write_query = NoBrainer::Util.is_write_query?(env[:query])
3
+ write_query = NoBrainer::RQL.is_write_query?(env[:query])
4
4
  @runner.call(env).tap do |result|
5
- # TODO Fix rethinkdb driver: Their classes Term, Query, Response are
6
- # not scoped to the RethinkDB module! (that would prevent a user from
7
- # creating a Response model for example).
8
-
9
- if write_query && (result['errors'].to_i != 0 || result['skipped'].to_i != 0)
10
- raise_write_error(env, result['first_error'])
5
+ if write_query && (result['errors'].to_i != 0)
6
+ error_msg = result['first_error']
7
+ raise_write_error(env, error_msg)
11
8
  end
12
9
  end
13
10
  rescue RethinkDB::RqlRuntimeError => e
@@ -23,6 +20,6 @@ class NoBrainer::QueryRunner::WriteError < NoBrainer::QueryRunner::Middleware
23
20
  def raise_write_error(env, error_msg)
24
21
  error_msg ||= "Unknown error"
25
22
  error_msg += "\nQuery was: #{env[:query].inspect[0..1000]}"
26
- raise NoBrainer::Error::DocumentNotSaved, error_msg
23
+ raise NoBrainer::Error::DocumentNotPersisted, error_msg
27
24
  end
28
25
  end
@@ -11,7 +11,7 @@ module NoBrainer::QueryRunner
11
11
  end
12
12
 
13
13
  autoload :Driver, :DatabaseOnDemand, :TableOnDemand, :WriteError,
14
- :Connection, :Selection, :RunOptions, :Logger, :MissingIndex
14
+ :Reconnect, :Selection, :RunOptions, :Logger, :MissingIndex
15
15
 
16
16
  class << self
17
17
  attr_accessor :stack
@@ -27,12 +27,12 @@ module NoBrainer::QueryRunner
27
27
  # thread-safe, since require() is ran with a mutex.
28
28
  self.stack = ::Middleware::Builder.new do
29
29
  use RunOptions
30
- use Connection
31
30
  use WriteError
32
31
  use MissingIndex
33
32
  use DatabaseOnDemand
34
33
  use TableOnDemand
35
34
  use Logger
35
+ use Reconnect
36
36
  use Driver
37
37
  end
38
38
  end
@@ -0,0 +1,25 @@
1
+ module NoBrainer::RQL
2
+ include RethinkDB::Term::TermType
3
+ extend self
4
+
5
+ def is_write_query?(rql_query)
6
+ type_of(rql_query) == :write
7
+ end
8
+
9
+ def type_of(rql_query)
10
+ case rql_query.body.first
11
+ when UPDATE, DELETE, REPLACE, INSERT
12
+ :write
13
+ when DB_CREATE,DB_DROP, DB_LIST, TABLE_CREATE, TABLE_DROP, TABLE_LIST, SYNC,
14
+ INDEX_CREATE, INDEX_DROP, INDEX_LIST, INDEX_STATUS, INDEX_WAIT
15
+ :management
16
+ else
17
+ # XXX Not sure if that's correct, but we'll be happy for logging colors.
18
+ :read
19
+ end
20
+ end
21
+
22
+ def is_table?(rql)
23
+ rql.body.first == TABLE
24
+ end
25
+ end
data/lib/nobrainer.rb CHANGED
@@ -7,19 +7,18 @@ module NoBrainer
7
7
  require 'no_brainer/autoload'
8
8
  extend NoBrainer::Autoload
9
9
 
10
- # We eager load things that could be loaded for the first time during the web request
10
+ # We eager load things that could be loaded when handling the first web request.
11
+ # Code that is loaded through the DSL of NoBrainer should not be eager loaded.
11
12
  autoload :Document, :IndexManager, :Loader, :Fork, :DecoratedSymbol
12
- eager_autoload :Config, :Connection, :Error, :QueryRunner, :Criteria, :Util
13
+ eager_autoload :Config, :Connection, :Error, :QueryRunner, :Criteria, :RQL
13
14
 
14
15
  class << self
15
- # Note: we always access the connection explicitly, so that in the future,
16
- # we can refactor to return a connection depending on the context.
17
- # Note that a connection is tied to a database in NoBrainer.
16
+ # A connection is tied to a database.
18
17
  def connection
19
18
  @connection ||= begin
20
19
  url = NoBrainer::Config.rethinkdb_url
21
20
  raise "Please specify a database connection to RethinkDB" unless url
22
- Connection.new(url).tap { |c| c.connect }
21
+ Connection.new(url)
23
22
  end
24
23
  end
25
24
 
metadata CHANGED
@@ -1,69 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nobrainer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas Viennot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-12 00:00:00.000000000 Z
11
+ date: 2014-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rethinkdb
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 1.11.0.1
19
+ version: 1.13.0.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 1.11.0.1
26
+ version: 1.13.0.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: activesupport
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 4.0.0
33
+ version: 4.1.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 4.0.0
40
+ version: 4.1.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: activemodel
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: 4.0.0
47
+ version: 4.1.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: 4.0.0
54
+ version: 4.1.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: middleware
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
61
  version: 0.1.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: 0.1.0
69
69
  description: ORM for RethinkDB
@@ -73,74 +73,75 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
+ - LICENSE
77
+ - README.md
78
+ - lib/no_brainer/autoload.rb
79
+ - lib/no_brainer/config.rb
80
+ - lib/no_brainer/connection.rb
81
+ - lib/no_brainer/criteria.rb
82
+ - lib/no_brainer/criteria/after_find.rb
83
+ - lib/no_brainer/criteria/cache.rb
84
+ - lib/no_brainer/criteria/core.rb
85
+ - lib/no_brainer/criteria/count.rb
86
+ - lib/no_brainer/criteria/delete.rb
87
+ - lib/no_brainer/criteria/enumerable.rb
88
+ - lib/no_brainer/criteria/first.rb
89
+ - lib/no_brainer/criteria/limit.rb
90
+ - lib/no_brainer/criteria/order_by.rb
91
+ - lib/no_brainer/criteria/preload.rb
92
+ - lib/no_brainer/criteria/raw.rb
93
+ - lib/no_brainer/criteria/scope.rb
94
+ - lib/no_brainer/criteria/update.rb
95
+ - lib/no_brainer/criteria/where.rb
96
+ - lib/no_brainer/decorated_symbol.rb
97
+ - lib/no_brainer/document.rb
98
+ - lib/no_brainer/document/association.rb
99
+ - lib/no_brainer/document/association/belongs_to.rb
100
+ - lib/no_brainer/document/association/core.rb
101
+ - lib/no_brainer/document/association/eager_loader.rb
102
+ - lib/no_brainer/document/association/has_many.rb
103
+ - lib/no_brainer/document/association/has_many_through.rb
76
104
  - lib/no_brainer/document/association/has_one.rb
77
105
  - lib/no_brainer/document/association/has_one_through.rb
78
- - lib/no_brainer/document/association/has_many_through.rb
79
- - lib/no_brainer/document/association/has_many.rb
80
- - lib/no_brainer/document/association/eager_loader.rb
81
- - lib/no_brainer/document/association/core.rb
82
- - lib/no_brainer/document/association/belongs_to.rb
83
- - lib/no_brainer/document/polymorphic.rb
84
- - lib/no_brainer/document/store_in.rb
85
- - lib/no_brainer/document/core.rb
86
- - lib/no_brainer/document/serialization.rb
87
- - lib/no_brainer/document/association.rb
106
+ - lib/no_brainer/document/attributes.rb
88
107
  - lib/no_brainer/document/callbacks.rb
89
- - lib/no_brainer/document/dynamic_attributes.rb
90
- - lib/no_brainer/document/timestamps.rb
108
+ - lib/no_brainer/document/core.rb
109
+ - lib/no_brainer/document/criteria.rb
91
110
  - lib/no_brainer/document/dirty.rb
92
- - lib/no_brainer/document/index.rb
93
- - lib/no_brainer/document/validation.rb
94
- - lib/no_brainer/document/attributes.rb
111
+ - lib/no_brainer/document/dynamic_attributes.rb
95
112
  - lib/no_brainer/document/id.rb
113
+ - lib/no_brainer/document/index.rb
96
114
  - lib/no_brainer/document/injection_layer.rb
97
115
  - lib/no_brainer/document/persistance.rb
116
+ - lib/no_brainer/document/polymorphic.rb
98
117
  - lib/no_brainer/document/readonly.rb
118
+ - lib/no_brainer/document/serialization.rb
119
+ - lib/no_brainer/document/store_in.rb
120
+ - lib/no_brainer/document/timestamps.rb
99
121
  - lib/no_brainer/document/types.rb
100
- - lib/no_brainer/document/criteria.rb
122
+ - lib/no_brainer/document/uniqueness.rb
123
+ - lib/no_brainer/document/validation.rb
124
+ - lib/no_brainer/error.rb
125
+ - lib/no_brainer/fork.rb
126
+ - lib/no_brainer/index_manager.rb
127
+ - lib/no_brainer/loader.rb
128
+ - lib/no_brainer/locale/en.yml
129
+ - lib/no_brainer/query_runner.rb
101
130
  - lib/no_brainer/query_runner/database_on_demand.rb
102
- - lib/no_brainer/query_runner/table_on_demand.rb
103
- - lib/no_brainer/query_runner/write_error.rb
104
131
  - lib/no_brainer/query_runner/driver.rb
105
132
  - lib/no_brainer/query_runner/logger.rb
106
133
  - lib/no_brainer/query_runner/missing_index.rb
134
+ - lib/no_brainer/query_runner/reconnect.rb
107
135
  - lib/no_brainer/query_runner/run_options.rb
108
- - lib/no_brainer/query_runner/connection.rb
109
- - lib/no_brainer/railtie/database.rake
110
- - lib/no_brainer/index_manager.rb
111
- - lib/no_brainer/loader.rb
112
- - lib/no_brainer/locale/en.yml
113
- - lib/no_brainer/fork.rb
114
- - lib/no_brainer/connection.rb
115
- - lib/no_brainer/query_runner.rb
116
- - lib/no_brainer/util.rb
117
- - lib/no_brainer/decorated_symbol.rb
118
- - lib/no_brainer/criteria/scope.rb
119
- - lib/no_brainer/criteria/raw.rb
120
- - lib/no_brainer/criteria/preload.rb
121
- - lib/no_brainer/criteria/order_by.rb
122
- - lib/no_brainer/criteria/limit.rb
123
- - lib/no_brainer/criteria/first.rb
124
- - lib/no_brainer/criteria/enumerable.rb
125
- - lib/no_brainer/criteria/count.rb
126
- - lib/no_brainer/criteria/cache.rb
127
- - lib/no_brainer/criteria/after_find.rb
128
- - lib/no_brainer/criteria/where.rb
129
- - lib/no_brainer/criteria/update.rb
130
- - lib/no_brainer/criteria/delete.rb
131
- - lib/no_brainer/criteria/core.rb
136
+ - lib/no_brainer/query_runner/table_on_demand.rb
137
+ - lib/no_brainer/query_runner/write_error.rb
132
138
  - lib/no_brainer/railtie.rb
133
- - lib/no_brainer/config.rb
134
- - lib/no_brainer/document.rb
135
- - lib/no_brainer/criteria.rb
136
- - lib/no_brainer/error.rb
137
- - lib/no_brainer/autoload.rb
139
+ - lib/no_brainer/railtie/database.rake
140
+ - lib/no_brainer/rql.rb
141
+ - lib/nobrainer.rb
138
142
  - lib/rails/generators/nobrainer.rb
139
143
  - lib/rails/generators/nobrainer/model/model_generator.rb
140
144
  - lib/rails/generators/nobrainer/model/templates/model.rb.tt
141
- - lib/nobrainer.rb
142
- - README.md
143
- - LICENSE
144
145
  homepage: http://nobrainer.io
145
146
  licenses:
146
147
  - LGPLv3
@@ -151,17 +152,17 @@ require_paths:
151
152
  - lib
152
153
  required_ruby_version: !ruby/object:Gem::Requirement
153
154
  requirements:
154
- - - '>='
155
+ - - ">="
155
156
  - !ruby/object:Gem::Version
156
157
  version: 1.9.0
157
158
  required_rubygems_version: !ruby/object:Gem::Requirement
158
159
  requirements:
159
- - - '>='
160
+ - - ">="
160
161
  - !ruby/object:Gem::Version
161
162
  version: '0'
162
163
  requirements: []
163
164
  rubyforge_project:
164
- rubygems_version: 2.0.8
165
+ rubygems_version: 2.2.2
165
166
  signing_key:
166
167
  specification_version: 4
167
168
  summary: ORM for RethinkDB
@@ -1,23 +0,0 @@
1
- module NoBrainer::Util
2
- def self.is_write_query?(rql_query)
3
- rql_type(rql_query) == :write
4
- end
5
-
6
- def self.rql_type(rql_query)
7
- case rql_query.body.type
8
- when Term::TermType::UPDATE, Term::TermType::DELETE,
9
- Term::TermType::REPLACE, Term::TermType::INSERT
10
- :write
11
- when Term::TermType::DB_CREATE, Term::TermType::DB_DROP,
12
- Term::TermType::DB_LIST, Term::TermType::TABLE_CREATE,
13
- Term::TermType::TABLE_DROP, Term::TermType::TABLE_LIST,
14
- Term::TermType::SYNC, Term::TermType::INDEX_CREATE,
15
- Term::TermType::INDEX_DROP, Term::TermType::INDEX_LIST,
16
- Term::TermType::INDEX_STATUS, Term::TermType::INDEX_WAIT
17
- :management
18
- else
19
- # XXX Not sure if that's correct, but we'll be happy for logging colors.
20
- :read
21
- end
22
- end
23
- end