|
| Mon, Jul 07th | home | browse | articles | contact | chat | submit | faq | newsletter | about | stats | scoop | 14:47 UTC |
|
login « register « recover password « |
| [Article] | add comment | [Article] |
The productivity benefits of the PHP platform are well known. Its easy syntax, latent typing, high level of abstraction, and support for objects simplify and accelerate the production of large applications. In this article, I propose using code generation tools to build even higher-quality and more easily maintained PHP code. Copyright notice: All reader-contributed material on freshmeat.net is the property and responsibility of its author; for reprint rights, please contact the author directly. The foundation of any Web application is the database. In a well-factored application, the database is protected by a set of objects contained within the database access layer. On top of this layer is the business object layer, which implements the business rules. During execution, the user interface layer communicates with the business object layer. These three code layers form the structure of a three-tier Web application server. Two-tier servers merge the business logic into either the database layer or the user interface. In either topology, the database access layer is a focal point for the application because it provides a level of abstraction between the customer view of the data and its implementation within the database. Because of this, the robustness of the application as a whole is partially dependent upon the robustness of the database access layer at the bottom of the technology stack. What is the best approach to producing a solid database access layer? Code generation. Thankfully, there are a number of tools available to build database layers for PHP automatically. Throughout the remainder of this article, I will concentrate on the use of code generation techniques and tools upon the database access layer solely. However, when applied against the entire code base, these techniques will enhance the reliability and robustness of a Web application tremendously. Introduction to code generationCode generation is the technique of using a special program which builds code to match a set of user-defined requirements. This special program is commonly referred to as a code generator. In the case of PHP database access layers, the code generator will read a definition of the database and create PHP files which contain the database access layer code. There are two basic types of code generators, and it is important to note the difference between them:
I strongly advocate using an active generator to build your code. If you want to use an off-the-shelf generator, make sure it follows the active generation model. Active generation has strong advantages when compared with writing the same code by hand:
Obviously, there are compelling reasons to use generators to build code, but why should we apply them to the database access layer in particular? Why code generation for database access?The primary reason to generate database access layers is to use the quality and consistency benefits of generation to make a strong foundation for your application. The secondary reason is that database access code is particularly amenable to generation. Let's take the example of an INSERT statement. PHP code for an insert statement using PEAR might look like this:
This is pretty simple stuff. The function takes the arguments and marshals them into an SQL statement, then checks to see whether an error occurred. Even so, this small function has an error in the ordering of the arguments, which is often where errors occur in this type of code. Note the repetitive nature of the code. The field names are repeated in both arguments lists, the SQL statement and the query statement. The structure of the function itself is repeated for every SQL statement to be executed against the database. Repetitive coding is the nature of database access work. It's easy to mess it up and difficult to excel at it. When you have code that requires clerical work to create and maintain, it is a warning sign that you could, and probably should, be generating the code. PHP Code GeneratorsThere are a number of generators available for PHP code generation, both commercial and Open Source. Some just build database code; others build entire applications.
This is just a sampling. There are a number of smaller Open Source projects which can be obtained and tweaked to meet requirements, or you can build a generator from scratch, if this is warranted. Starting out with code generation can be a daunting experience without help. The field is fairly new and undergoing rapid changes. I've included some tips which will help ease your way into making the most of code generation. Using off-the-shelf generatorsUnderstand the generator.You should fully understand what the generator requires and what it delivers, particularly the requirements on the form and format of its input and the form its output will take. Determine early in the process whether you can deliver the data in the form the generator requires and whether the templates which generate code can be modified to format the code to meet local coding guidelines. Believe me, time spent vetting the generator is inconsequential in comparison to the time savings that result as the generator builds code for you. Remember who is boss.The generator is just a tool. You should be dictating your database design and requirements to the tool, not vice versa. Ideally, you should have a database and API design in mind before you choose the generator, and you should select the generator most suited to implementing that design for you. Maintain a high level of abstraction in the generator.A core value of generation is keeping the design separate from the implementation. When a design is codified into SQL and PHP, it is difficult to migrate it to other platforms or newer technologies. The design becomes lost in the implementation minutiae of managing database connections and marshaling data. When a generator is used, the design is maintained in an XML file or some other abstract form which can be reused to generate code for a different platform or technology. ConclusionEngineers tout the productivity benefits of generation, but the real advantage comes from how quickly an existing generated code base can be modified to meet changing requirements. Code generation is an invaluable tool whose time has come. Combining code generation with PHP creates a potent mix for agile application development. Author's bio: Jack Herrington is the editor of the Code Generation Network, a free information site dedicated to the dissemination of information about code generation techniques. His book, Code Generation In Action, will be released by Manning in July. He is the proud father of six month old Megan Michele. Special thanks are offered to Lori Herrington and Mel Pleasant, who both helped to edit this article. T-Shirts and Fame! We're eager to find people interested in writing articles on software-related topics. We're flexible on length, style, and topic, so long as you know what you're talking about and back up your opinions with facts. Anyone who writes an article gets a t-shirt from ThinkGeek in addition to 15 minutes of fame. If you think you'd like to try your hand at it, let jeff.covey@freshmeat.net know what you'd like to write about. [Comments are disabled]
[»]
Php Object Generator I recently wrote a simple but useful Php Object Generator. Try it out.
[»]
Re: Php Object Generator
[»]
Re: Php Object Generator Thanx, this one looks like a nice service
[»]
Layer over layer over layers Interesting article, I've watching sometime now some database access layers who also make use of another app layer and sometimes over more than one or two.. For instances I saw a class who make use of "quicker" functions which also used Pear to interact with databases, i think this should cause some overhead in the app.. I think those examples are better for rapid development for non-critical applications but for faster PHP is better to just work right with the core PHP functions. I haven't done any benchmarks nor I'm an benchmark expert... But I've always found this true in every programming language I've use like ASP, VB or Java. What I'm trying to say in fact is: the use of objects and inheritance with other objects is good. But implementing objects over objects that use other objects could not be the perfect approch, not that is the absule purpose of the article. Maybe I'm wrong but I'd like to get a bigger picture.
[»]
My php/MySQL Generator Search I'm a developer but new to php. For a quick personal project, I have spent
the last couple weeks searching for a free or low cost solution for
providing a generic php/MySQL interface. I've come to the conclusion that
there currently are none that meet my needs. All I want is to be able to
generate a spreadsheet type interface to an existing table, and allow
updates, inserts, and deletions to the records. Thus far I have looked at
AppGini, Asap, phpGen, phpJaneBuilder, phpMyEdit, and Soloman. In all the
apps that I've looked at they were bug ridden, difficult to implement, or
were lacking in the necessary features. And I'm also amazed that some of
these products are asking for $ but they appear to have been designed by a
13 year old web developer with a "cool idea". --
[»]
Re: My php/MySQL Generator Search
--
[»]
Re: My php/MySQL Generator Search Hi there, have a look at this PHP/MySQL code generator: MyDBO http://project.zoe.co.nz/patrick/mydbo/ It is a free generator anyone may use personally or commercially that can create a set of class files corresponding to your database structure. The generation is done via a wizard that make it possible to select tables, set foreign keys ... Moreover, code is generated from templates, which make it possible to create your own templates as well.
[»]
Re: My php/MySQL Generator Search I have recently released a project named Dataface ( http:// --
[»]
not data access layers I think we should differentiate between "data access layers" and
"application frameworks" - some of the tools you guys have posted
generate pages and forms and things that more go under the rubrik of
"application framework" or something, and not data acess layers.
The data access layers is limited to a more thin API that has nothing to do
with presentation.
[»]
Other php generating code projet for database structure. Hi.
[»]
Re: Other php generating code projet for database structure. other RDB code generators in PHP include :
[»]
Yet another one http://sourceforge.net/projects/phdwait
[»]
*Examples* of code generation, please While pointers to some code-generation software are great, some examples
would be good too. For instance, in Python, you might write a simple code
generator as string substitution: However, in an object-oriented language you'd be unlikely to adopt this
approach. Instead, you'd use a class-based approach: Of course, since I use Python for all my web programming I have no idea if PHP offers these kinds of capabilities.
[»]
Re: *Examples* of code generation, please yeah, PHP is great, but not for SQL - those tools don't look so cool to
me... is
there any way to NOT write SQL in PHP for some general
application-oriented use cases?!?
[»]
Re: *Examples* of code generation, please
[»]
Re: *Examples* of code generation, please
--
[»]
Code generators and applications models Thank you for this great article, in our company we have worked a lot on
code generators, and specially PHP application models, and this have a very
high influence on the importance of any code generator we made.
[»]
Re: Code generators and applications models
--
[»]
PEAR DB_DataObjects library This library does essentially the same thing as you've described in this
article. I've used it and although it's not perfect (i.e. bugs exist), it
is a step in the right direction.
[»]
Re: PEAR DB_DataObjects library Do you have a link to the home page for DB_DataObjects? I looked around Google and the best I could find was a cached page that summarized a pretty cool generator. I looked on the PEAR site and there was no mention of it. --
[»]
Re: PEAR DB_DataObjects library
[»]
Re: PEAR DB_DataObjects library Thanks. The documentation is pretty scarce. From what I understand it reads the table definitions from the database and builds code to match. Is that correct? --
|