summaryrefslogtreecommitdiffstats
path: root/storperf/db/configuration_db.py
blob: 700588d2b537daa3ee16913e0631ef2febdee305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
##############################################################################
# Copyright (c) 2015 EMC and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

from _sqlite3 import OperationalError
from threading import Lock
import logging
import sqlite3

db_mutex = Lock()


class ConfigurationDB(object):

    db_name = "StorPerfConfig.db"

    def __init__(self):
        """
        Creates the StorPerfConfig.db and configuration tables on demand
        """

        self.logger = logging.getLogger(__name__)
        self.logger.debug("Connecting to " + ConfigurationDB.db_name)
        with db_mutex:
            db = sqlite3.connect(ConfigurationDB.db_name)

            cursor = db.cursor()
            try:
                cursor.execute('''CREATE TABLE configuration
                (configuration_name text,
                key text,
                value text)''')
                self.logger.debug("Created configuration table")
            except OperationalError:
                self.logger.debug("Configuration table exists")

            cursor.execute('SELECT * FROM configuration')
            db.commit()
            db.close()

    def delete_configuration_value(self, configuration_name, key):
        """Deletes the value associated with the given key
        """

        with db_mutex:
            db = sqlite3.connect(ConfigurationDB.db_name)
            cursor = db.cursor()

            cursor.execute(
                "delete from configuration where configuration_name=? and key=?",
                (configuration_name, key))

            self.logger.debug("Deleted " + configuration_name + ":" + key)

            db.commit()
            db.close()

    def get_configuration_value(self, configuration_name, key):
        """Returns a string representation of the value stored
        with this key under the given configuration name.
        """

        with db_mutex:
            db = sqlite3.connect(ConfigurationDB.db_name)
            cursor = db.cursor()

            cursor.execute(
                """select value from configuration
                           where configuration_name = ?
                           and key = ?""",
                (configuration_name, key,))

            row = cursor.fetchone()

            return_value = None

            if (row is None):
                self.logger.debug(
                    configuration_name + ":" + key + " does not exist")
            else:
                self.logger.debug(
                    configuration_name + ":" + key + " is " + str(row[0]))
                return_value = str(row[0])

            db.close()

            return return_value

    def set_configuration_value(self, configuration_name, key, value):
        """Updates or creates the key under the given configuration
        name so that it holds the value specified.
        """

        if (value is None):
            return self.delete_configuration_value(configuration_name, key)

        with db_mutex:
            value = str(value)

            db = sqlite3.connect(ConfigurationDB.db_name)
            cursor = db.cursor()

            cursor.execute(
                "delete from configuration where configuration_name=? and key=?",
                (configuration_name, key))

            cursor.execute(
                """insert into configuration(configuration_name, key, value)
                 values (?,?,?)""", (configuration_name, key, value))

            self.logger.debug(
                configuration_name + ":" + key + " set to " + value)

            db.commit()
            db.close()