I'm trying to implement a preferences system where the programmer can specify preference names, types (boolean, integer, string, etc.), and optionally their default values. What I've been dwelling on for a while and can't come up with is a generic solution for storing to / loading from disk. I want the design to be generic enough to handle multiple formats (i.e. text files, the Windows Registry, or Apple's Property Lists). The simple solution would be to make transformers for each storage format and somewhere along the line when the storage format is already chosen, iterate through preferences and switch-case on their types.
I've been told doing a switch-case on a type isn't a good solution and I understand why: if I add a type, I need to go and modify all those switch-case blocks. So what should I do instead? The usual answer is to have the objects whose types were being checked implement a common interface and know how to perform the actions themselves.
But that seems ridiculous to me, to have an preference value know how to store itself in a text file, in the Windows registery, and in an Apple property List. That just moves the problem. Instead of adding a new type requiring me to go and modify the transformers, if I add a new transformer, I need to go and modify all the types!
I imagine this is a common design problem but I can't find any good solutions out there.