Fusebox (programming)

Fusebox (programming)

Fusebox is a web application framework for ColdFusion and PHP. Originally released in 1997, it is currently in its fifth major incarnation. The current version, Fusebox 5.5, was released to the world at the beginning of December 2007.

Fusebox is intended to be easy to learn and provides benefits by helping developers structure their code through a set of simple conventions. Fusebox also allows advanced developers to build large applications, leveraging design patterns and object-oriented programming techniques if they wish.

Overview

Fusebox provides web application developers with a standardized, structured way of developing their applications using a relatively straightforward and easy to learn set of core files and encouraged conventions. In addition to the framework itself, Fusebox has become closely associated with a Web application development methodology developed by its proponents known as "FLiP". (Many people refer to Fusebox as a "methodology", but in fact, as stated, it's a development framework. FLiP, however, is a methodology). Many frameworks provide comparable advantages, however, Fusebox (probably on account of both its relatively long history and the sizable and active community that supports it) seems to be the most popular one for ColdFusion. Also the framework itself has been ported and used in ASP, JSP, Perl/CGI and PHP as well. (Other than ColdFusion, the PHP version of Fusebox is the only version to gain momentum.)

It is important to note that Fusebox deals primarily with the effort of wiring together view states (pages) with controller actions (form submits, etc.) and the front-end of the business-logic tier. The framework does not address creating and maintaining business logic such as database interaction or service layers.

Concepts

Fusebox, Circuits and Fuseactions

The original concepts behind Fusebox were based on the household idiom of an electrical fusebox that controls a number of circuits, each one with its own fuse. In a Fusebox web application, all requests are routed through a single point (usually index.cfm for ColdFusion) and processed by the Fusebox core files. The application is divided into a number of circuits (usually in sub-directories) which are intended to contain related functionality. Each circuit in the application is further divided into small files called fuses that should perform simple tasks. As such, Fusebox is considered an implementation of the front controller, a common design pattern.

URLs within a Fusebox web application are usually of the form index.cfm?fuseaction=cname.fname where "cname" is the name of a circuit and "fname" is an XML-defined "method" within that circuit known as a fuseaction. The query-string variable name "fuseaction" can vary depending on configuration parameters, so not all applications using Fusebox need to use the action variable "fuseaction".

Naming Conventions

Fusebox encourages, but does not enforce, separation of presentation logic from business logic. It uses a number of file naming conventions to encourage this separation: presentation files begin with dsp (display) or lay (layout), database access files begin with qry (query) and general business files begin with act (action). Typical file names are in the format [prefix] _ [filename] like dsp_loginform.cfm. Additional naming conventions are used by some Fusebox developers but these are the most common ones.

Exit Fuseactions

Another concept that Fusebox encourages is to parameterize any exit points in a web page, coding them as variables that are set in the circuit control file. These exit points are known as XFAs - eXit FuseActions. The idea is that by parameterizing the exit points in a web page, the flow of control can be updated more easily, allowing more reuse of web pages or fragments thereof.

FuseDocs

Associated with the framework, but not strictly part of it, is the concept of FuseDocs which is a semi-formalized form of documentation written in XML that specifies the inputs and outputs of each fuse file. There are third-party tools available which can use FuseDocs to do things like generate test harness code.

History

Fusebox has had several major revisions over the years. The most popular versions in use today are Fusebox 3, 4 (including 4.1) and 5. In Fusebox 3, the control files were all written in the underlying programming language (e.g., fbx_Switch.cfm for ColdFusion). Fusebox 4 and later versions use XML for the control files (fusebox.xml and circuit.xml), but other framework components are written using the underlying programming language (e.g. fusebox5.cfm, again for ColdFusion). In theory, this helps improve tool support for the framework. It also allowed for the pre-parsing and generation of a single template for processing each fuseaction, greatly increasing performance. Fusebox 5.5 allows the XML files to be omitted if certain conventions are followed.

Fusebox (version 1)

Fusebox 1 grew out of a conversation on the CF-Talk mailing list in April 1998. The participants included Michael Dinowitz, Josh Cyr, Steve Nelson and Gabe Roffman. Nelson and Roffman are credited with creating the original Fusebox though the first Fusebox program was written by Josh Cyr. The methodology was constantly evolving and beyond a whitepaper and a handful of examples, no official documentation existed. Very few developers were exposed to Fusebox during these early days.

Fusebox 2

Craig Girard and Steve Nelson (along with Hal Helms and Nat Papovich) wrote a book, Fusebox: Methodology and Techniques, which was published in 2000 by Fusion Authority. Programmers who followed the practices described in the book were said to be doing "Fusebox 2."

XFB

Hal Helms built upon Fusebox 2 and called his ideas eXtended FuseBox, or XFB.

Fusebox 3

Fusebox 3 (written primarily by John Quarto-von Tivadar and Nat Papovich) was an effort by leading members of the Fusebox community to incorporate XFB and other ideas into a reusable library, known as the "core files." A simple API allowed application code to communicate with the core files. Upon release in the fall of 2001, Fusebox became a framework rather than a methodology. A subsequent 3.01 release addressed minor issues. Fusebox 3 was something of a sea-change from Fusebox 2. Only the original principles remained relatively unchanged; a Fusebox 2 and Fusebox 3 application are structured very differently.

Fusebox 4

Fusebox 4 was a complete rewrite of Fusebox 3. The core files [http://www.fusebox.org/index.cfm?fuseaction=fusebox.isFree license] (which is open source) are held by a private company, owned by John Quarto-von Tivadar: [https://esos.state.nv.us/SOSServices/AnonymousAccess/CorpSearch/CorpDetails.aspx?lx8nvq=6avzenGWEqvUpDJSQTEiOA%253d%253d The Fusebox Corporation] (which appears to be a defunct corporation).

Fusebox 4.1 introduced some new XML grammar elements beyond those available in 4.0 that let you declare, instantiate and manipulate objects (COM, Java and ColdFusion Components) as well as web services. These features have provided Fusebox developers with the means of tying object-oriented models (i.e. business-logic) directly into their controllers. However, many Fusebox developers used object-oriented or highly-structured models in earlier versions of Fusebox or in the current versions without use of these grammar elements.

Fusebox 5

In 2006, The Fusebox Corporation asked Sean Corfield to take the lead in developing the next iteration of Fusebox. Fusebox 5 was another complete rewrite with new features and improved performance. Fusebox 5 nearly completely maintained backwards-compatibility with Fusebox 4.1. In November 2006 The Fusebox Corporation transferred ownership of the core files and fusebox website to TeraTech under the guidance of TeraTech president and Fusebox speaker Michael Smith. TeraTech announced that Fusebox will remain open source and is seeking to increase community involvement in the project again. Fusebox 5.1 and all subsequent releases are licensed under the [http://www.apache.org/licenses/LICENSE-2.0.html Apache Source License 2.0] .In February 2007 the members of [http://trac.fuseboxframework.org/fusebox/wiki/TeamFusebox Team Fusebox] met at the Frameworks conference in Bethesda Maryland and created a plan of action for community involvement using volunteers in nine different areas of Fusebox.

Fusebox 5.5

This release focused primarily on adding a set of conventions that allow the creation of Fusebox applications without XML configuration files. The use of these new features instead of XML is called "implicit Fusebox".
* Alpha testing began in June 2007
* A Public Beta became available at Adobe MAX in October 2007
* The official release of Fusebox 5.5 became available at the beginning of December 2007

Fusebox 5.6 and 5.7

The next two releases of Fusebox will be evolutionary with the plan to unify Fusebox 3 and Fusebox 4/5 by the time Fusebox 5.7 is released toward the end of 2008.

ee also

* Comparison of web application frameworks

External links

* [http://www.fusebox.org Fusebox.org]
* [http://www.adobe.com/devnet/coldfusion/articles/fusebox_basics.html Introduction to the Fusebox Framework] (adobe.com)
* [http://builder.com.com/5100-6371-5097705.html Tap the power of the popular Fusebox 4] (builder.com.com, November 2003)
* [http://coldfusion.sys-con.com/read/42066.htm Fusebox 4 Review] (sys-con.com, September 2003)
* [http://coldfusion.sys-con.com/read/41834.htm Fusebox 3 Feature] (sys-con.com, November 2001)
* [http://trac.fuseboxframework.org/fusebox/roadmap Fusebox development project wiki]
* [http://fbx4.salientdigital.com/ Fusebox 4 PHP wiki]
* [http://fuseboxipedia.com/ Fusebox Framework Documentation Project]
* [http://www.houseoffusion.com/groups/fusebox Fusebox mailing list (house of fusion)]
* [http://groups.yahoo.com/group/fusebox5/ Official Fusebox mailing list]
* [http://www.c2.com/cgi/wiki?FuseBoxLite Fusebox Light - A simplified variation for smaller projects]


Wikimedia Foundation. 2010.

Игры ⚽ Нужна курсовая?

Look at other dictionaries:

  • Fusebox — may refer to: * Fuse boxes in electric wiring * Fuseboxx, a metal band from the Philippines * Fusebox (programming), a web development programming framework …   Wikipedia

  • Fuse (programming) — A fuse is where the work of a Fusebox web application is done. They are small separate files that are called by the Fusebox to do one and only one task. Fuses start with dsp , lay , act or qry to separate out the display, layout, CFML and SQL… …   Wikipedia

  • FuseDocs (programming) — FuseDoc is a program definition language created by Hal Helms in the late 1990s. In its original form, Fusedoc used a proprietary vocabulary to define the responsibilities, properties, and I/O of code module in the ColdFusion programming language …   Wikipedia

  • Rewrite (programming) — A rewrite in computer programming is the act or result of re implementing a large portion of existing functionality without re use of its source code. When the rewrite is not using existing code at all, it is common to speak of a rewrite from… …   Wikipedia

  • Switch file — The Fusebox switch file fbx switch.cfm, in the Fusebox computer programming language, decides which fuses to call to accomplish the requested fuseaction. It is basically a CFSWITCH statement on the fuseaction variable with one or more CFLINCLUDEs …   Wikipedia

  • Steve Nelson — * Steve Nelson (football player) is the New England Patriots American football player. * Steve Nelson (vibraphonist) is the musician. * Steve Nelson (Activist) refers to the Communist Party member; Spanish Civil War veteran; and U.S. Supreme… …   Wikipedia

  • Model–view–controller — A general representation of the MVC design pattern. Model view controller concept. The solid line represents a direct as …   Wikipedia

  • Model-view-controller — (MVC) is an architectural pattern used in software engineering. Successful use of the pattern isolates business logic from user interface considerations, resulting in an application where it is easier to modify either the visual appearance of the …   Wikipedia

  • ColdSpring Framework — ColdSpring is a web application framework for the ColdFusion application programming language, based on the Java Spring Framework. It was originally created by Dave Ross and Chris Scott. The framework provides Dependency injection, inversion of… …   Wikipedia

  • ColdBox Platform — Original author(s) Luis Majano Ortus Solutions Developer(s) [1] Initial release …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”