aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/notifications.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-01-17 11:17:42 +0100
committerJosé Valim <jose.valim@gmail.com>2010-01-17 11:29:51 +0100
commit0334f9f6cfa4c4c746de7e19250a13366b616c55 (patch)
tree9e2ff5d7efac90c26f3256d26d0789c14424ab7e /actionpack/lib/action_dispatch/middleware/notifications.rb
parentafd0c06dfa8d3e04e85f9f0ea65c9beb376cb79f (diff)
downloadrails-0334f9f6cfa4c4c746de7e19250a13366b616c55.tar.gz
rails-0334f9f6cfa4c4c746de7e19250a13366b616c55.tar.bz2
rails-0334f9f6cfa4c4c746de7e19250a13366b616c55.zip
Add ActionDispatch::Notifications middleware.
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware/notifications.rb')
-rw-r--r--actionpack/lib/action_dispatch/middleware/notifications.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/notifications.rb b/actionpack/lib/action_dispatch/middleware/notifications.rb
new file mode 100644
index 0000000000..01d2cbb435
--- /dev/null
+++ b/actionpack/lib/action_dispatch/middleware/notifications.rb
@@ -0,0 +1,24 @@
+module ActionDispatch
+ # Provide notifications in the middleware stack. Notice that for the before_dispatch
+ # and after_dispatch notifications, we just send the original env, so we don't pile
+ # up large env hashes in the queue. However, in exception cases, the whole env hash
+ # is actually useful, so we send it all.
+ class Notifications
+ def initialize(app)
+ @app = app
+ end
+
+ def call(stack_env)
+ env = stack_env.dup
+ ActiveSupport::Notifications.instrument("action_dispatch.before_dispatch", :env => env)
+
+ ActiveSupport::Notifications.instrument!("action_dispatch.after_dispatch", :env => env) do
+ @app.call(stack_env)
+ end
+ rescue Exception => exception
+ ActiveSupport::Notifications.instrument('action_dispatch.exception',
+ :env => stack_env, :exception => exception)
+ raise exception
+ end
+ end
+end \ No newline at end of file