Monday, April 14, 2008
SylviaParkArchitectureChat.JPG

Hi All, I'm back from my honeymoon... and so that means it's time to resume the Sylvia Park Architecture Chat.

Next one is scheduled for this Thursday, 17th April 2008 at 11:30am at Garrisons.

No set topics this week - just an open floor / general catch up - though if anyone has any ideas just leave a comment on this post or send me an email.

Look forward to seeing you all there!

posted @ Sunday, April 13, 2008 10:00:56 PM (New Zealand Standard Time, UTC+12:00)    Comments [2] | Trackback |
Someone recently sent me an email letting me know my NUnit "support" for IronPython project only targeted NUnit 2.2 and was a little out of date. 

(For those not sure what I'm talking about - perhaps take a look back at these posts (1, 2) from October of 2006)

I didn't realise anyone was actually using it - but I see it's being linked too from the IronPython cookbook, so I decided to take half an hour and update it to target NUnit 2.4 - I left it targeting IronPython 1.1 however instead of 2.0 (IronPython users should be able to handle that task if required).

The usage changes a little from NUnit 2.2 to 2.4, instead of deriving your tests from a custom TestSuite class you now just annotate an empty class with some attributes... makes everything a little cleaner as your project doesn't need to reference IronPython etc. any more.

[PythonSuite, Script(FileName = "MyPythonFixture.py")]

public class MyPythonSuite

{

}


The python files are embedded resources by default (though it's a minor code change to support external python files as well) - you can include multiple Script attributes for a single suite as well, if required.

If you want to dynamically include python resource files based on their content i.e. all embedded resources with a first line containing "#test" then you would do this:

[PythonSuite(DiscoverEmbeddedResources = true, DiscoveryKey = "#test")]

public class DynamicPythonSuite

{

}


The project is now split into two assemblies.
  • IronPythonTest.Addin
  • IronPythonTest.Framework
The Addin assembly needs to be installed into your NUnit 2.4 add-ins directory i.e. C:\Program Files (x86)\TestDriven.NET 2.0\NUnit\2.4\addins - you will need to place the IronPython assemblies in there as well if they're not registered in the GAC.

Only the framework assembly needs to be referenced in your project so you can have access to the PythonSuite and Script attributes.

And that's about it, all other questions should be answered in the posts from 2006, or just leave a comment on this post if you have any trouble.

Code can be downloaded from here.

posted @ Sunday, April 13, 2008 9:25:23 PM (New Zealand Standard Time, UTC+12:00)    Comments [0] | Trackback |
 Tuesday, March 11, 2008
So just a short note to say that I got married on the 23rd of Feb to the love of my life Renee... a good time was had by all, even though the weather was horrific (rained non-stop for 2 days) - big thanks to Ben, Nick, Stu, Sacha (my Entourage) and everyone else for helping with the last minute re-organisations :)

I'm now on honeymoon in Europe... currently lurking in Rome for a few days to take in the local sights - however we'll be making our way to England soon to catch up with some family.

For anyone curious about the Architecture Chat, it'll start up again in April once I'm back in New Zealand and my life has returned to some semblance of normality.

alex_and_renee.jpg

alex_colleseum.jpg

posted @ Tuesday, March 11, 2008 7:24:17 AM (New Zealand Daylight Time, UTC+13:00)    Comments [7] | Trackback |
 Wednesday, February 20, 2008
So a few weeks back there was a post on the Genome TeamBlog which included a link to one of my lambda abuse posts from last year.

At any rate - the problem they faced was that with code like this:

DataContext Context = new DataContext();

string connStr = "";

 

DataDomainSchema schema = DataDomainSchema.LoadFrom("SomeMappingFile");

schema.CreateDbSchema(connStr);

 

DataDomain dd = new DataDomain(schema, connStr);

 

using (Context.Push(ShortRunningTransactionContext.Create()))

{

    Customer tt = dd.New<Customer>();

    tt.Name = "TechTalk";

 

    RootProject tt_hk = dd.New<RootProject>();

    tt_hk.Name = "Housekeeping";

 

    ChildProject tt_hk_hol = dd.New<ChildProject>();

    tt_hk_hol.Name = "Holiday";

    tt_hk.ChildProjects.Add(tt_hk_hol);

 

    ChildProject tt_hk_ill = dd.New<ChildProject>();

    tt_hk_ill.Name = "Illness";

 

    tt_hk.ChildProjects.Add(tt_hk_ill);

 

    tt.RootProjects.Add(tt_hk);

 

    RootProject tt_g = dd.New<RootProject>();

    tt_g.Name = "Genome";

 

    ChildProject tt_g_dev = dd.New<ChildProject>();

    tt_g_dev.Name = "Development";

    tt_g.ChildProjects.Add(tt_g_dev);

 

    ChildProject tt_g_mnt = dd.New<ChildProject>();

    tt_g_mnt.Name = "Maintenance";

    tt_g.ChildProjects.Add(tt_g_mnt);

    tt.RootProjects.Add(tt_g);

 

    Context.CommitCurrent();

}


You ended up with a very flat member initialization structure plagued with:
  • Having to explicitly name child instances being added to collections - there's a lot of unnecessary noise.
  • Where you can't easily see the structure i.e. it's not visually hierarchical, so at a glance you're not sure just what the structure is compared to say looking at an xml document with nested elements where it's quite obvious.
At any rate, the guys at the Genome project attempted to overcome this using the nested lambdas (what I coined a "DSL" at the time, though It's a terrible and inaccurate term for what's effectively just a bit of a "trick" relying on side effects of evaluation) - it didn't go so well though because of course at first glance the syntax look strongly typed, the reality is it's anything but, and refactoring tools just aren't going to do things like renaming of keys in the hash style syntax i.e. key => value, because the key is just a Lambda parameter.

But all is not lost - of course with C# 3.0 we already have a great syntax for doing this kind of hierarchical initialization, say for this set of types:

public class BlogPost

{

    private readonly List<string> _tags = new List<string>();

    private readonly BlogUser _createdBy = new BlogUser();       

 

    public string Title { get; set; }

 

    public string Body { get; set; }

 

    public List<string> Tags

    {

        get { return _tags; }

    }

 

    public BlogUser CreatedBy

    {

        get { return _createdBy; }

    }

 

    public BlogUser LastEditedBy { get; set; }

}

 

public class BlogUser

{

    public int Age { get; set; }

    public string Name { get; set; }

}


We could do something like this to initialize an instance of BlogPost:

BlogPost post = new BlogPost()

{

    Title = "Post on Lambdas",

    Body = "This is a post...",

    Tags =

    {

        ".Net",

        "Lambda",

        "C#3.0"

    },

    CreatedBy =

    {

        Name = "Jane Doe",

        Age = 35

    },

    LastEditedBy = new BlogUser()

    {

        Name = "Joe Bloggs",

        Age = 25

    }

};


But the catch for the Genome guys is that it looks like they need to construct their entities using their DataDomain class ...  I don't know about how there product works but I can only assume it's either to get a transparent proxy for change tracking purposes or to enlist it into the current session etc. (though if it's just to enlist the entity I can't see why they need to bother with getting the DataDomain to create a new instance, surely they could manually enlist it).

At any rate that's irrelevant :)

So I got to thinking that of course member initialization is one of the Lambda-friendly things we can do because it's expressed in a single statement - so we can happily take the above code snippet and express it like so:

BlogPost post = evaluator.Create(() => new BlogPost()

{

    Title = "Post on Lambdas",

    Body = "This is a post...",

    Tags =

    {

        ".Net",

        "Lambda",

        "C#3.0"

    },

    CreatedBy =

    {

        Name = "Jane Doe",

        Age = 35

    },

    LastEditedBy = new BlogUser()

    {                   

        Name = "Joe Bloggs",

        Age = 25

    }

});


Where evaluator is an instance of a class I wrote called ServiceInjectionEvaluator ... the Create method (as you can probably guess) has the following signature:


  public
T Create<T>(Expression<Func<T>> expression)


The service injection evaluator just relies on being configured with an IServiceProvider capable of resolving instances of types... at this point we just unwind the expression, substituting our own instance activation mechanism wherever we stumble upon a NewExpression and walking through the expressions executing each bit as required - though it makes the assumption that you're going to have either a New or MemberInit expression at the top level of the Lambda, otherwise we just compile the whole thing and throw it back without any changes (because I don't want to bother writing code to visit the other types of expression node).

