Fever configuration engine

I have released a first article about Fever configuration engine here.

A new revision is available and comes with a big update for configuration processing.
New features allow more controls over the configuration system.

  • XML Deserialization customization
  • Configuration parsing customization

1. Quick summary : Why using confguration and how ?

Configuration processing allow pre processing at application startup.
Fever comes with pre-defined actions like :

  • Paths definition for external assets
  • Localisation definition
  • Shared font library loading
  • AsWing look'n feel loading
  • Bitmaps loading

User can really easily customize configuration file to add custom definition for his application.
We will see this point in later point.

To enable configuration process,, we have to specify a boolean value ( true ) to the Fever#run() method.

public static function main() : Void 
{
    Fever.run( new  MyDemo(), HaxeContext.getInstance(), true ); 
}

Here we start " MyDemo" application with Fever support and :

All configuration process is executed backstage and user don't care about it in many cases.

 

2. The configuration file

Take a look now on a possible Fever configuration file :

<fever>

    <resourceURL>resources</resourceURL>
    <localeURL>locales</localeURL>
    <fontURL>fonts</fontURL>
    <themeURL>themes</themeURL>
    <bitmapURL>assets</bitmapURL>
    <remotingURL>http://www.mondomain/remoting/gateway.php</remotingURL>
   
    <localisations>
        <culture type="class">"fever.app.local.Culture", "en", "english"</culture>
        <culture type="class">"fever.app.local.Culture", "fr", "français"</culture>
    </localisations>
   
    <themes>
        <theme>Office2003</theme>
        <theme>Spring</theme>
    </themes>
   
    <fonts>
        <font>comsc</font>
        <font>dungeon</font>
    </fonts>
   
    <bitmaps>
        <default>
            <lib>monImage.png</lib>
            <lib>monLogo@logo</lib>
        </default>
        <customLocatorName>
            <lib>myBackground.jpg</lib>
        </customLocatorName>
    </bitmaps>
   
</fever>

As I said, we notice 4 parts

  • Paths definition for external assets
  • Localisation definition
  • Shared font library loading
  • AsWing look'n feel loading
  • Bitmaps loading

All this parts ( except first that is only a basic object -> string parsing ) have a personal system to parse their definition in Fever, named ConfigurationParser.

  • LocalisationParser class
  • FontParser class
  • ThemeParser class
  • BitmapParser class

A ConfigurationParser instance take a configuration node ( for example "bitmaps" ) and parse content definition.
In "bitmaps" node, parser will automatically create BitmapLib instances and loads defined images at startup.

 

3. Customize your process now !

Since last revision, 2 customizations are allowed :

  • XML Deserialisation customization
  • Configuration node parsing customization

First comes from Pixlib deserialization behaviour.
We can add deserialisation process for specific type of XML node.

Use the # addDeserializationType( type : String, scopeMethod, parsingMethod : Function ) method to add your custom process.
This is simple example :


<!-- somewhere in your xml configuration file -->

<test type="MyType">ActionScript, 2.0</test>

add deserialization type for "MyType" node :

public static function main() : Void
{
     var o : Main = new Main();
}

private function Main()
{
     FeverDebug.isOn = true;
     ConfDebug.isOn = true;
     
     var config : Configuration = Configuration.getInstance();
     config.addDeserializationType( "MyType", this, _deserializeMytpe );
     
     Fever.run( new Test(), BrowserContext.getInstance(), true );     
}

private function _deserializeMytpe( node : XMLNode ) : String
{
     // do whant you want with XMLNode argument
     // here we just return a string
     return String( node.firstChild.nodeValue );
}

The second possible customization is "object node" parsing customization.
Somewhere in your configuration file, you can add your custom structure like this :

<myNode>
     <list>
          <item>Actionscript 1.0</item>
          <item>Actionscript 2.0</item>
          <item>Actionscript 3.0</item>
     </list>   
</myNode>

