Refactoring queries with Doctrine


Symfony | Technical | Development | Doctrine | January 21, 2011

Sometimes when programming, you need to do a series of queries to gather data to present to the user. A lot of times these queries are very similar, but because of time, the correct refactoring is avoided, falling as a promise in the future that will never come.

In this post will be presented a simple example of refactoring queries that were already done but in the usual fast way.

First let's present the schema that the case will be based upon.

Schema

 
Employee:
  tableName:       t_employee
  columns:
    id:            { type: integer  , length: 20 , primary: true, autoincrement: true        }
    code:          { type: string   , length: 20                , notnull: true              }
    first_name:    { type: string   , length: 100               , notnull: true              }
    last_name:     { type: string   , length: 100               , notnull: true              }
    salary:        { type: decimal  , length: 10 , scale: 2     , notnull: true              }
    date_of_birth: { type: date                                                              }
    status:        { type: string   , length: 1  , fixed: true  , notnull: true , default: O }
  indexes:
    u_code:        { fields: [ code ]                           , type: unique               }
    i_first_name:  { fields: [ first_name]                                                   }
    i_last_name:   { fields: [ last_name ]                                                   }
    i_status:      { fields: [ status ]                                                      }
 

The schema resembles an Employee table which have some simple fields to hold the employee data. 

 

Queries

1.- Let's imagine there is an autocompleter widget and it needs to filter the active employees by its first_name and last_name. Then you could built a method like:

 
class EmployeeTable extends Doctrine_Table
{
  public function findActiveByNameLike($name)
  {
    $name = '%'.$name.'%';
    $q = $this->createQuery('e');
    $q->where('LOWER(e.first_name) LIKE ? OR LOWER(e.last_name) LIKE ?', array($name, $name))
    $q->andWhere('e.status = ?', '1'); // 1 means active =)
 
    return $q->execute();
  }
}
 

 

2.- Now, you need to retrieve all the active employees whose salary is less than a variable quantity:

 
  public function findActiveBySalaryLessThan($salary)
  {
    $q = $this->createQuery('e');
    $q->where('e.salary < ?', $salary)
    $q->andWhere('e.status = ?', '1'); // 1 means active =)
 
    return $q->execute();
  }
 

 

3.- And finally you need to get all the active employees whose birthday is today.

 
  public function findActiveByDateOfBirth($date)
  {
    $q = $this->createQuery('e');
    $q->where('e.date_of_birth = ?', $date)
    $q->andWhere('e.status = ?', '1'); // 1 means active =)
 
    return $q->execute();
  }
 

 

So far so good, our queries pretty much do what we need. But ... what if a nice stakeholder comes and says to you: "I want another autocompleter that automatically filters employees with salary less than 1000 ... and send an email to congratulate the employees whose birthday is the current day and whose salary is less than 500,000.00. Mmmm and all the previous queries but with inactive employees". Before thinking about murdering your nice stakeholder, you can try to refactor the queries above.

 

Refactoring Queries

 Now, let's see how could be refactored our previous queries:

 
class EmployeeTable extends Doctrine_Table
{
  public function updateQueryForNameLike(Doctrine_Query $q, $name)
  {
    $name = '%'.$name.'%';
    $q->andWhere('LOWER(e.first_name) LIKE ? OR LOWER(e.last_name) LIKE ?', array($name, $name))
  }
 
  public function updateQueryForSalaryLessThan(Doctrine_Query $q, $salary)
  {
    $q->andWhere('e.salary < ?', $salary);
  }
 
  public function updateQueryForDateOfBirth(Doctrine_Query $q, $date)
  {
    $q->andWhere('e.date_of_birth = ?', $date);
  }
 
  public function updateQueryForStatus(Doctrine_Query $q, $status)
  {
    $q->andWhere('e.status < ?', $status);
  }
 
  public function findActiveByNameLike($name)
  {
    $q = $this->createQuery('e');
    $this->updateQueryForNameLike($q, $name);
    $this->updateQueryForStatus($q, '1'); // this 1 should be a constant like ACTIVE
 
    return $q->execute();
  }
 
  public function findActiveBySalaryLessThan($salary)
  {
    $q = $this->createQuery('e');
    $this->updateQueryForSalaryLessThan($q, $salary);
    $this->updateQueryForStatus($q, '1'); // this 1 should be a constant like ACTIVE
 
    return $q->execute();
  }
 
  public function findActiveByDateOfBirth($date)
  {
    $q = $this->createQuery('e');
    $this->updateQueryForDateOfBirth($q, $date);
    $this->updateQueryForStatus($q, '1'); // this 1 should be a constant like ACTIVE
 
    return $q->execute();
  }
}
 

