Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've implemented a basic configuration management system that allows you to create a strongly-typed settings class, read/write the settings and load/save them from/to an "abstract" settings storage (I call it a "settings repository"). It consist of:

  1. An ISettings interface. It mainly holds a collection of ISettingsSection, where each section has a name and also holds a collection of ISetting implementations (IntSetting, StringSetting, etc.). By the way, the strong typing comes from the fact that implementations of ISettings interface do not expose their settings "directly", but through ordinary property getters and setters, which wrap calls to actual sections and settings. The interface itself is meant to be used for exposing the settings for things like loading and saving.
  2. Concrete implementations of ISettings. Each implementation creates specific settings sections in the constructor, and each such section creates it's settings in it's own constructor. Created settings have their default values already set.
  3. An ISettingsRepository interface which just has Load() and Save() methods, each of which take an ISettings object (the load method is meant to load data onto existing instances of ISettings, instead of creating new ones each time).
  4. Concrete implementations of ISettingsRepository. For now, there's only a repository that uses INI files as settings storage. Future interface implementations might include XML and database repositories.

Now I am dealing with ApplicationSettings, an implementation of ISettings. I want to do something like this:

    private ApplicationSettings LoadExistingOrCreateAndSaveNewApplicationSettings(ISettingsRepository settingsRepository)
    {
        ApplicationSettings settings = new ApplicationSettings();
        if (!settingsRepository.HasSettingsStored)
        {
            // Create new settings file and save default settings so that application user does not have to bother with creating file from scratch manually.
            settingsRepository.Save(settings);
        }
        else
        {
            // Settings file exists so just load up all the settings.
            settingsRepository.Load(settings);
        }
        return settings;
    }

The questions is: am I checking the "contents" of the repository correctly?

The "HasSettingsStored" property seems to make sense when the repository I am dealing with is an IniFileSettingsRepository, but I don't know if the same property makes sense for some other repository implementations (for INI repository, the property simply does a "return File.Exists(m_repositoryFilePath)"). What would it mean for, let's say, an database repository to have settings already stored? An in addition, how should the Load() method behave when there is nothing to load - throw an exception?

Maybe what I need is just a better name for the property? Or maybe I have stumbled upon a more subtle problem - I am mixing different levels of abstraction? Ideas, anyone?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.