public class ServiceInjectionEvaluator

{

    private readonly IServiceProvider _serviceProvider;

 

    public ServiceInjectionEvaluator(IServiceProvider serviceProvider)

    {

        _serviceProvider = serviceProvider;

    }

 

    public T Create<T>(Expression<Func<T>> expression)

    {

        switch (expression.Body.NodeType)

        {

            case ExpressionType.New:

            case ExpressionType.MemberInit:

                return (T)EvaluateExpression(expression.Body);

            default:

                return expression.Compile().Invoke();

        }

    }

 

    private object GetInstanceWithInit(MemberInitExpression expression)

    {

        object instance = GetInstance(expression.NewExpression);

        foreach (MemberBinding binding in expression.Bindings)

        {

            ApplyBinding(instance, binding);

        }

        return instance;

    }

 

    private void ApplyBinding(object instance, MemberBinding binding)

    {           

        switch (binding.BindingType)

        {                   

            case MemberBindingType.Assignment:

                ApplyAssignmentBinding(instance, (MemberAssignment)binding);

                break;

            case MemberBindingType.ListBinding:

                ApplyListBinding(instance, (MemberListBinding)binding);

                break;

            case MemberBindingType.MemberBinding:

                ApplyMemberBinding(instance, (MemberMemberBinding)binding);

                break;

            default:

                throw new NotImplementedException();

        }

    }

 

