Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Choosing properties in Phing (and Ant) build scripts

I am working with databases in my build script. All the database details are in my properties file, but I was wondering how I could easily have the user choose which set of details to use? I am working with Phing, but because it is so similar to Ant I'll also accept Ant answers.

Here's my sample build.properties:

# Connection details for the dev database
db.dev.hostname=localhost
db.dev.database=foo
db.dev.username=foo_user
db.dev.password=foo_password

# Connection details for the staging database
db.staging.hostname=some.remote.server
db.staging.database=bar
db.staging.username=bar_user
db.staging.password=bar_password

I would like to offer the user a simple build flag to choose which database to use. Suppose I have a build task to check a database schema. I would like to offer a build flag like so:

phing -Ddatabase=staging check-schema

That should use the db.staging.* properties for the database connection details. How can I achieve such a thing?

like image 918
Sander Marechal Avatar asked Aug 01 '11 08:08

Sander Marechal


1 Answers

In Phing build files, you're able to nest properties. Doing that would get the functionality that you're looking for.

<?xml version="1.0"?>
<project name="test" default="init">
  <property name="database" value="staging" />
  <property name="db.dev.hostname" value="localhost" />
  <property name="db.staging.hostname" value="some.remote.server" />
  <property name="db.hostname" value="${db.${database}.hostname}" />

  <target name="init">
    <echo msg="${db.hostname}" />
  </target>
</project>

You might also want to look into the input tag to make things easier for users instead of specifying the -D command line option:

  <input propertyname="database" validargs="dev,staging">Which database?</input>
like image 200
Brian Creasy Avatar answered Sep 23 '22 08:09

Brian Creasy