You can see how every query was rebuilt based on the updateQueryFor methods. This way you can easily build your new queries for the nice stakeholder without hassle, because the core functionality is already done. Remember these queries are simple just to show the purpose of the refactoring idea. In a real life project you must separate complex queries to be able to reuse them. For example if we make the employee table acts as NestedSet behavior then you can manage Supervisors and Subordinates easily. Thus, it would be necessary to create an updateQueryToFindSupervisorsByEmployeeId and an updateQueryToFindSubordinatesbyEmployeeId  methods. 


With this kind of refactoring you can tackle and reuse the most complex queries you may need in your daily programming. Just remember to refactor continuously to have an efficient an reusable code base.

 

 


Comments




Hey Stranger, leave a comment:

Last Posts

Autoloading: Symfony vs Yii

Symfony2, PhpBB4 and Drupal8

Type and boolean columns with Doctrine and Symfony

Refactoring queries with Doctrine

Extending your Doctrine Model: Template Classes

Integrating Doctrine: Symfony vs Yii

Passing parameters from the action to the view: Symfony vs Yii

Yii framework

Adding custom information to your Doctrine schema

PHP Advent Calendar 2010


My Tweets

about 14 hours ago
Writing clean code in PHP 5.4 | Web Builder Zone: http://t.co/IAFFj3A8 via @addthis
3 months ago
Interesting tips about #scaling http://t.co/QC2paoDK
3 months ago
Learning to use #Windows #ActiveDirectory
3 months ago
Ayni - Blog: CUESTIONARIOS PARA ANÁLISIS-http://localhost:8080/AYNI-war/faces/ListarComentario.xhtml?txtIdPublicacion=2
3 months ago
Día tranquilo en casa :)#fbb
4 months ago
#Adobe Reader App crushed my new #Android movile :/
4 months ago
Testing from Android =D
5 months ago
#Refactoring code.
6 months ago
You should Snog, Marry or Avoid me http://t.co/pZCDIwW
6 months ago
Yahoo’s Options v@TechCrunchnhttp://t.co/yjzsKstKst What will Yahoo do?
6 months ago
Just realize my post http://t.co/nSuJjSp, written so many time ago, really contribute to make it happen: http://t.co/wMqYrV3
6 months ago
An Introduction to Redirecting URLs on an Apache Server http://t.co/s79ThOy via @WebmasterWorld
6 months ago
Actualizando a #Eclipse Indigo!
6 months ago
Vota x lamula.pe: http://t.co/WTWMkFG via @addthis
7 months ago
Apple Pushes Past Exxon To Become The Most Valuable Public Company In The World (Temporarily) via@TechCrunchhhttp://t.co/lowONSZZ
7 months ago
finally this class #semester is finished, new #projects in mind
8 months ago
Mark Zuckerberg Explains His Law Of Social Sharing [Video]http://t.co/sqq10Ehh via@TechCrunchh
8 months ago
retomando mi #twitter #notime
9 months ago
How Facebook Can Put Google Out of Businesshttp://t.co/HqDfQGoo via@TechCrunchh
9 months ago
So why not just cut out the middle man? Microsoft.http://techcrunch.com/2011/05/15/samsung-series-5-chromebook/
10 months ago
really like to #design class hierarchies with #compositepattern
10 months ago
Similarly, Microsoft.com started to use jQuery instead of their own ASP.NET Ajax framework. They are still using Windows, for whatever XD
10 months ago
Estudiantes de la PUCP le “voltean” campaña a esposo de Keiko | yoperiodhttp://t.co/ruI9UnmI9Unm@lamulaamula
10 months ago
Reading: Apress.-.Pro.PHP.Application.Performance.2010 - Very Insteresting #php #performance #read
10 months ago
debug_backtrace() is very important on certain situations. #php #debug
11 months ago
@alvarezrodrich felicitaciones!
11 months ago
time to do some #uml diagrams, #classdiagram
11 months ago
hoy es el día,#votaa conciente#peruu
11 months ago
@skoop @funkatron I think someone had a bad day!, #Frameworks are there but you don't have to use them.
11 months ago
making #wireframes for a new #functionality
11 months ago
so much #spam on my #blog =(
11 months ago
learning new topics and tools that I did not use before #rcp
11 months ago
aprendiendo muchos temas y herramientas que no utilizaba antes #rcp
11 months ago
#tweaking httpd.conf #virtualhost
11 months ago
thanks #symfony 1.4, even when i'm not using the entire #framework, yours classes save my life!
11 months ago
integrating with #SOA using #soap
11 months ago
It seems my most #productive working hours are on #sunday #afternoon #evening! XD
11 months ago
#ASOT 500 =)
11 months ago
installing SCA_SDO on #Centos #php
11 months ago
My web service using #soap worked!!!!! #php #SCA #SDO
11 months ago
Working in a new place since last week!, #RCP: Red Científica Peruana, the one which sells the .pe domains in#Perúú ->#happypy
12 months ago
Finally with a new #laptop: #Toshiba =)
12 months ago
@pasku1 Thanks, I will try Pivotaltracker.
12 months ago
@doolphy thanks for your answer doolphy! I'll try you!
12 months ago
@jmasson thanks for your answer! Jira + Confluence is a good combination.
12 months ago
Which is the best project management and collaboration tool right now? #projectmanagement #tool #collaboration
12 months ago
What a #voice! Sied Van Riel feat Nicole McKenna - Stealing Time (Aly & Fila Remix) + #ASOT 497 #trancefamily
12 months ago
working on a situation where #php #traits would be very useful
12 months ago
It is #awesome when you finish doing a lot of changes and nothing is broken =) #TDD #testing
12 months ago
oh, happy birthday! @mtabini o mejor dicho feliz cumpleaños!
about 1 year ago
why do #IE8 not accept #javascript "const" keyword?
about 1 year ago
Discovering there is much #more to do with #javascript ... a lot.
about 1 year ago
#composition over #inheritance: #javascript
about 1 year ago
Awesome #song!: Cerf, Mitiska & Jaren - Another World (Original Vocal Mix) #ASOT 495 #trancefamily
about 1 year ago
My legal woman is #PHP, but I have an affair with #Javascript, overall when she wears #jQuery.
about 1 year ago
This presentation is one of the best I've seen about #unit #testing http://www.slideshare.net/avalanche123/clean-code-5609451
about 1 year ago
where to do a master on #IT: US or Spain? #survey #php #master plz RT
about 1 year ago
Bobina feat. Betsie Larkin - You Belong To Me: What a #beautiful voice -> #ASOT 494 #arminvanbuuren
about 1 year ago
OH NO, IT'S MONDAY -- 2011-02-07 http://t.co/pgaIxe5 via @gojkoadzic
about 1 year ago
it was not a + b, it was parserInt(a) + parseInt(b) =(, #javascript #fail
about 1 year ago
The models are complete representations of the system, whereas an #architectural #view focuses only on what is architecturally #significant.
about 1 year ago
@jmasson that would be great and finally #wikimedia, #drupal, #wordpress and maybe #joomla would push towards the same side, the #php side.
about 1 year ago
@jmasson Thanks!, #PHP has a bright #future ahead.
about 1 year ago
A new #blog post about not reinventing the #wheel: http://www.jnieto.org/article/symfony2_phpbb4_and_drupal8 #symfony #phpbb #drupal
about 1 year ago
@giorgiosironi #indeed, that's a very good #question. I think an average of 4 but also depends on how much that #developer work.
about 1 year ago
It seems the new platform for deploying, managing and scaling PHP apps is http://orchestra.io/ #cool
about 1 year ago
#Phase project planning vs #iteration project #planning - #project #management
about 1 year ago
#jeditable with #jquery save my life =)
about 1 year ago
Amazing #song -> Sied van Riel feat. Nicole McKenna - Stealing Time #ASOT 493 #trancefamily
about 1 year ago
I simply love "offset" #jquery function =)
about 1 year ago
I really don't understand why projects like #drupal does not base their components in projects like #doctrine and #symfony
about 1 year ago
OH NO, IT'S MONDAY -- 2011-01-17 http://t.co/37pr4Bd via @gojkoadzic
about 1 year ago
@alvarezrodrich me alegra ver q ya borró su cuenta Sr. Rodrich,#twitterr es malo jajja, XD
about 1 year ago
Acabo de hacerle a mi #brother @diegonl89 un blog para que hable de #actualidad en general: http://www.elgatotechero.com #peru
about 1 year ago
I just made to my #brother a #blog to talk about current #events in #peru: http://www.elgatotechero.com
about 1 year ago
Amazing things can be done with #javascript and #css, and of course with the help of #jQuery =)
about 1 year ago
An architecturally significant element is an element that is important for #understanding the #system.
about 1 year ago
An architecturally element has a wide impact on the #structure, #performance, #robustness, #evolvability, and #scalability of a #system.
about 1 year ago
@giorgiosironi Definitely!
about 1 year ago
Playing with #table #inheritance in #Doctrine
about 1 year ago
Reading about #RUP, and how addresses the #major difficulties in a new #project.
about 1 year ago
Yandex in 2010: 43 percent revenue growth http://t.co/cpjT5Jw via @cnet
about 1 year ago
Going forward!!!!! =) poco a poco llegan los resultados de tanto esfuerzo #fb
about 1 year ago
Perfect #system with respect to the #requirements but the #wrong system with respect to the #real #problem at the time of #delivery.
about 1 year ago
Going #forward! =) #fb
about 1 year ago
@sam_dark Ok thanks!, but I don't understand why in #Yii documentantion use $_GET and $_POST instead of CHttpRequest http://bit.ly/i5emoL