You want to execute specific parsing on this node rather than the basic "object construction" one.
You have to implement your custom ConfigurationParser subclass.

class MyParser extends ConfigurationParser
{
     
     public function MyParser()
     {
          super();
     }
     
     public function parse() : Void
     {
          super.parse();
          
          // retreives object node
          var o : Object = Fever.config.myNode;
          
          for( item in o )
          {
               // do want you want with object content here 
          }
          
          // when your parsing is complete, dispatch "complete" event
          _fireEvent( onParserCompleteEVENT );
     }
     
     public function getParsingLabel() : String
     {
          return "parsing my object";
     }

}

Notes :

  • Call super.parse() method to dispatch #onParserStartEVENT event type
  • Call _fireEvent( onParserCompleteEVENT ); to dispatch #onParserCompleteEVENT event type
    • this event is responsible of parsers queue managment ( ParserQueue )
  • Optional : you can override #getParsingLabel() method to retreive a human readable label for configuration UI loader message

And add this new parser to configuration parser queue :

var config : Configuration = Configuration.getInstance();
config.addParsingType( new MyParser() );

Indeed, you can mix the 2 custommizations ;)
Take a look at the fever.conf.parsers package to see concrete parser implementations.

Hope it help you with Fever ;)

Cheers,
Romain Ecarnot.

Comments
wow's Gravatar <a href="http://www.feelingame.com/">wow power leveling</a>
<a href="http://www.feelingame.com">wow powerleveling</a>
<a href="http://www.feelingame.com/wow-power-leveling.asp">wow power leveling</a>
<a href="http://www.feelingame.com/wow-gold.asp">wow gold</a>
<a href="http://www.feelingame.com/wow-items.asp">wow items</a>
<a href="http://www.feelingame.com/about-us.asp" target="_blank">http://www.feelingame.com/about-us.asp">feelingame.com</a>
<a href="http://www.feelingame.com/wow-tips.asp" target="_blank">http://www.feelingame.com/wow-tips.asp">wow tips</a>
<a href="http://www.feelingame.com/most-valuable.asp" target="_blank">http://www.feelingame.com/most-valuable.asp">Most Valuable WOW Power Leveling Service</a>
<a href="http://www.feelingame.com/faq.asp">wow power leveling faq</a>
<a href="http://www.cheap-wow-power-leveling.com">cheap wow power leveling</a>
<a href="http://www.cheap-wow-power-leveling.com/">wow power leveling</a>
<a href="http://www.cheap-wow-power-leveling.com/">wow powerleveling</a>
<a href="http://www.cheap-wow-power-leveling.com/">wow power lvl</a>
# Posted By wow | 12/10/07 1:13 AM
Still life Artist's Gravatar It’s interesting to read ideas, and observations from someone else’s point of view… it makes you think more. So please try to keep up the great work all the time. Greetings
Andrzej Filipowicz
Still life Artist, still life art
http://www.andrzejfilipowicz.com
STILL LIFE PAINTING
http://www.life.e-phils.com
# Posted By Still life Artist | 1/24/08 4:33 PM
m7mmad's Gravatar Thanks alot ,,,,,
<a href='http://www.jeddahbikers.com/vb/" target="_blank">http://www.jeddahbikers.com/vb/'>Jeddah Forums</a>|<a href='http://www.jeddahbikers.com/'>JEDDAH</a>|<a href='http://www.jeddahbikers.com/vb/" target="_blank">http://www.jeddahbikers.com/vb/f7/" target="_blank">http://www.jeddahbikers.com/vb/" target="_blank">http://www.jeddahbikers.com/vb/f7/'>Subjects</a>|
<a href='http://www.leeen.net/'>Movie</a>|<a href='http://links.jeddahbikers.com'>Links</a>|<a href='http://www.saudidrag.com'>Drag</a>|
<a href='http://www.jeddahbikers.com/vb/" target="_blank">http://www.jeddahbikers.com/vb/f13/'>Cars</a>|<a href='http://www.jeddahbikers.com/vb/" target="_blank">http://www.jeddahbikers.com/vb/f29/" target="_blank">http://www.jeddahbikers.com/vb/" target="_blank">http://www.jeddahbikers.com/vb/f29/'>Eve</a>|<a href='http://www.jeddahbikers.info'>Jeddah Bikers
</a>|
<a href='http://games.jeddahbikers.com'>hguhf</a>|<a href='http://www.m7mmad.com'>M7mmaD</a>|<a href='http://www.jeddahbikers.com/vb/" target="_blank">http://www.jeddahbikers.com/vb/f50/" target="_blank">http://www.jeddahbikers.com/vb/" target="_blank">http://www.jeddahbikers.com/vb/f50/'>Pictures</a>|
<a href='http://www.jeddahbikers.com/vb/" target="_blank">http://www.jeddahbikers.com/vb/f8/'>Sports</a>|<a href='http://www.enshr.com'>Enshr</a>
| <a href='http://forums.leeen.net'>Leeen</a>|<a href='http://www.7rkt.at'>7rkt.at</a>|<a href='http://www.jeddahbikers.com/Video" target="_blank">http://www.jeddahbikers.com/Video'>Video</a>|<a href='http://www.jeddahbikers.com/quran" target="_blank">http://www.jeddahbikers.com/quran'>Quran</a><p>&nbsp;</p>
# Posted By m7mmad | 2/1/08 2:26 AM
Hasan's Gravatar Nice ...