    private void ApplyMemberBinding(object instance, MemberMemberBinding binding)

    {

        PropertyInfo property = (PropertyInfo)binding.Member;

        object memberValue = property.GetValue(instance, null);

        foreach (MemberBinding childBinding in binding.Bindings)

        {

            ApplyBinding(memberValue, childBinding);

        }

    }

 

    private void ApplyListBinding(object instance, MemberListBinding binding)

    {

        object list = ((PropertyInfo)binding.Member).GetValue(instance, null);

 

        foreach (ElementInit elementInit in binding.Initializers)

        {

            Delegate compiled = Expression.Lambda(Expression.NewArrayInit(typeof(object), elementInit.Arguments.ToArray())).Compile();

            object[] arguments = (object[])compiled.DynamicInvoke();

            elementInit.AddMethod.Invoke(list, arguments);

        }

    }

 

    private void ApplyAssignmentBinding(object instance, MemberAssignment assignment)

    {

        object value = EvaluateExpression(assignment.Expression);

 

        PropertyInfo info = (PropertyInfo)assignment.Member;

        info.SetValue(instance, value, null);

    }

 

    private object EvaluateExpression(Expression expression)

    {

        switch (expression.NodeType)

        {

            case ExpressionType.New:

                return GetInstance((NewExpression) expression);

            case ExpressionType.MemberInit:

                return GetInstanceWithInit((MemberInitExpression) expression);

            default:

                return Expression.Lambda(expression).Compile().DynamicInvoke();

        }

    }

 

    private object GetInstance(NewExpression expression)

    {

        return _serviceProvider.GetService(expression.Type);

    }

}


The only thing left is to then either provide an existing instance of IServiceProvider (i.e. the Windsor container) or creating an adaptor

public class DataDomainServiceProvider : IServiceProvider

{

    private readonly DataDomain _domain;

    private static readonly MethodInfo member = typeof(DataDomain).GetMethod("New");

 

    public DataDomainServiceProvider(DataDomain domain)

    {

        _domain = domain;

    }

 

    public object GetService(Type serviceType)

    {           

        return member.MakeGenericMethod(serviceType).Invoke(_domain, null);           

    }

}


There's a few things the enterprising mind can do with substitutions and member initialization I can think of, especially around IoC - anyone else have some ideas or thoughts on using/abusing them?

 |  | 
posted @ Wednesday, February 20, 2008 1:01:38 AM (New Zealand Daylight Time, UTC+13:00)    Comments [0] | Trackback |
 Wednesday, February 13, 2008
