Storage Config: Use own section

Instead of configuring storage X by parameters in the main
section "X_class = backend" and "X_param = value", use a
new section in the config: "[storage:X]" and use "class =
backend" and "param = value" there.

This is the beginning, it includes a try at being backward
compatible. But that try isn't really fully useful anyway.
This commit is contained in:
Elrond
2011-07-31 13:54:07 +02:00
parent d1e67890da
commit ed7970696e
4 changed files with 36 additions and 11 deletions

View File

@@ -113,9 +113,23 @@ def get_staticdirector(app_config):
def setup_storage():
app_config = mg_globals.app_config
global_config = mg_globals.global_config
public_store = storage_system_from_config(app_config, 'publicstore')
queue_store = storage_system_from_config(app_config, 'queuestore')
key_short = 'publicstore'
key_long = "storage:" + key_short
if global_config.has_key(key_long):
print "New style"
public_store = storage_system_from_config(global_config[key_long], None)
else:
print "old style"
public_store = storage_system_from_config(app_config, key_short)
key_short = 'queuestore'
key_long = "storage:" + key_short
if global_config.has_key(key_long):
queue_store = storage_system_from_config(global_config[key_long], None)
else:
queue_store = storage_system_from_config(app_config, key_short)
setup_globals(
public_store = public_store,