![]() |
|
Keep It Simple, Stupid | |
PerlMonks |
TVSET's scratchpadby TVSET (Chaplain) |
on Jun 02, 2004 at 09:30 UTC ( #359297=scratchpad: print w/replies, xml ) | Need Help?? |
I have been working on a rather complex system recently, which lead me to talking to a lot of my collegues. Here is a piece that I got from those talks. :) Problem: generate and display a complex interface/menu, which varies from user to user and depends on a number of options. There are plenty of conditions to check and there are multiple combinations of conditions that can produce the same result. The number of conditions and their combinations can grow and change over time. Heh, even describing this is complex. :) Example:
Even as it is, it already looks ugly. Adding few more conditions and combinations brings code to a real mess and makes it unmaintainable. Solution: first the code, then explanation.
Basically, here we have a %conditions hash that contains the current status. It can be updated by a separate function. %menu contains all menu items that can be displayed. For each item, there is a list of combinations (strings). Each combination lists conditions that must true (or false, with negation) to satisfy. Any combination that satisfies all conditions causes the menu item to appear.
The good side of this solution is that it is obvious under which conditions which menu item will get displayed. It is easy to add more items, edit or delete existing ones, or temporarily hide menu items. Chances of making a mistake are lower and it is also possible to store the whole thing outside the code (like in the database or config file) and provide GUI menu editing functionlity. The possibilities are endless. :)
|
|