基础知识:
1.ruby的proc
ruby的proc的一般使用过程如下:
>> p=Proc.new{|item| p item}
=> #<Proc:0x000000010e446060@(irb):9>
>> p.call("6")
"6"
proc是通过call进行调度的,也就是说proc是可以响应call的。
2. rack的中间件的概念
我个人感觉rack中间件类似代理,包裹了endpoint,在完成处理后,中间件再将被包裹的endpoint返回。
一个简单的rack中间件如下:
MyApp = proc do |env|
[200, {'Content-Type' => 'text/plain'}, ['ok']]
end
class MyMiddleware
def initialize(app)
@app = app
end
def call(env)
if env['PATH_INFO'] == '/'
@app.call(env)
else
[404, {'Content-Type' => 'text/plain'}, ['not ok']]
end
end
end
# this is the actual configuration
use MyMiddleware
run MyApp
通过执行
rackup
-p 4567 -s thin启动,访问4567端口后curl 127.0.0.1:4567/ab,返回not ok。从这里我们可以看到MyMiddleware作为中间件,处理非法请求。
那么sinatra和中间件又有神马关系呢?
sinatra既可以作为endpoint(被中间件包裹的app),也可以作为中间件过滤处理请求。
sinatra的所有请求的入口是call,从而知道每次call都会去调用prototype,在引入@prototype时,就引入了rack的中间件。同样,根据上面的例子,sinatra支持使用use来引入其他的中间件。
当一个请求到达后,则所有的before过滤器会被触发,而在处理请求后,所有的after都会被触发,除非before、after有特定的路径限制。
# The prototype instance used to process requests.
def prototype
@prototype ||= new
end
# Create a new instance without middleware in front of it.
alias new! new unless method_defined? :new!
# Create a new instance of the class fronted by its middleware
# pipeline. The object is guaranteed to respond to #call but may not be
# an instance of the class new was called on.
def new(*args, &bk)
build(Rack::Builder.new, *args, &bk).to_app
end
# Creates a Rack::Builder instance with all the middleware set up and
# an instance of this class as end point.
def build(builder, *args, &bk)
setup_default_middleware builder
setup_middleware builder
builder.run new!(*args, &bk)
builder
end
def call(env)
synchronize{protype.call(env)}
end
使用rack的中间件
(保存为config.ru)
require 'sinatra'
require 'rack'
# A handy middleware that ships with Rack
# and sets the X-Runtime header
use Rack::Runtime
get('/') { 'Hello world!' }
在启动访问后
curl 127.0.0.1:4567 -vv
* About to connect() to 127.0.0.1 port 4567 (#0)
* Trying 127.0.0.1... connected
* Connected to 127.0.0.1 (127.0.0.1) port 4567 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5
> Host: 127.0.0.1:4567
> Accept: */*
>
< HTTP/1.1 200 OK
< X-Frame-Options: sameorigin
< X-XSS-Protection: 1; mode=block
< Content-Length: 12
< Content-Type: text/html;charset=utf-8
< X-Runtime: 0.000396
< Connection: keep-alive
< Server: thin 1.5.0 codename Knife
<
* Connection #0 to host 127.0.0.1 left intact
* Closing connection #0
Hello world!
sinatra自己作为中间件
(保存为config.ru)
require 'rubygems'
require 'sinatra/base'
MyApp = proc do |env|
[200, {'Content-Type' => 'text/plain'}, ['ok']]
end
class MyMiddlewareSinatra < Sinatra::Base
before do
if env['PATH_INFO'] != '/'
halt "not good"
end
end
end
# this is the actual configuration
use MyMiddlewareSinatra
run MyApp
利用rackup -s thin -p 4567启动后访问/abc,返回not good
分发原则
在sinatra作为endpoint的时候,每一个请求生成一个对应的实例。而当sinatra作为中间件运行时,则是所有的请求都对应一个实例。
在sinatra作为app处理请求的时候,调用的如下代码:
# The prototype instance used to process requests.
def prototype
@prototype ||= new
end
def call(env)
synchronize { prototype.call(env) }
end
而在作为中间件调用的如下代码
# Rack call interface.
def call(env)
dup.call!(env)
end
def call!(env) # :nodoc:
@env = env
@request = Request.new(env)
@response = Response.new
@params = indifferent_params(@request.params)
template_cache.clear if settings.reload_templates
force_encoding(@params)
@response['Content-Type'] = nil
invoke { dispatch! }
invoke { error_block!(response.status) }
unless @response['Content-Type']
if Array === body and body[0].respond_to? :content_type
content_type body[0].content_type
else
content_type :html
end
end
@response.finish
end
分享到:
相关推荐
Ruby-Puma是一个高性能、轻量级且并发的Web服务器,专为Ruby编程语言设计。...通过深入学习Puma的源码(如压缩包中的`puma-puma-7defa31`),开发者可以更好地理解其内部机制,并根据项目需求进行定制。
4. 类主体的通用性:在 Ruby 中,类主体不局限于定义类的内部结构。它们可以看作是类本身的一个对象,允许在运行时添加、修改或执行任意代码。例如,ActiveRecord 在定义模型时,会调用诸如 `validates_presence_of`...
标签“源码”可能暗示着这篇博客会深入到Ruby的源码层面,讨论其内部机制,如垃圾回收、解析器的工作原理或是类和对象的实现。对于想要深入了解Ruby的开发者来说,这部分内容非常有价值。 总的来说,Ruby语言以其...
#### 二、RUBY基础知识 - **基本数据类型**: - 整型(Integer) - 浮点型(Float) - 字符串(String) - 布尔值(TrueClass/FalseClass) - 数组(Array) - 哈希表(Hash) - **变量声明**:RUBY中无需显式...
压缩包中的"ruby-1.9.3-p0"很可能包含了完整的Ruby 1.9.3源码或者二进制发行版,用户可以用来编译安装或直接使用。安装过程通常涉及解压、配置、编译和安装几个步骤,确保系统环境满足必要的依赖条件。 通过学习和...
通过阅读源码,你可以了解到更多关于内部机制和实现细节的信息,比如任务的调度策略、事件循环、线程管理等。 总的来说,rufus-scheduler是Ruby开发者实现定时任务不可或缺的工具,它提供了一种高效、灵活的方式来...
#### 二、Ruby语言基础 ##### 2.1 变量与数据类型 - **变量**: 在Ruby中,变量定义简单且直观,无需显式声明其类型。 - **数据类型**: Ruby支持多种数据类型,包括整型、浮点型、字符串、布尔值等。 - **字符串...
它基于Sinatra,一个微型的Web应用框架,但增加了更多的结构和功能,特别适合于构建RESTful服务。 Pliny的主要特点包括: 1. **中间件支持**:Pliny允许开发者使用和编写中间件来处理请求和响应。中间件可以用来...
它优化了内部机制,使得代码执行速度更快,内存管理更有效。这包括对垃圾回收算法的改进,减少了不必要的内存占用,以及对常用操作的底层优化,如数组和哈希表的处理。 其次,Ruby 2.7.2引入了块参数解构赋值的功能...
此外,Rack还支持多种轻量级Web框架,如Sinatra等,这些框架本身就是基于Rack构建的,进一步体现了Rack的简洁性和灵活性。 #### 1.3 快速入门 ##### 1.3.1 安装 要开始使用Rack,首先需要安装Ruby环境。一旦Ruby...
这段描述说明Frankie的诞生目的是作为一个学习工具,帮助开发者更深入地理解Sinatra的内部机制。作者通过创建这个简化版的框架,希望用户能够更容易地探索和研究Sinatra的工作方式。虽然描述中提到的博客链接缺失,...
Ruby的继承机制允许一个类继承另一个类的特性,使用`操作符指定父类。 模块(Module)在Ruby中用于实现代码复用和命名空间管理。你可以将相关的方法和常量组织在一个模块内,然后通过`include`或`extend`引入到其他...
“源码”标签暗示了博文中可能包含对JRuby源代码的分析,比如它的内部工作原理,或者是如何通过阅读源码来理解和调试JRuby程序。而“工具”标签则可能意味着博主会介绍一些使用JRuby的实用工具或框架,例如与Java库...
Sinatra 是一个轻量级的 Ruby 框架,适用于快速开发 web 应用,它以简洁和模块化著称。 ### 主要知识点 1. **Sinatra 框架**: - Sinatra 是一个基于 Ruby 的微型框架,用于构建 web 应用。它的核心特性是将路由...
标题中的“http_server_implementations”暗示了我们将探讨如何在Ruby中实现一个...通过学习和实践这些不同的实现,开发者可以更好地理解和掌握Web服务器的工作机制,以及如何在Ruby环境中构建高效、可扩展的网络服务。
本篇将带你深入这两个组件的源码,揭示其背后的运行机制。 首先,我们要了解Bundler。Bundler是Ruby社区广泛使用的依赖管理工具,它允许开发者指定项目所依赖的库和它们的版本,确保在不同环境中都能得到一致的依赖...
项目的实现可能涉及 Ruby 的标准库或第三方 gem,如 `sys-proctree` 用于获取进程树信息,`monitoring` 或 `prometheus-client` 用于度量和监控,以及 `sinatra` 或 `rails` 创建 Web 应用程序来展示监控数据。...
7. **用户界面**:虽然没有具体提及,但一个完整的应用程序可能包含用户界面,使用Ruby的Gem如Sinatra或Rails来构建Web接口,使学生和教师能交互操作。 8. **错误处理**:为了提高程序的健壮性,Quizzer会包含错误...