Ioc EnvUser Guide

Overview

afIocEnv is a library for determining the application environment, be it dev, test or prod.

ALIEN-AID: See the Fantom-Factory blog article Dev, Test or Prod; What is Your Machine? for a good introduction to afIocEnv.

Install

Download from Status302 and copy to %FAN_HOME/lib/fan/ or install via fanr:

$ fanr install -r http://repo.status302.com/fanr/ afIocEnv

To use in a Fantom project, add a dependency to the build.fan:

depends = ["sys 1.0", ..., "afIocEnv 1+"]

Quick Start

Example.fan:

using afIoc
using afIocConfig
using afIocEnv

class Example {
    @Inject IocEnv iocEnv             // --> Inject IocEnv service

    @Config { id="afIocEnv.isProd" }  // --> Inject Config values
    @Inject Bool isProd

    new make(|This| in) { in(this) }

    Void wotever() {
        echo("The environment is '${iocEnv.env}'")

        if (isProd) {
            echo("I'm in Production!")
        } else {
            echo("I'm in Development!!")
        }
    }
}

// ---- Standard afIoc Support Classes ----

class Main {
    Void main() {
        registry := RegistryBuilder().addModules([AppModule#, IocEnvModule#, IocConfigModule#]).build.startup
        example  := (Example) registry.dependencyByType(Example#)
        example.wotever()
    }
}

class AppModule {
    static Void bind(ServiceBinder binder) {
        binder.bindImpl(Example#)
    }
}

Run Example.fan from the command line:

C:\> fan Example.fan -env PRODUCTION
[info] [afIocEnv] Setting from environment variable 'env' : development
[info] [afIocEnv] Overriding from cmd line argument '-env' : PRODUCTION
The environment is 'PRODUCTION'
I'm in Production!

Usage - IocEnv Injection

The IocEnv class is the main afIoc service with handy utility methods. Inject it as usual:

using afIoc::Inject
using afIocEnv::IocEnv

@Inject IocEnv iocEnv

...

Void wotever() {
   if (iocEnv.isDev) {
      ... // dev only stuff
   }
}

Usage - Config Injection

You can also inject afIocConfig config values. See IocEnvConfigIds for a a complete list of injectable values:

using afIoc::Inject
using afIocConfig::Config

@Config { id="afIocEnv.isDev" }
@Inject Bool isDev

...

Void wotever() {
   if (isDev) {
      ... // dev only stuff
   }
}

Setting the Environment

To determine your environment, afIocEnv checks the following:

  • Environment Variables - if environment variable named env or environment if found, it is taken to be your environment.
  • Program Arguments - if an option labelled -env or -environment if found, the environment is taken to be the argument following. Example, -env prod. This convention follows @Opt from util::AbstractMain.
  • Manual Override - The environment may be set / overridden when the IocEnv instance is created.

The ordering of checks mean program arguments override environment variables and a manual override trumps everything.

Note if no environment setting is found, it defaults to Production. This is because it's usually easier to configure dev and test boxes than it is to configure production ones. So it is one less thing to worry about!

ALIEN-AID: Because the environment default is production you need to set the environment on your dev machine. The easiest way to do this is to set a new environment variable called ENV to the value dev.

Overriding the Environment

Should you need to programmatically override the environment, do it by overriding the IocEnv service in your AppModule:

using afIoc
using afIocEnv

class AppModule {

    @Contribute { serviceType=ServiceOverride# }
    static Void contributeServiceOverride(MappedConfig config) {
        config["IocEnv"] = IocEnv.fromStr("Testing")
    }

    ....
}

Release Notes

v1.0.0

  • New: Initial Release