<p dir="rtl"><a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">?????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">??????</a> ? <a href="http://games2arab.net">???????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">??? ???</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">???</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">????</a> ? <a href="http://games2arab.net">??????</a> <a href="http://games2arab.net">???</a> ? <a href="http://games2arab.net">??? ???</a> ? <a href="http://games2arab.net">???? ???</a> ? <a href="http://games2arab.net">?????? ??????</a> <a href="http://games2arab.net">?????</a> ? <a href="http://games2arab.net">????? ?????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">???</a> ? <a href="http://games2arab.net">??? ???????</a> ? <a href="http://games2arab.net">????</a> <a href="http://games2arab.net">?????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">?????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">?????</a> ?<a href="http://games2arab.net"> ????? ?????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">???????</a> ? <a href="http://games2arab.net">????? ??????</a> ? <a href="http://games2arab.net">????? ?????</a> ? <a href="http://games2arab.net">????? ?????<span lang="ar-sa">?</span></a> ? <a href="http://games2arab.net"><span lang="ar-sa">?????</span></a><span lang="ar-sa"> <a href="http://games2arab.net">??? ???</a> ?<a href="http://games2arab.net"> ????? ?????</a> ? <a href="http://games2arab.net">????? ?????? ???</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">?????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">????</a> ? <a href="http://games2arab.net">?????</a> <a href="http://games2arab.net">??????</a> ?<a href="http://games2arab.net"> ????? ?????? </a></span></p>
<p dir="rtl"> </p>
<p dir="rtl"><span lang="ar-sa"><a href="http://kunashah.com">????? ???????</a> ? <a href="http://kunashah.com">??????</a> ? <a href="http://kunashah.com">???</a> ? <a href="http://kunashah.com"> ?????</a> ? <a href="http://kunashah.com">???????</a> ? <a href="http://kunashah.com">?????</a></span></p>
<p dir="rtl"> </p>
<p dir="rtl"><span lang="ar-sa"><a href="http://book2arab.com">??? ?????????</a> ? <a href="http://book2arab.com">????</a> ? <a href="http://book2arab.com">??????</a> ? <a href="http://book2arab.com">??? ??????</a> ? <a href="http://book2arab.com">???? ?????</a> ?<a href="http://book2arab.com"> ???? ?? ??? ??</a> ? <a href="http://book2arab.com">??? ????</a> ? <a href="http://book2arab.com">???????</a> ? <a href="http://book2arab.com">???? ??????</a> ? <a href="http://book2arab.com">?????</a></span></p>
# Posted By Hasan | 3/20/08 6:07 AM
?????'s Gravatar http://wardh.al-kaon.com/forumdisplay.php?f=1" target="_blank">http://wardh.al-kaon.com/forumdisplay.php?f=1
http://wardh.al-kaon.com/forumdisplay.php?f=4
http://wardh.al-kaon.com/forumdisplay.php?f=8
http://wardh.al-kaon.com/forumdisplay.php?f=1" target="_blank">http://wardh.al-kaon.com/forumdisplay.php?f=13" target="_blank">http://wardh.al-kaon.com/forumdisplay.php?f=1" target="_blank">http://wardh.al-kaon.com/forumdisplay.php?f=13
http://wardh.al-kaon.com/forumdisplay.php?f=1" target="_blank">http://wardh.al-kaon.com/forumdisplay.php?f=17" target="_blank">http://wardh.al-kaon.com/forumdisplay.php?f=1" target="_blank">http://wardh.al-kaon.com/forumdisplay.php?f=17
http://wardh.al-kaon.com/forumdisplay.php?f=25
http://wardh.al-kaon.com/forumdisplay.php?f=30" target="_blank">http://wardh.al-kaon.com/forumdisplay.php?f=30
http://wardh.al-kaon.com/
http://quraish.al-kaon.com/vb
http://www.wardh.al-kaon.com/forumdisplay.php?f=45...
# Posted By ????? | 3/22/08 9:04 PM
hydraulicx's Gravatar thanks
# Posted By hydraulicx | 3/22/08 9:45 PM
?????'s Gravatar <a href="http://wardh.al-kaon.com/">????? - ????? ???? ?????</a>
<a href="http://quraish.al-kaon.com/vb/">???? - ????? ????</a>
# Posted By ????? | 3/28/08 10:04 AM
# Posted By oil painter | 4/13/08 1:28 PM
yy's Gravatar http://www.cleat.bz
http://man3.jp
http://loan.saisoncard.co.jp
http://www.mvn.jp
http://www.2dou3.com
http://www.sugu-menkyo.jp/
http://www.tealla.com
http://www.valer.jp
http://www.ikyoku-jinji.com
http://www.wayzup.com
http://www.creationlife.co.jp/kenyu/atopy.html
http://www.cashing-view.com/
http://www.good-stay.net
http://www.monthly-urban.com
http://www.koukokunavi.jp
http://www.gaikaex.net/
http://www.works-core.co.jp/
http://www.securestage.com/
http://www.dentouin.or.jp/
http://www.j-pure.co.jp
http://drprojet.com/
http://www.adultshop.co.jp/
http://zensyoji.or.jp/
http://www.chizai-job.com/" target="_blank">http://www.chizai-job.com/
http://www.daichou-koumon.com/
http://www.legal-lab.com/
http://www7b.biglobe.ne.jp/~houjyu/
http://www.jinmyouji-nokotsudo.jp/
http://www.giftbank.co.jp/
http://www.sweepdesign.jp/wakaresase/
http://www.30upclub.com/items/muscle2.html
http://www.30upclub.com/items/shape_getia.html
http://www.miraiclub.jp/
http://www.adire.jp/cashing/index.html
http://www.le-poisson-japan.com/
http://www.icb-finishing.co.jp/
http://www.nipponsoft.co.jp/recovery
http://www.max.ac.jp/
http://www.chizai-job.com
http://www.green-f.biz
http://www.omakasetai.com/
http://www.icb-finishing.co.jp/image_consult/index.html" target="_blank">http://www.icb-finishing.co.jp/image_consult/index...
http://www.rs-holdings.net/
http://www.deli-spot.net
http://www.c-class.jp
http://www.koushouki.com
http://www.bmbeauty.co.jp/
http://pc.m-friend.jp/index1.asp
http://www.rs-group.jp/mb/index.html
http://movamova.net/?n=deco_top
http://digi-comi.net/
http://www.e-chiken.com/shikkan/gekkeikonnann.htm
http://ihinseiri.jp
http://www.soushow.co.jp/car/
http://www.daishin.biz/DAN/DAN.html
http://www.kaigo-sora.co.jp
http://www.kaisha-seturitsu.com
http://www.sanyukk.com
http://kango.bunnabi.jp/m/
http://www.propaganda-web.com/design/gcom285/mens....
http://www.refonavi.com/
http://www.hide-clinic.com/
http://www.ec-engine.jp
http://lei.ne.jp/h/w-dress
http://lei.ne.jp/h
# Posted By yy | 4/13/08 11:33 PM
aa's Gravatar http://www.e-jewelrybox.jp/
http:/www.fasciere.jp/
http:/www.feelweb.jp/
http://eco-latech.com/hotate/
http://eco-latech.com/hotate/
http:/www.j-payment.co.jp/
http:/www.j-payment.co.jp/
http:/www.tealla.com/
http://www.greenclick.jp/
http://www.greenclick.jp/detail.php?organization_id=50" target="_blank">http://www.greenclick.jp/detail.php?organization_i...
http://www.greenclick.jp/detail.php?organization_id=48
http://www.greenclick.jp/detail.php?organization_id=44
http://www.greenclick.jp/detail.php?organization_id=52" target="_blank">http://www.greenclick.jp/detail.php?organization_i...
http://www.greenclick.jp/detail.php?organization_id=51
http:/www.torabbit.co.jp/jp/hms.html
http:/www.chiken-jcpo.jp/
http:/www.chiken-jcpo.jp/
http:/www.jidousya-hoken.net
http:/www.jidousya-hoken.net
http:/www.jidousya-hoken.net
http://www.nightlifepartner.com
http://www.nightlifepartner.com
http://www.nightlifepartner.com
http://deai-ch.jp/?c=home
http://deai-ch.jp/?c=home
http://deai-ch.jp/?c=home
http://deai-ch.jp/?c=home
http:/www.jidousya-hoken.net/details/ameho
http:/www.jidousya-hoken.net/details/axa
http:/www.jidousya-hoken.net/details/mitsui
http:/www.jidousya-hoken.net/details/sonpo24
http:/www.jidousya-hoken.net/details/sony
http:/www.jidousya-hoken.net/details/zenerari
http://www.jidousya-hoken.net/details/zurich/
http:/w1-style.com/
http:/www.kitatoshimaen.co.jp/
http:/www.hakoya-net.jp
http:/www.sorama.jp
http:/loan.saisoncard.co.jp/
http://www.actostaff.jp/
http://www.actostaff.jp/
http://www.actostaff.jp/
http:/www.chorusline.jp
# Posted By aa | 4/13/08 11:34 PM
???????'s Gravatar <a href="http://www.4eqt.com/vb/forum35.html">????? ???</a> - <a href="http://www.directory.4eqt.com/">????</a> - <a href="http://www.4eqt.com/vb">?????? ????????</a> -
- <a href="http://www.4eqt.net/vb">????</a> - <a href="http://www.4eqt.org/dir">???? ??????? ??????????</a> - <a href="http://www.4eqt.org/dir/rr11.html">????? ? ???????</a> -
- <a href="http://www.4eqt.org"> ?????</a> - <a href="http://www.4eqt.org/dir/ff26.html" target="_blank">http://www.4eqt.org/dir/ff26.html">??????? ??????</a> - <a href="http://www.4eqt.org/dir/ff27.html" target="_blank">http://www.4eqt.org/dir/ff27.html">????? ???????</a> -
- <a href="http://www.4eqt.org/dir/ff25.html">??????? ?????? ????</a> - <a href="http://www.4eqt.org/dir/rr11.html">????? ? ???????</a> - <a href="http://www.4eqt.org/dir/ff11.html" target="_blank">http://www.4eqt.org/dir/ff11.html">??????? ?????? ???????</a> -
- <a href="http://www.4eqt.org/dir/ff10.html">??????? ?????? ????????</a> - <a href="http://www.4eqt.org/dir/rr33.html">????? , ??? , ?????</a> - <a href="http://www.4eqt.org/dir/ff52.html">??????? ??????</a> - - <a href="http://www.alnebras.com/">???????</a> -
- <a href="http://www.alnebrasanime.com">????? ????</a> - <a href="http://www.alnebrasgames.com">????? ?????</a> - <a href="http://www.alnebras.com/forums" target="_blank">http://www.alnebras.com/forums">???????</a> -
# Posted By ??????? | 4/18/08 5:15 PM
sefff's Gravatar <a href="http://www.pasokonippatu.com/">??? ??</a>???raid????????????????????????
<a href="http://www.pasokonippatu.com/">??? ??? ??</a>raid????????????????????????
<a href="http://www.pasokonippatu.com/">RAID ??</a>raid????????????????????????
<a href="http://www.pasokonippatu.com/">??? ?? ???????</a>???????raid????????????????????????
# Posted By sefff | 4/27/08 11:31 AM
yy's Gravatar http://www.j-gala.co.jp/
http://www.beatitudevfx.com/
http://fuzokudx.com/deli/?
http://fuzokudx.com/soap/?
http://www.kajimitsuo.com/
http://www.omakasetai.com
http://www.cleat.bz
http://man3.jp
http://loan.saisoncard.co.jp
http://www.mvn.jp
http://www.2dou3.com
http://www.tealla.com
http://www.valer.jp
http://www.wayzup.com
http://www.koushouki.com
http://www.bmbeauty.co.jp/
http://pc.m-friend.jp/index1.asp
http://www.rs-group.jp/mb/index.html
http://movamova.net/?n=deco_top
http://digi-comi.net/
http://ihinseiri.jp
http://www.soushow.co.jp/car/
http://www.daishin.biz/DAN/DAN.html
http://www.kaigo-sora.co.jp
http://www.kaisha-seturitsu.com
http://www.sanyukk.com
http://kango.bunnabi.jp/m/
http://www.propaganda-web.com/design/gcom285/mens....
http://www.refonavi.com/
http://www.hide-clinic.com/
http://www.ec-engine.jp
http://lei.ne.jp/h/w-dress
http://lei.ne.jp/h
http://www.legal-agent.jp
http://www.za-hitonotsuma.com
http://wikifipau.org/
http://www.good-stay.net
http://www.monthly-urban.com
http://www.koukokunavi.jp
http://www.gaikaex.net/
http://www.dentouin.or.jp/
http://drprojet.com/
http://www.adultshop.co.jp/
http://zensyoji.or.jp/
http://www.chizai-job.com/" target="_blank">http://www.chizai-job.com/
http://www.daichou-koumon.com/
http://www.legal-lab.com/
http://www7b.biglobe.ne.jp/~houjyu/
http://www.jinmyouji-nokotsudo.jp/
http://www.giftbank.co.jp/
http://www.sweepdesign.jp/wakaresase/
http://www.30upclub.com/items/muscle2.html
http://www.30upclub.com/items/shape_getia.html
http://www.miraiclub.jp/
http://www.adire.jp/cashing/index.html
http://www.le-poisson-japan.com/
http://www.icb-finishing.co.jp/
http://www.nipponsoft.co.jp/recovery
http://www.max.ac.jp/
http://www.chizai-job.com
http://www.green-f.biz
http://www.icb-finishing.co.jp/image_consult/index.html" target="_blank">http://www.icb-finishing.co.jp/image_consult/index...
http://www.rs-holdings.net/
http://www.deli-spot.net
# Posted By yy | 5/7/08 12:25 AM
downloads movie's Gravatar cool film <a href="http://super-movies.us">Download movie</a> new site
# Posted By downloads movie | 5/7/08 3:01 AM
BlogCFC was created by Raymond Camden. This blog is running version 5.5.006.