Sha256: c3b6ebdc2d90fb2a3a471926a3e5ae826b6b48abf5010a88ee2d37a8d0ee97d4

Contents?: true

Size: 1.22 KB

Versions: 13

Compression:

Stored size: 1.22 KB

Contents

class Roda
  module RodaPlugins
    # The delay_build plugin does not build the rack app until
    # Roda.app is called, and only rebuilds the rack app if Roda.build!
    # is called.  This differs from Roda's default behavior, which
    # rebuilds the rack app every time the route block changes and
    # every time middleware is added if a route block has already
    # been defined.
    #
    # If you are loading hundreds of middleware after a
    # route block has already been defined, this can fix a possible
    # performance issue, turning an O(n^2) calculation into an
    # O(n) calculation, where n is the number of middleware used.
    module DelayBuild
      module ClassMethods
        # If the app is not been defined yet, build the app.
        def app
          @app || build!
        end

        # Rebuild the application.
        def build!
          @build_app = true
          build_rack_app
          @app
        ensure
          @build_app = false
        end

        private

        # Do not build the rack app automatically, wait for an
        # explicit call to build!.
        def build_rack_app
          super if @build_app
        end
      end
    end

    register_plugin(:delay_build, DelayBuild)
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
roda-2.9.0 lib/roda/plugins/delay_build.rb
roda-2.8.0 lib/roda/plugins/delay_build.rb
roda-2.7.0 lib/roda/plugins/delay_build.rb
roda-2.6.0 lib/roda/plugins/delay_build.rb
roda-2.5.1 lib/roda/plugins/delay_build.rb
roda-2.5.0 lib/roda/plugins/delay_build.rb
roda-2.4.0 lib/roda/plugins/delay_build.rb
roda-2.3.0 lib/roda/plugins/delay_build.rb
roda-2.2.0 lib/roda/plugins/delay_build.rb
roda-2.1.0 lib/roda/plugins/delay_build.rb
roda-2.0.0 lib/roda/plugins/delay_build.rb
roda-1.3.0 lib/roda/plugins/delay_build.rb
roda-1.2.0 lib/roda/plugins/delay_build.rb