Adds granularity support in OpenStack vim config
[osm/MON.git] / osm_mon / core / database.py
1 # -*- coding: utf-8 -*-
2
3 # Copyright 2018 Whitestack, LLC
4 # *************************************************************
5
6 # This file is part of OSM Monitoring module
7 # All Rights Reserved to Whitestack, LLC
8
9 # Licensed under the Apache License, Version 2.0 (the "License"); you may
10 # not use this file except in compliance with the License. You may obtain
11 # a copy of the License at
12
13 # http://www.apache.org/licenses/LICENSE-2.0
14
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
17 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
18 # License for the specific language governing permissions and limitations
19 # under the License.
20
21 # For those usages not covered by the Apache License, Version 2.0 please
22 # contact: bdiaz@whitestack.com or glavado@whitestack.com
23 ##
24
25 import logging
26
27 from peewee import *
28 from playhouse.sqlite_ext import SqliteExtDatabase
29
30 from osm_mon.core.settings import Config
31
32 log = logging.getLogger(__name__)
33 cfg = Config.instance()
34
35 db = SqliteExtDatabase('mon.db')
36
37
38 class BaseModel(Model):
39 class Meta:
40 database = db
41
42
43 class VimCredentials(BaseModel):
44 uuid = CharField(unique=True)
45 name = CharField()
46 type = CharField()
47 url = CharField()
48 user = CharField()
49 password = CharField()
50 tenant_name = CharField()
51 config = TextField(default='{}')
52
53
54 class Alarm(BaseModel):
55 alarm_id = CharField()
56 credentials = ForeignKeyField(VimCredentials, backref='alarms')
57
58
59 class DatabaseManager:
60 def create_tables(self):
61 try:
62 db.connect()
63 db.create_tables([VimCredentials, Alarm])
64 db.close()
65 except Exception as e:
66 log.exception("Error creating tables: ")
67
68 def get_credentials(self, vim_uuid):
69 return VimCredentials.get_or_none(VimCredentials.uuid == vim_uuid)
70
71 def save_credentials(self, vim_credentials):
72 """Saves vim credentials. If a record with same uuid exists, overwrite it."""
73 exists = VimCredentials.get_or_none(VimCredentials.uuid == vim_credentials.uuid)
74 if exists:
75 vim_credentials.id = exists.id
76 vim_credentials.save()
77
78 def get_credentials_for_alarm_id(self, alarm_id, vim_type):
79 alarm = Alarm.select() \
80 .where(Alarm.alarm_id == alarm_id) \
81 .join(VimCredentials) \
82 .where(VimCredentials.type == vim_type).get()
83 return alarm.credentials
84
85 def save_alarm(self, alarm_id, vim_uuid):
86 """Saves alarm. If a record with same id and vim_uuid exists, overwrite it."""
87 alarm = Alarm()
88 alarm.alarm_id = alarm_id
89 creds = VimCredentials.get(VimCredentials.uuid == vim_uuid)
90 alarm.credentials = creds
91 exists = Alarm.select(Alarm.alarm_id == alarm.alarm_id) \
92 .join(VimCredentials) \
93 .where(VimCredentials.uuid == vim_uuid)
94 if len(exists):
95 alarm.id = exists[0].id
96 alarm.save()