I have to say SharePoint just continues to underwhelm me (as a developer, I don't mind the product itself I should probably make that clear)...

A couple of quick examples:

Configuration over Convention

Regional settings and dates are a prime example - for instance you get a <SharePoint:DateTimeControl /> which brings with it a common look and feel for date pickers in SharePoint... and on the various pre-canned forms etc. everything appears to display with the current user/sites regional settings. 

However whenever you use this control you end up resorting to code along the lines of:

SPRegionalSettings regionalSettings = SPContext.Current.Web.CurrentUser.RegionalSettings ?? SPContext.Current.Web.RegionalSettings;

myDatePickerControl.LocaleId = (int)regionalSettings.LocaleId;


Or extending your control yourself to do the same... why on earth would I not want the control to default to the current regional settings?

Again the lack of convention rears it's ugly head when working with SharePoint's SPGridView - if it's going to a render a date, why doesn't it render it with the current user's Locale in mind (which I've talked about in this hack last year) - shouldn't these controls be taking that burden of responsibility away from me?

Useless Extensions Points

When something is extensible in SharePoint, then generally:

  1. It's not documented (except by the community)
  2. It doesn't really work for the most common scenario.

Take the SPGridView and SPDataSource combo - with this you can setup a grid to feed from a CAML query pretty easily ... and it's smart enough to add the required <OrderBy/> to the underlying CAML query when you sort on a column... so far so good.

But what if you want to sort on more then one column?

Well, you could try specifying more then one column in the grid's SortExpression - but this causes the SPDataSource to spit the dummy... so obviously the first question is why doesn't that work, when it works for other data sources, and would have been trivial to implement.

But not all hope is lost after opening reflector and perusing the code (which thankfully wasn't obfuscated in this case, though quite a bit of it is) you see that in fact you can specify additional sort columns in the original query and the SPDataSource is smart enough to keep them and insert the new field references into the existing <OrderBy/>... a handy way for extending your query to have a number of default sort columns.

But there's a catch, it sticks the entries in the wrong position, so it will sort by the fixed columns first - rather then last - making it all but useless in most cases (users expect to click on a column and see the results sorted by the selected column first) .. And to be honest this still wouldn't worry me if I was given at least one virtual method to override allowing me to mutate the CAML query appropriately.

posted @ Tuesday, February 12, 2008 8:28:02 PM (New Zealand Daylight Time, UTC+13:00)    Comments [2] | Trackback |
 Thursday, February 07, 2008
Hi all...  So first off, there's no Architecture Chat today - I'm tied up with prior commitments (due to the short week) so it's going to be held Thursday next week -14th of February, appologies to anyone who was going to attend.

As far as possible topics, what about:
  • All the interesting stuff that came out of Lang.Net (or at least was brought to my attention by that symposium)
  • Cosmos - a cute operating system written in C#.
  • Charlie Calvert's started posting on the future of C# (4.0).
  • Jumbala - another interesting step down the MDA road, this time as an action language for UML state machines... which can actually be compiled.
  • .Net Mass Downloader - here's something I was thinking of doing myself, a mass download for all the .Net Framework source code.
  • Resharper 4 EAP delayed.
  • Lightspeed 1.2 released.
  • The rise of WPF vs WinFroms.
  • The Auckland dev community are slackers compared to Tauranga.
  • Vista SP1 and Windows 2008 RTM.
No doubt there will be plenty more.

See everyone next week!

posted @ Wednesday, February 06, 2008 6:39:37 PM (New Zealand Daylight Time, UTC+13:00)    Comments [2] | Trackback |
 Monday, February 04, 2008


So the sun has set on day 1 of the Summer Road Trip 2008 in Auckland - The Presentation was done by JB, Chris and Myself this afternoon - it went very well, people enjoyed the content and the mix of integration, server management, database and development topics really meshed together nicely I thought... 

There was enough to keep everyone interested, regardless of the hat you wear - and plenty of prizes too - well all love swag right?!

Big thanks to our MC Jaqcui, who handled the Intro and Outro and let everyone know about the local Ellerslie & Central Auckland user group's - where I'll be sure to run a few sessions later in the year... and of course Darryl for handling some of the finer details like the venue, lunch, and the dinner afterwards - much appreciated.

For all those that came along - first off thanks for coming, obviously without participation in these events they'll just dry up and stop happening - and second don't forgot that there is no time like the present to start picking up these technologies and developing applications with and for them - the products are all but ready, so why can't you be (and not only are they great technologies, they're fun too).

