vote up 11 vote down star
3

I have a code that parses some template files and when it finds a placeholder, it replaces it with a value. Something like:

<html>
<head>
    <title>%title%</title>
</head>
<body bgcolor="%color%">
...etc.

In code, the parser finds those, calls this function:

string getContent(const string& name)
{
    if (name == "title")
        return page->getTitle();
    else if (name == "color")
        return getBodyColor();
    ...etc.
}

and then replaces the original placeholder with returned value.

In real case, it is not a dummy web page, and there are many (50+) different placeholders that can occur.

My code is C++, but I guess this problem exists with any language. It's more about algorithms and OO design I guess. Only important thing is that this must be compiled, even if I wanted I couldn't have any dynamic/eval'd code.

I though about implementing Chain of Responsibility pattern, but it doesn't seem it would improve the situation much.

UPDATE: and I'm also concerned about this comment in another thread. Should I care about it?

flag

6 Answers

vote up 22 vote down check

Use a dictionary that maps tag names to a tag handler.

link|flag
+1 For clarification, in C++ these are called std::map. – Eclipse Mar 18 at 18:43
Especially good if your dictionary can use a O(1) lookup like hashing. – Paul Tomblin Mar 18 at 18:43
Great answer. A tad on the lean side, but definitely a good way to go. : ) – eJames Mar 18 at 18:44
1  
@ejames I've never understood why long answers are considered better than short ones – Neil Butterworth Mar 18 at 18:46
1  
@Neil Butterworth Short answers with helpful comments are really just long answers that require more clicking... :) – Andy Mikula Mar 18 at 18:52
show 8 more comments
vote up 4 vote down

You want replace conditional with polymorphism. Roughly:

string getContent(const string& name) {
    myType obj = factory.getObjForName(name);
    obj.doStuff();
}

where doStuff is overloaded.

link|flag
Of course, the switch is just being moved somewhere else (the factory), which is where it should be. – Ed Swangren Mar 18 at 18:45
You'd probably want to combine the factory with Neil Butterworth's map and load the instantiation logic from some configuration file. Compiled and dynamic -- amazing. – Steven Huwig Mar 18 at 18:47
Actually, that template IS the configuration file. Users can alter it themselves. – Milan Babuškov Mar 18 at 18:59
I meant "configure the mapping of names to behaviors" (listed above as myType). Then there will be no switch involved. – Steven Huwig Mar 18 at 19:07
Ummmm... would that be "obj.doStuff()"? – Dan Mar 18 at 20:50
show 1 more comment
vote up 3 vote down

Have you considered XSLT? It's very well suited to this kind of thing. I developed a content management system that did the exact same thing and found XSLT to be very effective. The parser does a lot of the work for you.

UPDATE: Steven's comment raises an important point- you'll want your templates to be valid XHTML if you decide to go the XSLT route. Also- I would use a different delimiter for your replacement tokens. Something less likely to occur naturally. I used #!PLACEHOLDER#! in my CMS.

link|flag
I think it's pretty optimistic of you to think that HTML templates will be valid XML. :) – Steven Huwig Mar 18 at 18:46
vote up 3 vote down

i'll combine 3 ideas:

  1. (from Steven Hugig): use a factory method that gets you a different class for each selector.
  2. (from Neil Butterworth): inside the factory, use a dictionary so you get rid of the big switch(){}.
  3. (mine): add a setup() method to each handler class, that adds itself (or a new class instance) to the dictionary.

explaining a bit:

  • make an abstract class that has a static dict, and methods to register an instance with a selector string.
  • on each subclass the setup() method registers itself with the superclass' dict
  • the factory method is little more than a dictionary read
link|flag
Research guy..aren't you – Warrior Mar 18 at 19:20
+1. I'll suggest getting rid of the separate setup() function and moving its behaviour to the constructor -- that way it can't be forgotten. – j_random_hacker Mar 19 at 4:31
vote up 2 vote down

Rather than parsing, have tried just reading the template into a string and then just performing replaces.

fileContents = fileContents.Replace("%title%", page->getTitle());
fileContents = fileContents.Replace("%color%", getBodyColor());
link|flag
performance hit, but probably worth it for code simplicity if absolute efficiency is not absolutely needed. +1 – Brian R. Bondy Mar 18 at 18:48
1  
If "titleValue" variable contains the string "%color%" it would not work properly. – Milan Babuškov Mar 18 at 18:49
ya it is less safe as well, but more simple still :) – Brian R. Bondy Mar 18 at 18:53
Yeah, probably better to make the tokens slightly more complex, like "[%color%]". – Gordon Bell Mar 18 at 19:05
I still dislike the idea because it has to search in entire string for each of 50+ template placeholders and is still error prone. Please note that users of my application are the ones that supply both the data and the templates. – Milan Babuškov Mar 18 at 19:07
show 1 more comment
vote up 1 vote down

As "Uncle" Bob Martin mentioned in a previous podacast with Joel and Jeff, pretty much anything you come up with is going to essentially be reproducing the big switch statement.

If you feel better implementing one of the solutions selected above, that's fine. It may make your code prettier, but under the covers, it's essentially equivalent.

The important thing is to ensure that there is only one instance of your big switch statement. Your switch statement or dictionary should determine which class handles this tag, and then subsequent determinations should be handled using polymorphism.

link|flag
This is not true (and is typical of the crap that Martin comes out with). To add to a switch I need to modify the code of the switch - I can add to the dictionary without modifying existing code at all. – Neil Butterworth Mar 18 at 19:38
Adding to the dictionary is still a code change, and one the compiler has less chance of picking up issues with.. it's not like the dictionary is being populated from data, it's going to be populated via code. Adding cases to a switch statement doesn't need to affect any existing cases...? – Bittercoder Mar 18 at 21:14
In theory, yes, the dictrionary could be populated from a config file or a database table, so it could be modified without a re-compile. In practice, if you are changing the mappings, it's probably because you have a new handler, so you're already doing a re-compile. – JohnMcG Mar 18 at 21:38
@john in practice yes too - you can use a plugin architecture, implemented with DLLs (or similar) that requires no access to the existing codebase at all. No recompile needed (or possible). – Neil Butterworth Mar 18 at 21:44
@Neil Butterworth: In a deep philosophical sense, you really are moving the switch statement. That move may change the form, extensibility, and other facets, but the essence of what happens is unchanged. However, many of the replacements are much more maintanable/extensible than the original. – Harper Shelby Mar 18 at 23:03
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.