1 # ==================================================================================
2 # Copyright (c) 2019 Nokia
3 # Copyright (c) 2018-2019 AT&T Intellectual Property.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 # ==================================================================================
19 Represents A1s database and database access functions.
20 In the future, this may change to use a different backend, possibly dramatically.
21 Hopefully, the access functions are a good api so nothing else has to change when this happens
23 For now, the database is in memory.
24 We use dict data structures (KV) with the expectation of having to move this into Redis
26 from a1.exceptions import PolicyTypeNotFound, PolicyInstanceNotFound, PolicyTypeAlreadyExists
27 from a1 import get_module_logger
29 logger = get_module_logger(__name__)
31 # This is essentially mockouts for future KV
32 # Note that the D subkey won't be needed when in redis, since you can store data at x anx x_y
41 def type_is_valid(policy_type_id):
43 check that a type is valid
45 if policy_type_id not in POLICY_DATA:
46 logger.error("%s not found", policy_type_id)
47 raise PolicyTypeNotFound()
50 def store_policy_type(policy_type_id, body):
52 store a policy type if it doesn't already exist
54 if policy_type_id in POLICY_DATA:
55 raise PolicyTypeAlreadyExists()
57 POLICY_DATA[policy_type_id] = {}
58 POLICY_DATA[policy_type_id][D] = body
59 POLICY_DATA[policy_type_id][I] = {}
62 def get_policy_type(policy_type_id):
66 type_is_valid(policy_type_id)
67 return POLICY_DATA[policy_type_id][D]
74 return list(POLICY_DATA.keys())
80 def instance_is_valid(policy_type_id, policy_instance_id):
82 check that an instance is valid
84 type_is_valid(policy_type_id)
85 if policy_instance_id not in POLICY_DATA[policy_type_id][I]:
86 raise PolicyInstanceNotFound
89 def store_policy_instance(policy_type_id, policy_instance_id, instance):
91 Store a policy instance
93 type_is_valid(policy_type_id)
96 # Reset the statuses because this is a new policy instance, even if it was overwritten
97 POLICY_DATA[policy_type_id][I][policy_instance_id] = {}
98 POLICY_DATA[policy_type_id][I][policy_instance_id][D] = instance
99 POLICY_DATA[policy_type_id][I][policy_instance_id][H] = {}
102 def get_policy_instance(policy_type_id, policy_instance_id):
104 Retrieve a policy instance
106 type_is_valid(policy_type_id)
107 instance_is_valid(policy_type_id, policy_instance_id)
108 return POLICY_DATA[policy_type_id][I][policy_instance_id][D]
111 def get_policy_instance_statuses(policy_type_id, policy_instance_id):
113 Retrieve the status vector for a policy instance
115 type_is_valid(policy_type_id)
116 instance_is_valid(policy_type_id, policy_instance_id)
118 return [{"handler_id": k, "status": v} for k, v in POLICY_DATA[policy_type_id][I][policy_instance_id][H].items()]
121 def set_policy_instance_status(policy_type_id, policy_instance_id, handler_id, status):
123 Update the status of a handler id of a policy instance
125 type_is_valid(policy_type_id)
126 instance_is_valid(policy_type_id, policy_instance_id)
128 POLICY_DATA[policy_type_id][I][policy_instance_id][H][handler_id] = status
131 def get_instance_list(policy_type_id):
133 retrieve all instance ids for a type
135 type_is_valid(policy_type_id)
136 return list(POLICY_DATA[policy_type_id][I].keys())