Archive for the ‘Coding’ Category
Building the Project Euler framework, part 2
In Part 1, I showed a basic problem runner framework for Project Euler, however there are a number of ways in which we can improve it. For example:
- How can we run a specific problem?
- How can we hide the answer, but still run the problem?
- How can we avoid manually adding problems to the List of problems?
- Not really to do with the framework, but how can we automate building everything?
I’ll demonstrate some ways that we can do all that, except for the 4th option, which is handled by Ant.
Improving the framework
The first thing that we can do is to add a utility function that handles showing the answers, this way we only have one place in the code that we need to update when we want to change how the answers are shown.
private void showAnswers(Problem problem){ System.out.println("Problem: " + problem.id() + ". Answer: " + problem.answer() + ". Time: " + problem.time() + "s");
}
To run a specific problem, we need to overload the run() function to access the problem we want, and show the answer.
public void run(int i) { try{ Problem problem = (Problem) problems.get(i);/* problem list starts at 0 */ if (problem != null) { showAnswers(problem); } else { System.out.println("There doesn't appear to be an answer for problem " + i); } } catch (IndexOutOfBoundsException e){ System.err.println("There doesn't appear to be an answer for problem " + i); } }
As you can see, we get the specified problem out of the list, and use our new showAnswers() function to display the answer. I’ve tried to include some good error checking - we might try to get a problem that doesn’t exist.
In order to prevent the answer from being shown, we can add a boolean parameter to the run() and showAnswers() functions.
private void showAnswers(Problem problem, boolean showAnswers){ if(showAnswers){ System.out.println("Problem: " + problem.id() + ". Answer: " + problem.answer() + ". Time: " + problem.time() + "s"); } else { problem.answer(); /* we still need to work out the answer */ System.out.println("Problem: " + problem.id() + ". Time: " + problem.time() + "s"); } } public void run(boolean showAnswers) { for (Problem problem : problems) { if (problem != null) { showAnswers(problem, showAnswers); } } }
Dont’t forget to change the overloaded run(int i) to run(int i, boolean showAnswers). This way we can control exactly whether to show the answers when we run all the problems, or to show the answer if we run a specific problem.
One thing remains to do, and that is to correctly parse the command line arguments to control whether the answers are shown or not. We want to handle something like this:
C:\development\euler>java -jar ProjectEuler.jar 42 -noanswer
Where 42 is problem 42, and -noanswer clearly specifies not to show the answer. We’ll also need to handle all combinations of this as well, such as:
C:\development\euler>java -jar ProjectEuler.jar 42
Which should show the answer. I’m not going to show my code for parsing the command line arguements, I’ll leave that as an exercise for the reader, as I believe that it is adequately covered elsewhere on the internet, and in any number of Java books.
The more astute among you will notice that I’ve not mentioned how we are going to avoid manually adding problems to the List of problems. I’ll cover that next time.
Source control using Dropbox
Everyone developer should use some form of source control. It’s like an unwritten law, if you don’t use it, then you should - as long as it isn’t sourcesafe.
A few weeks ago, I recently managed to get hold of an invite to Dropbox, which describes itself as “Secure back up, sync and sharing made easy”. I’ve been using it both as a basic form of source control, and because I always tend to forget my usb pendrive, as a portable storage device.
The great thing about Dropbox is that you get 2gb of free storage. So far, I’ve sync’d a few photo’s, some word documents and pdf’s and the Java source for my Project Euler code, and according to the Dropbox client on my laptop, I’ve used 0.1% of 2gb. This is more than enough for me, and more than likely I’ll use it for some more coding projects. I’d like to see how a Visual Studio project takes to being sync’d across different computers.
With Dropbox, you get complete file history, so if you mistakenly remove some code that turns out to be pretty vital… you can get it back using the simple to use web interface. While you can share folders, and allow people to modify shared folders, I’m not too sure that it would work too well for collaborative software development. I think it would be far better to get a proper form of source control running on a server both parties have access to. There are plenty of proper source control providers out there with free options, and I am considering moving my code onto one of those, if I can find one that has a reasonable yearly subscription.
For my current requirements, it suits me just fine. I realise that Dropbox is not intended to be a source control system, however… When the client is able to sync specific folders that you tell it to, it will be perfect.
Building the Project Euler framework, part 1
As promised, here is the first part of the series of posts I hope to write demonstrating how I wrote my problem runner framework for Project Euler.
Firstly, before you continue reading, I suggest that you research the Command pattern, Google will also provide you with some good sources in your research.
Done? Ok then. It shouldn’t matter what IDE you use, I am using Eclipse (ganymede), any IDE should do. If you don’t know what an IDE is, then go and find out, and then come back.
Start Coding
In your IDE, and following the Java package naming conventions, create a package to hold the Project Euler code, for example: co.uk.temporalcohesion.euler.problems. Because we are going to need an interface, also create a package to hold those, as this can help keep things more organised, for example: co.uk.temporalcohesion.euler.interfaces
Let’s define that interface
public interface Problem { /** * Answer method. Returns the answer for the problem * @return - the integer answer to the problem */ String answer(); /** * The problem number. * @return - The number of the problem */ int id(); /** * How long does it take to work out the answer? * @return - The time in seconds it takes to work out the answer to the problem */ double time(); }
Before we move on an implement that interface in a problem, let’s write the basic problem runner itself. We’ll need a way to register an instance of a problem, and a way to run the problem and get the answer.
public class Euler { private List<Problem> problems = new ArrayList(); public Euler() { problems.add(new One()); } private void run() { for (Problem prob : problems) { System.out.println("Problem " + prob.id() + ": " + prob.answer()); } } public static void main(String[] args) { new Euler().run(); } }
That’s pretty much all you need for a basic problem runner. You just register an instance of each problem you write into the problems List object in the constructor, and run the program, and it iterates through each Problem in the List, and outputs the answer.
I’m not going to give you the code to problem one, however it is pretty trivial if you know what the modulus operator is used for…
As you can see, the problem runner itself is fairly basic, and does present some immediate areas of improvement, such as running a specific problem.
I’ll cover that next time.
Project Euler problem runner framework in Java
Recently, I’ve been working on the problems on Project Euler, and I’ve done the first 16 problems (in Java), although I will freely admit that I had help on two of the most difficult ones. I do intend on continuing to do the problems, and I am currently working on problem 17, however I paused to write the problem runner framework I’m going to talk about in this post.
What I had started to do, was to write each solution in it’s own Class, and have the main(String[] args) method output the answer. This was fine for the first few problems, and I could have continued to do it like that for all of the problems - however I wanted to be able to run all the problems at once, or a specific problem, and get the answer(s), or not show the answers but still get the timings.
After chatting with one of the Senior Dev’s at my job, he pointed out that what I wanted to do was basically the Command pattern. He sent me some example code, although once he’d said “Command pattern” I knew exactly what it was that I needed to do.
Thus, my problem runner framework was born, and whilst fairly simple, it does employ some techniques that the beginning Java developer might not be aware of. So, what I am going to (try) to do over the next few weeks is write a series of posts that show how I wrote it, partly just to have some content on my blog (which I am really, really lazy at updating), secondly to see how good I am at explaining something like this, and thirdly - it might actually be useful to someone.
The output of the problem runner framework looks like this:
C:\development>java -jar euler.jar -noanswers
Project Euler : Problem Runner - http://projecteuler.net/
Problem: 1. Time: 0.0s
Problem: 2. Time: 0.0s
Problem: 3. Time: 0.347s
Problem: 4. Time: 0.307s
Problem: 5. Time: 63.803s
Problem: 6. Time: 0.0s
Problem: 7. Time: 0.335s
Problem: 8. Time: 0.0020s
Problem: 9. Time: 34.178s
Problem: 10. Time: 0.369s
Problem: 11. Time: 1.218275999017E9s
Problem: 12. Time: 0.021s
Problem: 13. Time: 0.0s
Problem: 14. Time: 21.717s
Problem: 15. Time: 0.0s
Problem: 16. Time: 0.0010s
As you can see, I have output a list of the problems, and the time taken to solve the problem, but I haven’t shown the answer.
Well, you didn’t think I was going to tell you the answers… Did you?
This also shows that I need to work on problem 5, 9 and 14 to try and optimise the solution to speed up performance, Project Euler says that problems “should” take under a minute to solve, however I’d still like to improve the code.
cakePHP with Eclipse
After chatting with one of my friends who is earning loads of cash doing php web development, I’ve decided that I’m going relearn PHP, not because I want a change of career, I’m happy where I am, but because… I just want to.
Because I’ve become a bit of a snob, used to having intellisense and and all the wonders that IDE’s such as Visual Studio and Borland Delphi provide, I wanted to do my PHP development in a proper IDE. Since I’ve been doing a lot of Java at work - enter Eclipse, and the Eclipse PHP plugins.
As you can see in the screenshot above (which shows some code from the cakePHP 15 minute blog tutorial), the plugins provide an awesome amount of functionality, such as:
- Code folding
- Intellisense/code completion
- Syntax highlighting/colouring
- API Documentation tool-tips
All this functionality is pretty easy to set up, and there is a pretty good guide available in The Bakery that covers just about everything you need to know to get going. There was a little bit of configuration that I did that was slightly different to that guide:
Firstly, I don’t believe that you need to set up cakePHP as a project in order to get the code completion to work. If you expand your project, and right click on your project include paths, you should be on the PHP Include path dialog, in the projects properties. If you add an external folder, and browse to the cake core directory (for me: C:\xampp\htdocs\cake), and click ok, you should now have code completion and all the associated awesomeness in your project, with the added benefit that for any different projects in your workspace, you can set up different versions of cakePHP or (I haven’t tried this though) a different framework such as Symfony.
Secondly, for code completion in Models, you just have to do something like this:
class PostsController extends AppController{var $name = 'Posts'; /** * @var Post */ var $Post; ...code }
Hope this is of use to somebody ![]()
source control systems
The other day, I watched the Linus Torvalds tech talk at google, which he gave on source control systems. It was mostly (biased) about how great git is, and how other source control systems, with a few exceptions, have mostly got it wrong. This all got me thinking about source control systems I have used.
Now, I use Microsoft’s Visual Sourcesafe every day at work, and let me tell you: it’s shit. The only (slightly) good thing about it, is the integration with VS.Net 2005, which is unsurprisingly very good. I know that I’m not really offering much of an argument as to exactly why VSS is a horrible pile of dog turd, but anyone whose ever used will understand.
Anyway. I digress.
I never really thought that the creator of Linux would be such an engaging and humorous speaker - aren’t stereotypes fun - but he was. It kind of got me thinking about source control. I’ve used CVS and SVN before on a few open source projects I’ve contributed to, or just wanted to get the latest source for.
I’ve mostly only ever used CVS or SVN, arguably the two most popular version control systems currently in use today. Better than VSS in every way, but still lacking quite a lot. For instance it’s a well known fact that merges in CVS are a horrible nightmare, and that merges in SVN aren’t much better. Thankfully I’ve never had to do them. And I know enough about VSS to know that merges are just generally avoided. Like you’d try to avoid an STI.
So, over the weekend (you’ll notice how much of my free time is “over the weekend”) I decided to have a little play with with some distributed version control systems. Now, I’m not going to go on about what one of those is, nor how great they are, as you can use google for that. But suffice to say that they are fucking ace.
I had to discount Git pretty much straight away - for various reasons (development being primary) I’ve installed Winxp back onto my laptop, and I’m playing with Windows Server 2003 R2 on my dev server, so I road tested Mercurial and Bazaar-ng. I spent a great deal of time researching the two systems, and ultimately decided to go with bazaar. I’ve not really got down to much development with bazaar yet, but early results look promising.
After about 10 minutes fannying around, I had Bazaar installed, and a shared repository set-up on my dev server, which I checked out and branched a few times on my laptop (3 branches: dev, testing and stable). With bazaar I can make as many dev branches as I like, for each crazy idea I have, and easily merge them upstream as they become awesomely realised ideas, or deleted and forgotten about like a red-headed step-child.
This is all on my laptop, and I can easily push my working code onto my desktop if I want to code on there, or back onto my server for safe keeping, or publish it on a website. Or any combination of those. I’ll post some more about Bazaar after I’ve been using it for a while.
Limitations in Delphi
One of the things in Delphi that frustrates me is the inability to match on strings in case statements. For those people who haven’t done delphi before, case statements are very similar to c++ switch statements, and only opererate on ordinal types.. Now I’ve not done any Java, but as I understand it you can’t switch on strings in that language either. You can in c# though.
I think C# is generally better, but that said I have it on good authority that templates are still much better in C++ than generics are in C#.
Anyway, that’s enough rambling. On to the solution.
What you need to do in order to get around this limitation is cheat. Well, it’s not really cheating. The tricks is to use a look up function that accepts a string, one that you are expecting, which you have in a string array. Then all you need do is return which element of the array has been matched, and use that in the case statement.
function TClassName.lookupFunction(lookup: string): integer; const ARRAY = ['one', 'two', 'three', 'four', 'five']; var i: integer; begin for i := 0 to Length(ARRAY) do if lookup = ARRAY[i] then begin Result := i; break; end end procedure TClassName.someProc(somestring: string); begin case LookupFunction(somestring) 1 : //code that does stuff for 'one' 2 : //code that does stuff for 'two' 3 : //code that does stuff for 'three' 4 : //code that does stuff for 'four' 5 : //code that does stuff for 'five' end
See! That’s how simple it is.
Maybe in a future version of delphi borland/codegear will introduce native string support for case statements. I won’t hold my breather though.