eactionpack 2.1.2
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.
- data/CHANGELOG +7 -0
- data/MIT-LICENSE +21 -0
- data/README +469 -0
- data/RUNNING_UNIT_TESTS +24 -0
- data/Rakefile +146 -0
- data/install.rb +30 -0
- data/lib/action_controller.rb +79 -0
- data/lib/action_controller/assertions.rb +69 -0
- data/lib/action_controller/assertions/dom_assertions.rb +39 -0
- data/lib/action_controller/assertions/model_assertions.rb +20 -0
- data/lib/action_controller/assertions/response_assertions.rb +172 -0
- data/lib/action_controller/assertions/routing_assertions.rb +146 -0
- data/lib/action_controller/assertions/selector_assertions.rb +491 -0
- data/lib/action_controller/assertions/tag_assertions.rb +130 -0
- data/lib/action_controller/base.rb +1288 -0
- data/lib/action_controller/benchmarking.rb +94 -0
- data/lib/action_controller/caching.rb +72 -0
- data/lib/action_controller/caching/actions.rb +144 -0
- data/lib/action_controller/caching/fragments.rb +138 -0
- data/lib/action_controller/caching/pages.rb +154 -0
- data/lib/action_controller/caching/sql_cache.rb +18 -0
- data/lib/action_controller/caching/sweeping.rb +97 -0
- data/lib/action_controller/cgi_ext.rb +16 -0
- data/lib/action_controller/cgi_ext/cookie.rb +110 -0
- data/lib/action_controller/cgi_ext/query_extension.rb +22 -0
- data/lib/action_controller/cgi_ext/session.rb +73 -0
- data/lib/action_controller/cgi_ext/stdinput.rb +24 -0
- data/lib/action_controller/cgi_process.rb +223 -0
- data/lib/action_controller/components.rb +166 -0
- data/lib/action_controller/cookies.rb +96 -0
- data/lib/action_controller/dispatcher.rb +162 -0
- data/lib/action_controller/filters.rb +642 -0
- data/lib/action_controller/flash.rb +172 -0
- data/lib/action_controller/headers.rb +31 -0
- data/lib/action_controller/helpers.rb +221 -0
- data/lib/action_controller/http_authentication.rb +124 -0
- data/lib/action_controller/integration.rb +634 -0
- data/lib/action_controller/layout.rb +309 -0
- data/lib/action_controller/mime_responds.rb +173 -0
- data/lib/action_controller/mime_type.rb +186 -0
- data/lib/action_controller/mime_types.rb +20 -0
- data/lib/action_controller/polymorphic_routes.rb +191 -0
- data/lib/action_controller/record_identifier.rb +102 -0
- data/lib/action_controller/request.rb +764 -0
- data/lib/action_controller/request_forgery_protection.rb +140 -0
- data/lib/action_controller/request_profiler.rb +169 -0
- data/lib/action_controller/rescue.rb +258 -0
- data/lib/action_controller/resources.rb +572 -0
- data/lib/action_controller/response.rb +76 -0
- data/lib/action_controller/routing.rb +387 -0
- data/lib/action_controller/routing/builder.rb +203 -0
- data/lib/action_controller/routing/optimisations.rb +120 -0
- data/lib/action_controller/routing/recognition_optimisation.rb +162 -0
- data/lib/action_controller/routing/route.rb +240 -0
- data/lib/action_controller/routing/route_set.rb +436 -0
- data/lib/action_controller/routing/routing_ext.rb +46 -0
- data/lib/action_controller/routing/segments.rb +283 -0
- data/lib/action_controller/session/active_record_store.rb +340 -0
- data/lib/action_controller/session/cookie_store.rb +166 -0
- data/lib/action_controller/session/drb_server.rb +32 -0
- data/lib/action_controller/session/drb_store.rb +35 -0
- data/lib/action_controller/session/mem_cache_store.rb +98 -0
- data/lib/action_controller/session_management.rb +158 -0
- data/lib/action_controller/status_codes.rb +88 -0
- data/lib/action_controller/streaming.rb +155 -0
- data/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
- data/lib/action_controller/templates/rescues/_trace.erb +26 -0
- data/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
- data/lib/action_controller/templates/rescues/layout.erb +29 -0
- data/lib/action_controller/templates/rescues/missing_template.erb +2 -0
- data/lib/action_controller/templates/rescues/routing_error.erb +10 -0
- data/lib/action_controller/templates/rescues/template_error.erb +21 -0
- data/lib/action_controller/templates/rescues/unknown_action.erb +2 -0
- data/lib/action_controller/test_case.rb +83 -0
- data/lib/action_controller/test_process.rb +526 -0
- data/lib/action_controller/url_rewriter.rb +142 -0
- data/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
- data/lib/action_controller/vendor/html-scanner/html/node.rb +537 -0
- data/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
- data/lib/action_controller/vendor/html-scanner/html/selector.rb +828 -0
- data/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
- data/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
- data/lib/action_controller/verification.rb +130 -0
- data/lib/action_pack.rb +24 -0
- data/lib/action_pack/version.rb +9 -0
- data/lib/action_view.rb +44 -0
- data/lib/action_view/base.rb +335 -0
- data/lib/action_view/helpers/active_record_helper.rb +276 -0
- data/lib/action_view/helpers/asset_tag_helper.rb +599 -0
- data/lib/action_view/helpers/atom_feed_helper.rb +143 -0
- data/lib/action_view/helpers/benchmark_helper.rb +33 -0
- data/lib/action_view/helpers/cache_helper.rb +40 -0
- data/lib/action_view/helpers/capture_helper.rb +161 -0
- data/lib/action_view/helpers/date_helper.rb +711 -0
- data/lib/action_view/helpers/debug_helper.rb +31 -0
- data/lib/action_view/helpers/form_helper.rb +767 -0
- data/lib/action_view/helpers/form_options_helper.rb +458 -0
- data/lib/action_view/helpers/form_tag_helper.rb +458 -0
- data/lib/action_view/helpers/javascript_helper.rb +148 -0
- data/lib/action_view/helpers/number_helper.rb +186 -0
- data/lib/action_view/helpers/record_identification_helper.rb +20 -0
- data/lib/action_view/helpers/record_tag_helper.rb +59 -0
- data/lib/action_view/helpers/sanitize_helper.rb +229 -0
- data/lib/action_view/helpers/tag_helper.rb +134 -0
- data/lib/action_view/helpers/text_helper.rb +507 -0
- data/lib/action_view/helpers/url_helper.rb +573 -0
- data/lib/action_view/inline_template.rb +20 -0
- data/lib/action_view/partial_template.rb +70 -0
- data/lib/action_view/partials.rb +158 -0
- data/lib/action_view/template.rb +125 -0
- data/lib/action_view/template_error.rb +110 -0
- data/lib/action_view/template_finder.rb +176 -0
- data/lib/action_view/template_handler.rb +34 -0
- data/lib/action_view/template_handlers/builder.rb +27 -0
- data/lib/action_view/template_handlers/compilable.rb +128 -0
- data/lib/action_view/template_handlers/erb.rb +56 -0
- data/lib/action_view/test_case.rb +58 -0
- data/lib/actionpack.rb +1 -0
- data/test/abstract_unit.rb +36 -0
- data/test/active_record_unit.rb +105 -0
- data/test/activerecord/active_record_store_test.rb +141 -0
- data/test/activerecord/render_partial_with_record_identification_test.rb +191 -0
- data/test/adv_attr_test.rb +20 -0
- data/test/controller/action_pack_assertions_test.rb +543 -0
- data/test/controller/addresses_render_test.rb +43 -0
- data/test/controller/assert_select_test.rb +331 -0
- data/test/controller/base_test.rb +219 -0
- data/test/controller/benchmark_test.rb +32 -0
- data/test/controller/caching_test.rb +581 -0
- data/test/controller/capture_test.rb +89 -0
- data/test/controller/cgi_test.rb +116 -0
- data/test/controller/components_test.rb +140 -0
- data/test/controller/content_type_test.rb +139 -0
- data/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
- data/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
- data/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
- data/test/controller/cookie_test.rb +146 -0
- data/test/controller/custom_handler_test.rb +45 -0
- data/test/controller/deprecation/deprecated_base_methods_test.rb +37 -0
- data/test/controller/dispatcher_test.rb +105 -0
- data/test/controller/fake_controllers.rb +33 -0
- data/test/controller/fake_models.rb +11 -0
- data/test/controller/filter_params_test.rb +49 -0
- data/test/controller/filters_test.rb +881 -0
- data/test/controller/flash_test.rb +146 -0
- data/test/controller/header_test.rb +14 -0
- data/test/controller/helper_test.rb +210 -0
- data/test/controller/html-scanner/cdata_node_test.rb +15 -0
- data/test/controller/html-scanner/document_test.rb +148 -0
- data/test/controller/html-scanner/node_test.rb +89 -0
- data/test/controller/html-scanner/sanitizer_test.rb +269 -0
- data/test/controller/html-scanner/tag_node_test.rb +238 -0
- data/test/controller/html-scanner/text_node_test.rb +50 -0
- data/test/controller/html-scanner/tokenizer_test.rb +131 -0
- data/test/controller/http_authentication_test.rb +54 -0
- data/test/controller/integration_test.rb +252 -0
- data/test/controller/integration_upload_test.rb +43 -0
- data/test/controller/layout_test.rb +255 -0
- data/test/controller/mime_responds_test.rb +514 -0
- data/test/controller/mime_type_test.rb +84 -0
- data/test/controller/new_render_test.rb +843 -0
- data/test/controller/polymorphic_routes_test.rb +174 -0
- data/test/controller/record_identifier_test.rb +139 -0
- data/test/controller/redirect_test.rb +289 -0
- data/test/controller/render_test.rb +484 -0
- data/test/controller/request_forgery_protection_test.rb +305 -0
- data/test/controller/request_test.rb +928 -0
- data/test/controller/rescue_test.rb +517 -0
- data/test/controller/resources_test.rb +873 -0
- data/test/controller/routing_test.rb +2464 -0
- data/test/controller/selector_test.rb +628 -0
- data/test/controller/send_file_test.rb +138 -0
- data/test/controller/session/cookie_store_test.rb +258 -0
- data/test/controller/session/mem_cache_store_test.rb +181 -0
- data/test/controller/session_fixation_test.rb +89 -0
- data/test/controller/session_management_test.rb +178 -0
- data/test/controller/test_test.rb +695 -0
- data/test/controller/url_rewriter_test.rb +310 -0
- data/test/controller/verification_test.rb +270 -0
- data/test/controller/view_paths_test.rb +140 -0
- data/test/controller/webservice_test.rb +229 -0
- data/test/fixtures/addresses/list.erb +1 -0
- data/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
- data/test/fixtures/companies.yml +24 -0
- data/test/fixtures/company.rb +10 -0
- data/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
- data/test/fixtures/content_type/render_default_for_js.js.erb +1 -0
- data/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
- data/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
- data/test/fixtures/customers/_customer.html.erb +1 -0
- data/test/fixtures/db_definitions/sqlite.sql +49 -0
- data/test/fixtures/developer.rb +9 -0
- data/test/fixtures/developers.yml +21 -0
- data/test/fixtures/developers_projects.yml +13 -0
- data/test/fixtures/fun/games/hello_world.erb +1 -0
- data/test/fixtures/functional_caching/_partial.erb +3 -0
- data/test/fixtures/functional_caching/fragment_cached.html.erb +2 -0
- data/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
- data/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs +1 -0
- data/test/fixtures/good_customers/_good_customer.html.erb +1 -0
- data/test/fixtures/helpers/abc_helper.rb +5 -0
- data/test/fixtures/helpers/fun/games_helper.rb +3 -0
- data/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
- data/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
- data/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
- data/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
- data/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
- data/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
- data/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
- data/test/fixtures/layout_tests/views/hello.rhtml +1 -0
- data/test/fixtures/layouts/block_with_layout.erb +3 -0
- data/test/fixtures/layouts/builder.builder +3 -0
- data/test/fixtures/layouts/partial_with_layout.erb +3 -0
- data/test/fixtures/layouts/standard.erb +1 -0
- data/test/fixtures/layouts/talk_from_action.erb +2 -0
- data/test/fixtures/layouts/yield.erb +2 -0
- data/test/fixtures/mascot.rb +3 -0
- data/test/fixtures/mascots.yml +4 -0
- data/test/fixtures/mascots/_mascot.html.erb +1 -0
- data/test/fixtures/multipart/binary_file +0 -0
- data/test/fixtures/multipart/boundary_problem_file +10 -0
- data/test/fixtures/multipart/bracketed_param +5 -0
- data/test/fixtures/multipart/large_text_file +10 -0
- data/test/fixtures/multipart/mixed_files +0 -0
- data/test/fixtures/multipart/mona_lisa.jpg +0 -0
- data/test/fixtures/multipart/single_parameter +5 -0
- data/test/fixtures/multipart/text_file +10 -0
- data/test/fixtures/override/test/hello_world.erb +1 -0
- data/test/fixtures/override2/layouts/test/sub.erb +1 -0
- data/test/fixtures/post_test/layouts/post.html.erb +1 -0
- data/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
- data/test/fixtures/post_test/post/index.html.erb +1 -0
- data/test/fixtures/post_test/post/index.iphone.erb +1 -0
- data/test/fixtures/post_test/super_post/index.html.erb +1 -0
- data/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
- data/test/fixtures/project.rb +3 -0
- data/test/fixtures/projects.yml +7 -0
- data/test/fixtures/public/404.html +1 -0
- data/test/fixtures/public/500.html +1 -0
- data/test/fixtures/public/images/rails.png +0 -0
- data/test/fixtures/public/javascripts/application.js +1 -0
- data/test/fixtures/public/javascripts/bank.js +1 -0
- data/test/fixtures/public/javascripts/robber.js +1 -0
- data/test/fixtures/public/javascripts/version.1.0.js +1 -0
- data/test/fixtures/public/stylesheets/bank.css +1 -0
- data/test/fixtures/public/stylesheets/robber.css +1 -0
- data/test/fixtures/public/stylesheets/version.1.0.css +1 -0
- data/test/fixtures/replies.yml +15 -0
- data/test/fixtures/reply.rb +7 -0
- data/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
- data/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
- data/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
- data/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
- data/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
- data/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
- data/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
- data/test/fixtures/respond_to/using_defaults.html.erb +1 -0
- data/test/fixtures/respond_to/using_defaults.js.rjs +1 -0
- data/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
- data/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
- data/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +1 -0
- data/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
- data/test/fixtures/scope/test/modgreet.erb +1 -0
- data/test/fixtures/shared.html.erb +1 -0
- data/test/fixtures/symlink_parent/symlinked_layout.erb +5 -0
- data/test/fixtures/test/_customer.erb +1 -0
- data/test/fixtures/test/_customer_counter.erb +1 -0
- data/test/fixtures/test/_customer_greeting.erb +1 -0
- data/test/fixtures/test/_form.erb +1 -0
- data/test/fixtures/test/_hash_greeting.erb +1 -0
- data/test/fixtures/test/_hash_object.erb +2 -0
- data/test/fixtures/test/_hello.builder +1 -0
- data/test/fixtures/test/_labelling_form.erb +1 -0
- data/test/fixtures/test/_layout_for_partial.html.erb +3 -0
- data/test/fixtures/test/_partial.erb +1 -0
- data/test/fixtures/test/_partial.html.erb +1 -0
- data/test/fixtures/test/_partial.js.erb +1 -0
- data/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
- data/test/fixtures/test/_partial_only.erb +1 -0
- data/test/fixtures/test/_person.erb +2 -0
- data/test/fixtures/test/_raise.html.erb +1 -0
- data/test/fixtures/test/action_talk_to_layout.erb +2 -0
- data/test/fixtures/test/block_content_for.erb +2 -0
- data/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
- data/test/fixtures/test/capturing.erb +4 -0
- data/test/fixtures/test/content_for.erb +2 -0
- data/test/fixtures/test/content_for_concatenated.erb +3 -0
- data/test/fixtures/test/content_for_with_parameter.erb +2 -0
- data/test/fixtures/test/delete_with_js.rjs +2 -0
- data/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/test/fixtures/test/enum_rjs_test.rjs +6 -0
- data/test/fixtures/test/erb_content_for.erb +2 -0
- data/test/fixtures/test/formatted_html_erb.html.erb +1 -0
- data/test/fixtures/test/formatted_xml_erb.builder +1 -0
- data/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
- data/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
- data/test/fixtures/test/greeting.erb +1 -0
- data/test/fixtures/test/greeting.js.rjs +1 -0
- data/test/fixtures/test/hello.builder +4 -0
- data/test/fixtures/test/hello_world.erb +1 -0
- data/test/fixtures/test/hello_world_container.builder +3 -0
- data/test/fixtures/test/hello_world_from_rxml.builder +4 -0
- data/test/fixtures/test/hello_world_with_layout_false.erb +1 -0
- data/test/fixtures/test/hello_xml_world.builder +11 -0
- data/test/fixtures/test/list.erb +1 -0
- data/test/fixtures/test/non_erb_block_content_for.builder +4 -0
- data/test/fixtures/test/potential_conflicts.erb +4 -0
- data/test/fixtures/test/render_file_from_template.html.erb +1 -0
- data/test/fixtures/test/render_file_with_ivar.erb +1 -0
- data/test/fixtures/test/render_file_with_locals.erb +1 -0
- data/test/fixtures/test/render_to_string_test.erb +1 -0
- data/test/fixtures/test/update_element_with_capture.erb +9 -0
- data/test/fixtures/test/using_layout_around_block.html.erb +1 -0
- data/test/fixtures/topic.rb +3 -0
- data/test/fixtures/topics.yml +22 -0
- data/test/fixtures/topics/_topic.html.erb +1 -0
- data/test/template/active_record_helper_test.rb +268 -0
- data/test/template/asset_tag_helper_test.rb +514 -0
- data/test/template/atom_feed_helper_test.rb +179 -0
- data/test/template/benchmark_helper_test.rb +60 -0
- data/test/template/date_helper_test.rb +1791 -0
- data/test/template/deprecated_erb_variable_test.rb +9 -0
- data/test/template/erb_util_test.rb +24 -0
- data/test/template/form_helper_test.rb +885 -0
- data/test/template/form_options_helper_test.rb +1333 -0
- data/test/template/form_tag_helper_test.rb +272 -0
- data/test/template/javascript_helper_test.rb +73 -0
- data/test/template/number_helper_test.rb +97 -0
- data/test/template/record_tag_helper_test.rb +54 -0
- data/test/template/sanitize_helper_test.rb +48 -0
- data/test/template/tag_helper_test.rb +77 -0
- data/test/template/template_finder_test.rb +73 -0
- data/test/template/template_object_test.rb +95 -0
- data/test/template/test_test.rb +56 -0
- data/test/template/text_helper_test.rb +367 -0
- data/test/template/url_helper_test.rb +544 -0
- data/test/testing_sandbox.rb +15 -0
- metadata +469 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
require 'benchmark'
|
|
2
|
+
|
|
3
|
+
module ActionController #:nodoc:
|
|
4
|
+
# The benchmarking module times the performance of actions and reports to the logger. If the Active Record
|
|
5
|
+
# package has been included, a separate timing section for database calls will be added as well.
|
|
6
|
+
module Benchmarking #:nodoc:
|
|
7
|
+
def self.included(base)
|
|
8
|
+
base.extend(ClassMethods)
|
|
9
|
+
|
|
10
|
+
base.class_eval do
|
|
11
|
+
alias_method_chain :perform_action, :benchmark
|
|
12
|
+
alias_method_chain :render, :benchmark
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
module ClassMethods
|
|
17
|
+
# Log and benchmark the workings of a single block and silence whatever logging that may have happened inside it
|
|
18
|
+
# (unless <tt>use_silence</tt> is set to false).
|
|
19
|
+
#
|
|
20
|
+
# The benchmark is only recorded if the current level of the logger matches the <tt>log_level</tt>, which makes it
|
|
21
|
+
# easy to include benchmarking statements in production software that will remain inexpensive because the benchmark
|
|
22
|
+
# will only be conducted if the log level is low enough.
|
|
23
|
+
def benchmark(title, log_level = Logger::DEBUG, use_silence = true)
|
|
24
|
+
if logger && logger.level == log_level
|
|
25
|
+
result = nil
|
|
26
|
+
seconds = Benchmark.realtime { result = use_silence ? silence { yield } : yield }
|
|
27
|
+
logger.add(log_level, "#{title} (#{'%.5f' % seconds})")
|
|
28
|
+
result
|
|
29
|
+
else
|
|
30
|
+
yield
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# Silences the logger for the duration of the block.
|
|
35
|
+
def silence
|
|
36
|
+
old_logger_level, logger.level = logger.level, Logger::ERROR if logger
|
|
37
|
+
yield
|
|
38
|
+
ensure
|
|
39
|
+
logger.level = old_logger_level if logger
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
protected
|
|
44
|
+
def render_with_benchmark(options = nil, extra_options = {}, &block)
|
|
45
|
+
unless logger
|
|
46
|
+
render_without_benchmark(options, extra_options, &block)
|
|
47
|
+
else
|
|
48
|
+
db_runtime = ActiveRecord::Base.connection.reset_runtime if Object.const_defined?("ActiveRecord") && ActiveRecord::Base.connected?
|
|
49
|
+
|
|
50
|
+
render_output = nil
|
|
51
|
+
@rendering_runtime = Benchmark::realtime{ render_output = render_without_benchmark(options, extra_options, &block) }
|
|
52
|
+
|
|
53
|
+
if Object.const_defined?("ActiveRecord") && ActiveRecord::Base.connected?
|
|
54
|
+
@db_rt_before_render = db_runtime
|
|
55
|
+
@db_rt_after_render = ActiveRecord::Base.connection.reset_runtime
|
|
56
|
+
@rendering_runtime -= @db_rt_after_render
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
render_output
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
private
|
|
64
|
+
def perform_action_with_benchmark
|
|
65
|
+
unless logger
|
|
66
|
+
perform_action_without_benchmark
|
|
67
|
+
else
|
|
68
|
+
runtime = [ Benchmark::measure{ perform_action_without_benchmark }.real, 0.0001 ].max
|
|
69
|
+
|
|
70
|
+
log_message = "Completed in #{sprintf("%.5f", runtime)} (#{(1 / runtime).floor} reqs/sec)"
|
|
71
|
+
log_message << rendering_runtime(runtime) if defined?(@rendering_runtime)
|
|
72
|
+
log_message << active_record_runtime(runtime) if Object.const_defined?("ActiveRecord") && ActiveRecord::Base.connected?
|
|
73
|
+
log_message << " | #{headers["Status"]}"
|
|
74
|
+
log_message << " [#{complete_request_uri rescue "unknown"}]"
|
|
75
|
+
|
|
76
|
+
logger.info(log_message)
|
|
77
|
+
response.headers["X-Runtime"] = sprintf("%.5f", runtime)
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
def rendering_runtime(runtime)
|
|
82
|
+
percentage = @rendering_runtime * 100 / runtime
|
|
83
|
+
" | Rendering: %.5f (%d%%)" % [@rendering_runtime, percentage.to_i]
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
def active_record_runtime(runtime)
|
|
87
|
+
db_runtime = ActiveRecord::Base.connection.reset_runtime
|
|
88
|
+
db_runtime += @db_rt_before_render if @db_rt_before_render
|
|
89
|
+
db_runtime += @db_rt_after_render if @db_rt_after_render
|
|
90
|
+
db_percentage = db_runtime * 100 / runtime
|
|
91
|
+
" | DB: %.5f (%d%%)" % [db_runtime, db_percentage.to_i]
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
end
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
require 'fileutils'
|
|
2
|
+
require 'uri'
|
|
3
|
+
require 'set'
|
|
4
|
+
|
|
5
|
+
require 'action_controller/caching/pages'
|
|
6
|
+
require 'action_controller/caching/actions'
|
|
7
|
+
require 'action_controller/caching/sql_cache'
|
|
8
|
+
require 'action_controller/caching/sweeping'
|
|
9
|
+
require 'action_controller/caching/fragments'
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
module ActionController #:nodoc:
|
|
13
|
+
# Caching is a cheap way of speeding up slow applications by keeping the result of calculations, renderings, and database calls
|
|
14
|
+
# around for subsequent requests. Action Controller affords you three approaches in varying levels of granularity: Page, Action, Fragment.
|
|
15
|
+
#
|
|
16
|
+
# You can read more about each approach and the sweeping assistance by clicking the modules below.
|
|
17
|
+
#
|
|
18
|
+
# Note: To turn off all caching and sweeping, set Base.perform_caching = false.
|
|
19
|
+
#
|
|
20
|
+
#
|
|
21
|
+
# == Caching stores
|
|
22
|
+
#
|
|
23
|
+
# All the caching stores from ActiveSupport::Cache is available to be used as backends for Action Controller caching. This setting only
|
|
24
|
+
# affects action and fragment caching as page caching is always written to disk.
|
|
25
|
+
#
|
|
26
|
+
# Configuration examples (MemoryStore is the default):
|
|
27
|
+
#
|
|
28
|
+
# ActionController::Base.cache_store = :memory_store
|
|
29
|
+
# ActionController::Base.cache_store = :file_store, "/path/to/cache/directory"
|
|
30
|
+
# ActionController::Base.cache_store = :drb_store, "druby://localhost:9192"
|
|
31
|
+
# ActionController::Base.cache_store = :mem_cache_store, "localhost"
|
|
32
|
+
# ActionController::Base.cache_store = MyOwnStore.new("parameter")
|
|
33
|
+
module Caching
|
|
34
|
+
def self.included(base) #:nodoc:
|
|
35
|
+
base.class_eval do
|
|
36
|
+
@@cache_store = nil
|
|
37
|
+
cattr_reader :cache_store
|
|
38
|
+
|
|
39
|
+
# Defines the storage option for cached fragments
|
|
40
|
+
def self.cache_store=(store_option)
|
|
41
|
+
@@cache_store = ActiveSupport::Cache.lookup_store(store_option)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
include Pages, Actions, Fragments
|
|
45
|
+
include Sweeping, SqlCache if defined?(ActiveRecord)
|
|
46
|
+
|
|
47
|
+
@@perform_caching = true
|
|
48
|
+
cattr_accessor :perform_caching
|
|
49
|
+
|
|
50
|
+
def self.cache_configured?
|
|
51
|
+
perform_caching && cache_store
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
protected
|
|
57
|
+
# Convenience accessor
|
|
58
|
+
def cache(key, options = {}, &block)
|
|
59
|
+
if cache_configured?
|
|
60
|
+
cache_store.fetch(ActiveSupport::Cache.expand_cache_key(key, :controller), options, &block)
|
|
61
|
+
else
|
|
62
|
+
yield
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
private
|
|
68
|
+
def cache_configured?
|
|
69
|
+
self.class.cache_configured?
|
|
70
|
+
end
|
|
71
|
+
end
|
|
72
|
+
end
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
require 'set'
|
|
2
|
+
|
|
3
|
+
module ActionController #:nodoc:
|
|
4
|
+
module Caching
|
|
5
|
+
# Action caching is similar to page caching by the fact that the entire output of the response is cached, but unlike page caching,
|
|
6
|
+
# every request still goes through the Action Pack. The key benefit of this is that filters are run before the cache is served, which
|
|
7
|
+
# allows for authentication and other restrictions on whether someone is allowed to see the cache. Example:
|
|
8
|
+
#
|
|
9
|
+
# class ListsController < ApplicationController
|
|
10
|
+
# before_filter :authenticate, :except => :public
|
|
11
|
+
# caches_page :public
|
|
12
|
+
# caches_action :index, :show, :feed
|
|
13
|
+
# end
|
|
14
|
+
#
|
|
15
|
+
# In this example, the public action doesn't require authentication, so it's possible to use the faster page caching method. But both the
|
|
16
|
+
# show and feed action are to be shielded behind the authenticate filter, so we need to implement those as action caches.
|
|
17
|
+
#
|
|
18
|
+
# Action caching internally uses the fragment caching and an around filter to do the job. The fragment cache is named according to both
|
|
19
|
+
# the current host and the path. So a page that is accessed at http://david.somewhere.com/lists/show/1 will result in a fragment named
|
|
20
|
+
# "david.somewhere.com/lists/show/1". This allows the cacher to differentiate between "david.somewhere.com/lists/" and
|
|
21
|
+
# "jamis.somewhere.com/lists/" -- which is a helpful way of assisting the subdomain-as-account-key pattern.
|
|
22
|
+
#
|
|
23
|
+
# Different representations of the same resource, e.g. <tt>http://david.somewhere.com/lists</tt> and <tt>http://david.somewhere.com/lists.xml</tt>
|
|
24
|
+
# are treated like separate requests and so are cached separately. Keep in mind when expiring an action cache that <tt>:action => 'lists'</tt> is not the same
|
|
25
|
+
# as <tt>:action => 'list', :format => :xml</tt>.
|
|
26
|
+
#
|
|
27
|
+
# You can set modify the default action cache path by passing a :cache_path option. This will be passed directly to ActionCachePath.path_for. This is handy
|
|
28
|
+
# for actions with multiple possible routes that should be cached differently. If a block is given, it is called with the current controller instance.
|
|
29
|
+
#
|
|
30
|
+
# And you can also use :if to pass a Proc that specifies when the action should be cached.
|
|
31
|
+
#
|
|
32
|
+
# class ListsController < ApplicationController
|
|
33
|
+
# before_filter :authenticate, :except => :public
|
|
34
|
+
# caches_page :public
|
|
35
|
+
# caches_action :index, :if => Proc.new { |c| !c.request.format.json? } # cache if is not a JSON request
|
|
36
|
+
# caches_action :show, :cache_path => { :project => 1 }
|
|
37
|
+
# caches_action :feed, :cache_path => Proc.new { |controller|
|
|
38
|
+
# controller.params[:user_id] ?
|
|
39
|
+
# controller.send(:user_list_url, c.params[:user_id], c.params[:id]) :
|
|
40
|
+
# controller.send(:list_url, c.params[:id]) }
|
|
41
|
+
# end
|
|
42
|
+
#
|
|
43
|
+
module Actions
|
|
44
|
+
def self.included(base) #:nodoc:
|
|
45
|
+
base.extend(ClassMethods)
|
|
46
|
+
base.class_eval do
|
|
47
|
+
attr_accessor :rendered_action_cache, :action_cache_path
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
module ClassMethods
|
|
52
|
+
# Declares that +actions+ should be cached.
|
|
53
|
+
# See ActionController::Caching::Actions for details.
|
|
54
|
+
def caches_action(*actions)
|
|
55
|
+
return unless cache_configured?
|
|
56
|
+
options = actions.extract_options!
|
|
57
|
+
around_filter(ActionCacheFilter.new(:cache_path => options.delete(:cache_path)), {:only => actions}.merge(options))
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
protected
|
|
62
|
+
def expire_action(options = {})
|
|
63
|
+
return unless cache_configured?
|
|
64
|
+
|
|
65
|
+
if options[:action].is_a?(Array)
|
|
66
|
+
options[:action].dup.each do |action|
|
|
67
|
+
expire_fragment(ActionCachePath.path_for(self, options.merge({ :action => action })))
|
|
68
|
+
end
|
|
69
|
+
else
|
|
70
|
+
expire_fragment(ActionCachePath.path_for(self, options))
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
class ActionCacheFilter #:nodoc:
|
|
75
|
+
def initialize(options, &block)
|
|
76
|
+
@options = options
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
def before(controller)
|
|
80
|
+
cache_path = ActionCachePath.new(controller, path_options_for(controller, @options))
|
|
81
|
+
if cache = controller.read_fragment(cache_path.path)
|
|
82
|
+
controller.rendered_action_cache = true
|
|
83
|
+
set_content_type!(controller, cache_path.extension)
|
|
84
|
+
controller.send!(:render_for_text, cache)
|
|
85
|
+
false
|
|
86
|
+
else
|
|
87
|
+
controller.action_cache_path = cache_path
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
def after(controller)
|
|
92
|
+
return if controller.rendered_action_cache || !caching_allowed(controller)
|
|
93
|
+
controller.write_fragment(controller.action_cache_path.path, controller.response.body)
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
private
|
|
97
|
+
def set_content_type!(controller, extension)
|
|
98
|
+
controller.response.content_type = Mime::Type.lookup_by_extension(extension).to_s if extension
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
def path_options_for(controller, options)
|
|
102
|
+
((path_options = options[:cache_path]).respond_to?(:call) ? path_options.call(controller) : path_options) || {}
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
def caching_allowed(controller)
|
|
106
|
+
controller.request.get? && controller.response.headers['Status'].to_i == 200
|
|
107
|
+
end
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
class ActionCachePath
|
|
111
|
+
attr_reader :path, :extension
|
|
112
|
+
|
|
113
|
+
class << self
|
|
114
|
+
def path_for(controller, options)
|
|
115
|
+
new(controller, options).path
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
def initialize(controller, options = {})
|
|
120
|
+
@extension = extract_extension(controller.request.path)
|
|
121
|
+
path = controller.url_for(options).split('://').last
|
|
122
|
+
normalize!(path)
|
|
123
|
+
add_extension!(path, @extension)
|
|
124
|
+
@path = URI.unescape(path)
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
private
|
|
128
|
+
def normalize!(path)
|
|
129
|
+
path << 'index' if path[-1] == ?/
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
def add_extension!(path, extension)
|
|
133
|
+
path << ".#{extension}" if extension
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
def extract_extension(file_path)
|
|
137
|
+
# Don't want just what comes after the last '.' to accommodate multi part extensions
|
|
138
|
+
# such as tar.gz.
|
|
139
|
+
file_path[/^[^.]+\.(.+)$/, 1]
|
|
140
|
+
end
|
|
141
|
+
end
|
|
142
|
+
end
|
|
143
|
+
end
|
|
144
|
+
end
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
module ActionController #:nodoc:
|
|
2
|
+
module Caching
|
|
3
|
+
# Fragment caching is used for caching various blocks within templates without caching the entire action as a whole. This is useful when
|
|
4
|
+
# certain elements of an action change frequently or depend on complicated state while other parts rarely change or can be shared amongst multiple
|
|
5
|
+
# parties. The caching is doing using the cache helper available in the Action View. A template with caching might look something like:
|
|
6
|
+
#
|
|
7
|
+
# <b>Hello <%= @name %></b>
|
|
8
|
+
# <% cache do %>
|
|
9
|
+
# All the topics in the system:
|
|
10
|
+
# <%= render :partial => "topic", :collection => Topic.find(:all) %>
|
|
11
|
+
# <% end %>
|
|
12
|
+
#
|
|
13
|
+
# This cache will bind to the name of the action that called it, so if this code was part of the view for the topics/list action, you would
|
|
14
|
+
# be able to invalidate it using <tt>expire_fragment(:controller => "topics", :action => "list")</tt>.
|
|
15
|
+
#
|
|
16
|
+
# This default behavior is of limited use if you need to cache multiple fragments per action or if the action itself is cached using
|
|
17
|
+
# <tt>caches_action</tt>, so we also have the option to qualify the name of the cached fragment with something like:
|
|
18
|
+
#
|
|
19
|
+
# <% cache(:action => "list", :action_suffix => "all_topics") do %>
|
|
20
|
+
#
|
|
21
|
+
# That would result in a name such as "/topics/list/all_topics", avoiding conflicts with the action cache and with any fragments that use a
|
|
22
|
+
# different suffix. Note that the URL doesn't have to really exist or be callable - the url_for system is just used to generate unique
|
|
23
|
+
# cache names that we can refer to when we need to expire the cache.
|
|
24
|
+
#
|
|
25
|
+
# The expiration call for this example is:
|
|
26
|
+
#
|
|
27
|
+
# expire_fragment(:controller => "topics", :action => "list", :action_suffix => "all_topics")
|
|
28
|
+
module Fragments
|
|
29
|
+
def self.included(base) #:nodoc:
|
|
30
|
+
base.class_eval do
|
|
31
|
+
class << self
|
|
32
|
+
def fragment_cache_store=(store_option) #:nodoc:
|
|
33
|
+
ActiveSupport::Deprecation.warn('The fragment_cache_store= method is now use cache_store=')
|
|
34
|
+
self.cache_store = store_option
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def fragment_cache_store #:nodoc:
|
|
38
|
+
ActiveSupport::Deprecation.warn('The fragment_cache_store method is now use cache_store')
|
|
39
|
+
cache_store
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def fragment_cache_store=(store_option) #:nodoc:
|
|
44
|
+
ActiveSupport::Deprecation.warn('The fragment_cache_store= method is now use cache_store=')
|
|
45
|
+
self.cache_store = store_option
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def fragment_cache_store #:nodoc:
|
|
49
|
+
ActiveSupport::Deprecation.warn('The fragment_cache_store method is now use cache_store')
|
|
50
|
+
cache_store
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
# Given a key (as described in <tt>expire_fragment</tt>), returns a key suitable for use in reading,
|
|
56
|
+
# writing, or expiring a cached fragment. If the key is a hash, the generated key is the return
|
|
57
|
+
# value of url_for on that hash (without the protocol). All keys are prefixed with "views/" and uses
|
|
58
|
+
# ActiveSupport::Cache.expand_cache_key for the expansion.
|
|
59
|
+
def fragment_cache_key(key)
|
|
60
|
+
ActiveSupport::Cache.expand_cache_key(key.is_a?(Hash) ? url_for(key).split("://").last : key, :views)
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
def fragment_for(block, name = {}, options = nil) #:nodoc:
|
|
64
|
+
unless perform_caching then block.call; return end
|
|
65
|
+
|
|
66
|
+
buffer = yield
|
|
67
|
+
|
|
68
|
+
if cache = read_fragment(name, options)
|
|
69
|
+
buffer.concat(cache)
|
|
70
|
+
else
|
|
71
|
+
pos = buffer.length
|
|
72
|
+
block.call
|
|
73
|
+
write_fragment(name, buffer[pos..-1], options)
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# Writes <tt>content</tt> to the location signified by <tt>key</tt> (see <tt>expire_fragment</tt> for acceptable formats)
|
|
78
|
+
def write_fragment(key, content, options = nil)
|
|
79
|
+
return unless cache_configured?
|
|
80
|
+
|
|
81
|
+
key = fragment_cache_key(key)
|
|
82
|
+
|
|
83
|
+
self.class.benchmark "Cached fragment miss: #{key}" do
|
|
84
|
+
cache_store.write(key, content, options)
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
content
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
# Reads a cached fragment from the location signified by <tt>key</tt> (see <tt>expire_fragment</tt> for acceptable formats)
|
|
91
|
+
def read_fragment(key, options = nil)
|
|
92
|
+
return unless cache_configured?
|
|
93
|
+
|
|
94
|
+
key = fragment_cache_key(key)
|
|
95
|
+
|
|
96
|
+
self.class.benchmark "Cached fragment hit: #{key}" do
|
|
97
|
+
cache_store.read(key, options)
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# Check if a cached fragment from the location signified by <tt>key</tt> exists (see <tt>expire_fragment</tt> for acceptable formats)
|
|
102
|
+
def fragment_exist?(key, options = nil)
|
|
103
|
+
return unless cache_configured?
|
|
104
|
+
|
|
105
|
+
key = fragment_cache_key(key)
|
|
106
|
+
|
|
107
|
+
self.class.benchmark "Cached fragment exists?: #{key}" do
|
|
108
|
+
cache_store.exist?(key, options)
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
# Name can take one of three forms:
|
|
113
|
+
# * String: This would normally take the form of a path like "pages/45/notes"
|
|
114
|
+
# * Hash: Is treated as an implicit call to url_for, like { :controller => "pages", :action => "notes", :id => 45 }
|
|
115
|
+
# * Regexp: Will destroy all the matched fragments, example:
|
|
116
|
+
# %r{pages/\d*/notes}
|
|
117
|
+
# Ensure you do not specify start and finish in the regex (^$) because
|
|
118
|
+
# the actual filename matched looks like ./cache/filename/path.cache
|
|
119
|
+
# Regexp expiration is only supported on caches that can iterate over
|
|
120
|
+
# all keys (unlike memcached).
|
|
121
|
+
def expire_fragment(key, options = nil)
|
|
122
|
+
return unless cache_configured?
|
|
123
|
+
|
|
124
|
+
key = key.is_a?(Regexp) ? key : fragment_cache_key(key)
|
|
125
|
+
|
|
126
|
+
if key.is_a?(Regexp)
|
|
127
|
+
self.class.benchmark "Expired fragments matching: #{key.source}" do
|
|
128
|
+
cache_store.delete_matched(key, options)
|
|
129
|
+
end
|
|
130
|
+
else
|
|
131
|
+
self.class.benchmark "Expired fragment: #{key}" do
|
|
132
|
+
cache_store.delete(key, options)
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
end
|
|
136
|
+
end
|
|
137
|
+
end
|
|
138
|
+
end
|