The Johnson Blog

Ramblings of a geek with a few hobbies…

Category: Uncategorized

  • StarUML

    Last night I conducted a little research into free/opensource UML diagramming tools for Windows.  I’ve done this search a few times during the past several years and have tried a variety of the top-dogs.  The best one I can recall was ArgoUML but it’s UI behaved so annoyingly unpredictable that I ended up ditching it after just a short amount of time.  A runner-up was Dia, but it was a more general purpose diagramming tool that, again, had a pretty clumsy interface.

     

    I didn’t expect to run across anything new in this search.  I actually came close to just buying Visio – it’s general purpose, obviously, but its interface is far from clumsy.  Then I ran across StarUML.  From the 30,000ft view, it appears to be a good tool.  It’s definitely worth putting into use and seeing how it handles under real usage scenarios.  Has anyone reading this ever used it?

    It’s a responsive win32 app, which pleases me because I’m sick of the crappy Java UML tool UIs I keep finding.   

    So I think I’ll give this one a shot for future development.  I’ll report back my findings.

  • 1 Year

    Today marks a year since I started regularly exercising.  Every weekday after work I’m in my basement lifting, with very few exceptions (which has been a pleasant surprise).  Now that the weather is turning nice, we’ll be able to get our bikes out and get back into that routine too.

    Wooo!

  • Current Book

    I am reading Code Complete, 2nd Edition (great Valentine’s Day gift Ana! 😉 and must say that it’s much better and far more interesting than I expected it to be. I thought of it as being one of those books that you just have to read, but would probably be a chore to do so. Boy was I wrong.

    If you’re in the business of writing software, you DO have to read this. It isn’t a high-level, software design book. Instead, it’s all about the small things you do and decisions you make at the mundane levels of coding – the naming of methods, size of methods, general formatting, comments, etc.

    It’s great to see this stuff written down.  In the time I’ve been coding, I’ve noticed myself continually refining my style and gradually honing in on many of the techniques and suggestions recommended in this book.  Now that I’ve seen it written down, I can have more confidence in my style – that it isn’t just my gut feeling about how the code should be written.

    I think that if I were running my own shop, I’d put this on a mandatory reading list for all of my developers.   It would fit in nicely with The Pragmatic Programmer and result in better code by better developers.

  • Payment Processors

    This evening I started to work on the registration process for Chef. There are so many ways to accept payments that it makes my head spin.  A couple months ago I signed up for a RegNow account and they even waived the $20 setup fee for me.  I’ve only recently started setting things up with them, and tonight ran through a Test payment.

    (more…)

  • Visual Studio followup

    Just a little follow-up regarding my issue with Visual Studio 2005 and Vista – I was able to make the problem go away by installing a hotfix for KB912019.

  • Chef Beta 2 Released

    The upload has just completed, so download it now!

    There are numerous bug fixes in this release, alongside the major new feature of Recipe Sharing.  Users can now create Chef Recipe Packages and give them to other Chef owners to place into their collection.  Please feel free to check it out and let me know what you think.

  • Strong Naming

    As a continuation of my last post, I thought some of you .net developers may be interested in hearing about some of the issues I ran into when strong naming.

    Admittedly, this is my first real attempt at using strong naming as it’s intended and therefore I just wasn’t aware of a few things when I was writing the code for Chef. Two days ago I created myself a strong name key (sn -k keyfile.snk) to sign my assemblies with. Due to the obfuscation step I need to do between compile and packaging, I need to delay sign the assemblies.

    In an exercise in curiosity I decided to sign the assemblies with the public key half of my keypair and keep the private key “secret”. Which really means just not kept inline with the sourcecode, but rather living in a key container in the machine store on the build box. This process was mostly problem-free, I used the sn.exe utility to: create a keypair; import the keypair into a key container; extract a public key from the key container; tell .NET to allow me to run partially signed assemblies with that public key token (sn -Vr *,) for debugging purposes. It all went well until I went into visual studio and told it to use the public key for signing – it kept telling me that it was password protected and prompting me for the password. I never put a password on it.

    So to get around that, I did the first step (creating the keypair) from Visual Studio and gave it a password, then it all worked just fine.

    One feature in Chef is the ability to create bookmarks. In my ignorance, I was simply using the BinaryFormatter in .NET and serializing to disk an array of these things for loading later. Little did I realize that all of the version information for the objects is written out – and if the objects live in a strong named assembly and the assembly version changes, it cannot deserialize! There’s supposed to be a way you can get around this, by setting AssemblyFormat on the formatter to Simple but it continued to write the version information. I also tried the route of using a custom Binder during deserialization and that didn’t work either.

    As a result, last night I rewrote that code to serialize/deserialize the information myself with XmlWriter and XPathDocument rather than rely on .NET. Version issues gone. That’ll definitely be something I’m not likely to forget anytime soon. I need to rewrite one other small area this weekend for a similar problem, then I can move on. All that’s standing between me and Beta 2 is some thorough testing, a website update, and a file upload. Should all happen this weekend.

  • Automated Builds

    Several hours today were spent advancing my automated build process for Chef. I’ve had CruiseControl.NET building the software for months now but I’ve had a gaping hole in the processes that has been staring at me since I started it.
    What is this hole you ask? Version numbering.

    Why is versioning so hard in this day and age? Seriously. With .NET there are all these really nice and easy attributes that all you have to do is type in the version string you want your assembly/binaries to have. That works really well, until you want those numbers to be dynamic – then it requires modifying a sourcecode file with a new hard coded string. But what about 1.0.*? you ask, referring to the ability to have the compiler generate parts of it for you. Well, what real good is it to have version numbers that you don’t control? If they get generated by the compiler it just makes everything difficult – like translating between a version label from CruiseControl to the state of source control at the time of the build. Maybe I’m missing something here, but I don’t think I am.

    Another versioning issue is setup projects. The setup projects created in Visual Studio have a version number, product code, and upgrade code. Counter to intuition, the upgrade code is the same across versions for a given product and it’s the product code that changes between versions. Sooo, if you bump the version number you also need to create a new Product Code guid. Again, there’s no way (that I know of) to do this via command-line. Microsoft thinks you should open the setup project and bump the version number manually. They even go as far as prompting you to create the new Product Code guid when you do this. Microsoft, the creator of the great tool that is Visual Studio, make it very hard to do the Right Thing and have automated builds. Tisk, tisk.
    And finally, the version string has implications on product keys – both generation and verification. For instance, if Suzie buys Chef 1.2, I need to have a way to have that license key work for 1.2.5, 1.4, and 1.9; but not 2.1. And I need to be able to forget about the details rather than think about it every single time I create a release. (Chef Beta 2 is days away, by the way).

    My solution to these problems required a little planning, a little coding, and a lot of time waiting for test builds to be created. My process is as follows.

    • I go to the CruiseControl.NET Dashboard website and click Force to initiate the build.
    • The last successful build label is incremented (from 0.9.2.2 to 0.9.2.3, for instance).
    • The latest sourcecode is retrieved from the Perforce depot
    • The code I wrote tonight gets executed on the sourcecode tree, passing in the newly incremented build number
    • A new product code guid is generated
    • Every AssemblyInfo.cs file is edited and all AssemblyVersion attributes are changed to use the new version number
    • The specified .vdproj files (Visual Studio setup projects) are edited to modify the ProductVersion with a trimmed version of the current build version/label. The new ProductCode is also inserted
    • Visual Studio is called upon to perform the compile.
    • CruiseControl puts the generated installation packages out on the network
    • A sourcecontrol Label is created in the Perforce depot, denoting the state of the sourcecode at the time of the build.

    And that’s it. With a single click I have installation packages created with no further involvement. The files included in the package all have a version number that I can trace back to a CruiseControl label (to view build logs and in the future unit test results) and then back to a Perforce label with the same name to view the sourcecode files at were a part of the build. I’ll then also be able to compare those file versions with the recorded version numbers of bug fixes in FogBugz – something that will surely save time once Chef is in the wild.

    Microsoft, please please please make this better in the future.

  • Bug Tracking

    The development of Chef has been pretty interesting thus far. I had almost forgotten how much work is involved in getting an application shippable like this. My previous experience was with the release WakeUp! Alarm Clock, but that was as off-the-cuff as you can get: simple version control (umm, none at first then graduated to CVS); no bug tracking; no build process – builds were simply done on my development box; no unit test for regression testing (unit tests, what are those?!); and really no plan whatsoever. But I was in college and had no real experience in software, it was my first.
    In these regards, Chef is completely different. I mean completely. My development environment is quite extensive in comparison to the days of old: Perforce for source control; FogBugz for bug tracking, support, forums and a bunch of other things; an automated build system driven by CruiseControl that give me a build and install at the click of a button; full NUnit test cases for the entire Chef API; and multiple VMWare environments for testing. Future posts may include some information on some of these topics, but for now a little information about FogBugz.

    (more…)

  • Recipe Sharing and Beta 2

    Chef Beta 2 isn’t quite as far along as I’d like it to be thanks to the Holidays and work.  I’m targeting the middle of January for its release and that’s coming up fast.  A couple dozen bug fixes and features/enhancements since Beta 1 have been done though, with the major ones out of the way.

    One of these big features is Recipe Sharing, which I think will be a compelling reason to actually put recipes into the application.  It’ll be very handy to just click the mouse  a few times and be able to give recipes to fellow Chef users. And for sharing with non-Chef users, there’s always copy to clipboard.

    So those of you interested should keep an eye out in the next few weeks for the final Beta release, with 1.0 hopefully coming in another month+ after that.