sergekov / ruby-mongrel2

A complete Mongrel2 connector for Ruby

Home Page:http://deveiate.org/projects/Ruby-Mongrel2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ruby-Mongrel2

home

deveiate.org/projects/Ruby-Mongrel2/

code

repo.deveiate.org/Ruby-Mongrel2

github

github.com/ged/ruby-mongrel2

docs

deveiate.org/code/mongrel2

Description

Ruby-Mongrel2 is a complete Ruby (1.9-only) connector for Mongrel2.

This library includes configuration-database ORM classes, a Ruby implementation of the ‘m2sh’ tool, a configuration DSL for generating config databases in pure Ruby, a Control port interface object, and handler classes for creating applications or higher-level frameworks.

Installation

gem install mongrel2

This library uses Jeremy Hinegardner’s ‘amalgalite’ library for the config ORM classes, but it will also fall back to using the sqlite3 library instead:

# Loading the sqlite3 library explicitly
$ rspec -rsqlite3 -cfp spec
>>> Using SQLite3 1.3.4 for DB access.
.....[...]

Finished in 5.53 seconds
102 examples, 0 failures

# No -rsqlite3 means amalgalite loads first.
$ rspec -cfp spec
>>> Using Amalgalite 1.1.2 for DB access.
.....[...]

Finished in 3.67 seconds
102 examples, 0 failures

Usage

The library consists of three major parts: the Config ORM classes, the Handler classes, and the Control class.

Config ORM Classes

There’s one class per table like with most ORMs, a Mongrel2::Config::DSL mixin for adding the Ruby configuration DSL to your namespace, and the top-level Mongrel2::Config class, which manages the database connection, installs the schema, etc.

  • Mongrel2::Config

    • Mongrel2::Config::DSL

    • Mongrel2::Config::Server

    • Mongrel2::Config::Host

    • Mongrel2::Config::Route

    • Mongrel2::Config::Directory

    • Mongrel2::Config::Proxy

    • Mongrel2::Config::Handler

    • Mongrel2::Config::Setting

    • Mongrel2::Config::Mimetype

    • Mongrel2::Config::Statistic

    • Mongrel2::Config::Filter

    • Mongrel2::Config::Log

Handler Classes

The main handler class is, unsurprisingly, Mongrel2::Handler. It uses a Mongrel2::Connection object to talk to the server, wrapping the request data up in a Mongrel2::Request object, and expecting a Mongrel2::Response in response.

There are specialized Request classes for each of the kinds of requests Mongrel2 sends:

  • Mongrel2::HTTPRequest

  • Mongrel2::JSONRequest

  • Mongrel2::XMLRequest

  • Mongrel2::WebSocket::Frame

These are all overridable if you should want a more-specialized class for one of them.

The Mongrel2::Handler class itself has documentation on how to write your own handlers.

The Control Class

The Mongrel2::Control class is an object interface to the Mongrel2 control port. It can be used to stop and restart the server, check its status, etc.

Other Classes

There are a few other classes and modules work checking out, too:

  • Mongrel2::Table

  • Mongrel2::Constants

  • Mongrel2::Loggable

Contributing

You can check out the current development source with Mercurial via its Trac project. Or if you prefer Git, via its Github mirror.

After checking out the source, run:

$ rake newb

This task will install any missing dependencies, run the tests/specs, and generate the API documentation.

Other Implementations

There are two other Mongrel2 Ruby libraries, m2r and the mongrel2-rack library. This implementation differs from them in several ways:

  • It uses the C extension for 0MQ (zmq) instead of the FFI one. If you strongly prefer the FFI library, both of the other Mongrel2 libraries use it, so you’ll want to stick to one of them.

  • It doesn’t come with a Rack handler, or Rails examples, or anything too fancy. I intend to build my own webby framework bits around Mongrel2, and I thought maybe someone else might want to as well. If you don’t, well again, there are two other libraries for you.

  • It includes configuration stuff. I want to make tools that use the Mongrel2 config database, so I wrote config classes. Sequel::Model made it stupid-easy. There’s also a DSL for generating a config database, too, mostly because I found it an interesting exercise, and I like the way it looks.

License

Copyright © 2011-2012, Michael Granger All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  • Neither the name of the author/s, nor the names of the project’s contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

About

A complete Mongrel2 connector for Ruby

http://deveiate.org/projects/Ruby-Mongrel2