The next presentation is in Tauranga - and there are still places left, so sign up here - It's going to be on tomorrow (5th of Feb) at 1:00pm I believe.

And finally a short plug ;o)

SylviaParkArchitectureChat.JPG

For anyone that found this presentation interesting and would like to discuss the technical details of things like emerging technologies, general software Architecture, Developer Tools, Running software businesses etc.  I also organise the local Sylvia Park Architecture Chat - which is a pretty casual meeting of some very smart people in the .Net Community. 

We normally get together on a fortnightly basis at Garrisons in Sylvia Park and are always keen to have more people/fresh faces to come along and join in our discussions or even just float some development/architecture questions or problems you might have that the group can help solve - keep an eye on my blog, or the dot.net.nz mailing list for announcements of when we'll next be meeting up :)

And all are welcome of course!

posted @ Monday, February 04, 2008 8:24:40 AM (New Zealand Daylight Time, UTC+13:00)    Comments [0] | Trackback |
 Wednesday, January 23, 2008
The Sylvia Park Architecture Chat is to be held this Thursday, 11:30am at Garrisons in Sylvia Park.

I think we are well and truly into the digestion phase after being flooded with so many product drops and previews over the last few months – announcements are low, but the amount of content about taking advantage of what’s finally in our hands is increasing... arguably this is far more interesting/rewarding then actually getting the tech drops in the first place.

