blob: bd0e3695ce2d3a4cf1a4ef622a26d03e1c91a7f4 (
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
|
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============LICENSE_END=========================================================
#
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
from urlparse import urlparse
import json
import consul
class DiscoveryError(RuntimeError):
pass
def _create_rel_key(service_component_name):
return "{0}:rel".format(service_component_name)
def _parse_host(host):
"""Parse host string
Returns:
Tuple of the hostname and port to use to connect to Consul
"""
def parse_urlparse_result(pr):
if not pr.hostname:
raise DiscoveryError("Invalid Consul host provided: {0}".format(host))
try:
# Port 8500 is the Consul default
return (pr.hostname, pr.port if pr.port else 8500)
except ValueError as e:
# Something bad happened with port
raise DiscoveryError("Invalid Consul host provided: {0}".format(host))
pr = urlparse(host)
# urlparse requires scheme to be set in order to be useful
if pr.scheme and pr.netloc:
return parse_urlparse_result(pr)
else:
return parse_urlparse_result(urlparse("http://{0}".format(host)))
def create_kv_conn(host):
"""Create connection to key-value store
Returns a Consul client to the specified Consul host
"""
(hostname, port) = _parse_host(host)
return consul.Consul(host=hostname, port=port)
def store_relationship(kv_conn, source_name, target_name):
# TODO: Rel entry may already exist in a one-to-many situation. Need to
# support that.
rel_key = _create_rel_key(source_name)
rel_value = [target_name] if target_name else []
kv_conn.kv.put(rel_key, json.dumps(rel_value))
print("Added relationship for {0}".format(rel_key))
def delete_relationship(kv_conn, service_component_name):
rel_key = _create_rel_key(service_component_name)
index, rels = kv_conn.kv.get(rel_key)
if rels:
rels = json.loads(rels["Value"].decode("utf-8"))
kv_conn.kv.delete(rel_key)
return rels
else:
return []
|