aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-06 14:11:26 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-06 14:11:26 +0000
commitd2fefbe908db879745df854787653113a6bcbfac (patch)
treedd4581573e09e94c661a7183f31abdb024a311c6 /activerecord/lib/active_record
parentfd9967bca2aa32dd4173881c4d8c55f5ebabe97e (diff)
downloadrails-d2fefbe908db879745df854787653113a6bcbfac.tar.gz
rails-d2fefbe908db879745df854787653113a6bcbfac.tar.bz2
rails-d2fefbe908db879745df854787653113a6bcbfac.zip
Added MultiparameterAssignmentErrors and AttributeAssignmentError exceptions #777 [demetrius]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@853 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record')
-rwxr-xr-xactiverecord/lib/active_record/base.rb32
1 files changed, 30 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 1111296306..2725e3c7f5 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -26,6 +26,22 @@ module ActiveRecord #:nodoc:
class StaleObjectError < ActiveRecordError #:nodoc:
end
+ class AttributeAssignmentError < ActiveRecordError #:nodoc:
+ attr_reader :exception, :attribute
+ def initialize(message, exception, attribute)
+ @exception = exception
+ @attribute = attribute
+ @message = message
+ end
+ end
+
+ class MultiparameterAssignmentErrors < ActiveRecordError #:nodoc:
+ attr_reader :errors
+ def initialize(errors)
+ @errors = errors
+ end
+ end
+
# Active Record objects doesn't specify their attributes directly, but rather infer them from the table definition with
# which they're linked. Adding, removing, and changing attributes and their type is done directly in the database. Any change
# is instantly reflected in the Active Record objects. The mapping that binds a given Active Record class to a certain
@@ -184,7 +200,11 @@ module ActiveRecord #:nodoc:
# Either the row with the given ID doesn't exist or the row didn't meet the additional restrictions.
# * +StatementInvalid+ -- the database server rejected the SQL statement. The precise error is added in the message.
# Either the record with the given ID doesn't exist or the record didn't meet the additional restrictions.
- #
+ # * +MultiparameterAssignmentErrors+ -- collection of errors that occurred during a mass assignment using the
+ # +attributes=+ method. The +errors+ property of this exception contains an array of +AttributeAssignmentError+
+ # objects that should be inspected to determine which attributes triggered the errors.
+ # * +AttributeAssignmentError+ -- an error occurred while doing a mass assignment through the +attributes=+ method.
+ # You can inspect the +attribute+ property of the exception object to determine which attribute triggered the error.
# *Note*: The attributes listed are class-level attributes (accessible from both the class and instance level).
# So it's possible to assign a logger to the class through Base.logger= which will then be used by all
# instances in the current object space.
@@ -1251,14 +1271,22 @@ module ActiveRecord #:nodoc:
# Includes an ugly hack for Time.local instead of Time.new because the latter is reserved by Time itself.
def execute_callstack_for_multiparameter_attributes(callstack)
+ errors = []
callstack.each do |name, values|
klass = (self.class.reflect_on_aggregation(name) || column_for_attribute(name)).klass
if values.empty?
send(name + "=", nil)
else
- send(name + "=", Time == klass ? klass.local(*values) : klass.new(*values))
+ begin
+ send(name + "=", Time == klass ? klass.local(*values) : klass.new(*values))
+ rescue => ex
+ errors << AttributeAssignmentError.new("error on assignment #{values.inspect} to #{name}", ex, name)
+ end
end
end
+ unless errors.empty?
+ raise MultiparameterAssignmentErrors.new(errors), "#{errors.size} error(s) on assignment of multiparameter attributes"
+ end
end
def extract_callstack_for_multiparameter_attributes(pairs)