At any rate, things that have caught my eye this week (not much as you’ll see, I haven't had much opportunity to read blogs over the last few weeks):

If anyone has any topic suggestions, either fire me a comment/email or just bring yourself along – all are welcome.

posted @ Tuesday, January 22, 2008 9:43:41 PM (New Zealand Daylight Time, UTC+13:00)    Comments [0] | Trackback |
 Tuesday, January 15, 2008
Sorry about the late write-up, been a little busy!

Small turn out, with 5 us in all, including new comer Jamie – a recent graduate from Auckland University, it was great to talk with someone just entering the industry proper and I think everyone else found it very interesting to hear about what's going on at Auckland Uni.

So first off we discussed adventures with alternative licensing products – Gareth had a few war stories, and mentioned he’s returned to using .Net Reactor and got a refund on the previous product he tried out because it just wasn’t living up to expectations, and had some questionable weak points.

We talked about the C5 Generic Collection Library – though none of us have attempted to use them in anger, a few people had heard about them recently because it seems to be doing the podcast/blog rounds, even though the project first debuted at the start of 2006, and was in development well before then.

The classes were developed at the IT University in Copenhagen, and feature a large number of specialised collections, as well as introducing features to provide event handlers and sliding views, support for clearing collection ranges etc.

There is a recent video on MSDN Channel 9, which is worth a watch as well.

Because we didn’t have it in our hands last year before I wrapped up the Architecture Chat I discussed the ASP.Net Web Extensions CTP, mentioning the amount of community interest in MVC and that the Data Services (Astoria) is looking better and better.

From there we talked about the MVC Contrib. project (and community) that’s sprung up after the ASP.Net MVC release, which is getting some New Zealander's attention around the world because of their contributions of both an XSLT View engine and NHaml View engine – the contrib project is also providing integration with the popular IoC containers in .Net and a number of other extensions.

I talked about F# parsing, and my explorations of writing parsers in F#, especially after reading the series of posts from DevHawk (Harry Pierson), and experimenting with writing DSL’s in F# by hand.  I think my next "goal" is to master integrating F# libraries into my C# code, so I can commercialize on it and start weaving it into my day to day tool set.

I’m not sure I articulated how elegant F# syntax can be - but hand writing custom parsers in F# with the aid of Active Patterns is much nicer then the equivalent in a language like C#, If you’re following the pragmatic programmer guidelines of learning a language a year, you could do much worse than to learn F# for 2008, it certainly gives the brain a good workout :)

From their I mentioned PEX for use in automated white box testing – Jamie said he had worked on a 4th year project to do automated black box testing, and found it interesting that white box testing of this nature could be made viable/useful... PEX seems to have done it though.

Though it’s not been made available to the general public as yet (only academia) – I suggest having a listen to this hanselminutes podcast, and then watching this screencast to get a better idea of just what PEX is doing/aiming to achieve...  I find the support for mocking particularly interesting, as I’m always sceptical of automated test generation, as it normally falls apart once you start to work objects when have numerous injected dependencies that are used by the class to do it's work.

Last of all I mentioned TeamCity (JetBrains CI & Build server) Professional Edition is free, and I’ve been starting to play with it - and considering migrating over from my current CruiseControl.Net setup for new projects, I’m going to trial it on a small project and see if it’s worth moving to for what I do.

Last of all – though I forgot to mention it at the time - I’ve also been looking at Jazz (or more so Rational Team Concert) lately, it certainly looks to resolve many of the headaches I suffer with managing concurrent versions of products, especially from the build server perspective – obviously anything with the name “Rational” is to be feared by the small or micro ISV because of prohibitive costs – but it’s nice to see just how they approach solving the problem, as shown in the video "fixing a bug in a previous release".

Not a bad start to the year, hopefully we can make the next one bigger and better, and maybe get some more long-running architectural discussions going on ... maybe around Behavior Driven Development/Design or maybe Feature Driven Development and what makes it more suitable for fixed-price jobs.

See you all next time!

posted @ Monday, January 14, 2008 7:50:00 PM (New Zealand Daylight Time, UTC+13:00)    Comments [0] | Trackback |
 Wednesday, January 09, 2008
Update: 22nd May 2008 - Please if you have any .Net reactor related queries, post them to this google group, rather then emailing me directly, as you're more likely to get a response.  Cheers!

If you recall in the last Architecture Chat (#21) Gareth of Slyce Software mentioned the demise of .Net Reactor, a German code obfuscation product that many users swear by.. but over the past 2 or so months it went completely dark as the company ceased responding to any correspondence, or making releases - where as prior they were almost phenomenally fast to get back to queries, and we releasing every couple of weeks.

Well I got an interesting email from a .Net Reactor user who has been suffering the same issues, not having a response out the company in the last couple of months but he did advise that releases are starting to flow out the company again, with 3 new versions released in December... so things could be looking up, even if the wall of silence continues.

Apparently it got so bad that even some add-on vendors have withdrawn in-prorgess products due to a lack of communication with Eziriz - what I find interesting here is how quickly all the good work you can do building up a community around a product for developers can unwind - and demonstrates how important a visible "heartbeat" for a product is to keeping trust in your project - be it through regular releases, actively participating in forums and mailing lists or at the very least publishing the odd bit of news on your site.

Fingers crossed the company starts answering peoples emails again at any rate - it'd be a shame to see a popular product's community turn their back on it just because their worried it's going to dissappear completely.

Right, so yes, there is a point to this post - assuming the worst and .Net Reactor is winding down, can anyone else recommend an obfuscation/licensing products in the sub 300 US$ range that works well?

Edit:

Shortly after posting this I was notified that Apparently everything is good once more in .Net Reactor land with the lead developer having been taken away from development due to other life issues taking over in the later part of last year, but he's back and developing/communicating once more so it should be "business as usual".

I look forward to seeing what cool things Eziriz get up to in 2008!

Edit (Again):

And shortly after that I also got an email, so everything is definitely fine once more with .Net Reactor:
Dear Mr. Henderson, I am sorry for the problems you had with my product support. Gareth Hayter referred me to your blog. Please be sure, .NET Reactor product development/support is firing on all cylinders again.

Best regards,

Denis Mierzwiak, Chief Technical Officer.
posted @ Wednesday, January 09, 2008 6:17:54 AM (New Zealand Daylight Time, UTC+13:00)    Comments [2] | Trackback |
Search
FeedCount

Tags...
Who am I?
Alex Henderson
Alex Henderson
Auckland, New Zealand
Managing Director at Dev|Defined Limited

"Self Confessed Coding Junky for 15 years"
View Alex Henderson's profile on LinkedIn
 
Mobile: +64-21-402-969
Email: bittercoder 'at' gmail 'dot' com
MSN: bittercoder_nz@hotmail
Skype: alex.devdefined
Navigation