Khen Nursimulu | a7b842a | 2016-12-03 23:28:42 -0500 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # |
Khen Nursimulu | c9ef7c1 | 2017-01-04 20:40:53 -0500 | [diff] [blame] | 3 | # Copyright 2017 the original author or authors. |
Khen Nursimulu | a7b842a | 2016-12-03 23:28:42 -0500 | [diff] [blame] | 4 | # |
| 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 |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 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 | # |
Khen Nursimulu | c9ef7c1 | 2017-01-04 20:40:53 -0500 | [diff] [blame] | 17 | import structlog |
| 18 | import sys |
Khen Nursimulu | a7b842a | 2016-12-03 23:28:42 -0500 | [diff] [blame] | 19 | from constants import Constants as C |
| 20 | |
Khen Nursimulu | c9ef7c1 | 2017-01-04 20:40:53 -0500 | [diff] [blame] | 21 | # URN_PREFIX = "urn:ietf:params:netconf:capability:" |
| 22 | URN_PREFIX = "urn:opencord:params:xml:ns:voltha:" |
| 23 | log = structlog.get_logger() |
| 24 | |
Khen Nursimulu | a7b842a | 2016-12-03 23:28:42 -0500 | [diff] [blame] | 25 | class Capabilities: |
| 26 | |
| 27 | def __init__(self): |
Khen Nursimulu | c9ef7c1 | 2017-01-04 20:40:53 -0500 | [diff] [blame] | 28 | self.server_caps = set() |
Khen Nursimulu | a7b842a | 2016-12-03 23:28:42 -0500 | [diff] [blame] | 29 | self.client_caps = set() |
Khen Nursimulu | c9ef7c1 | 2017-01-04 20:40:53 -0500 | [diff] [blame] | 30 | self.voltha_schemas = set() |
| 31 | self.schema_dir = None |
Khen Nursimulu | a7b842a | 2016-12-03 23:28:42 -0500 | [diff] [blame] | 32 | |
| 33 | def add_client_capability(self, cap): |
| 34 | self.client_caps.add(cap) |
| 35 | |
Khen Nursimulu | c9ef7c1 | 2017-01-04 20:40:53 -0500 | [diff] [blame] | 36 | def set_server_capabilities(self, schemas): |
| 37 | # prefix = "urn:ietf:params:netconf:capability:" |
| 38 | # first add the basic capabilities |
| 39 | self.server_caps.add(C.NETCONF_BASE_10) |
| 40 | self.server_caps.add(C.NETCONF_BASE_11) |
| 41 | self.server_caps.add(C.NETCONF_MONITORING) |
| 42 | for schema in schemas: |
| 43 | self.server_caps.add(''.join([URN_PREFIX, schema])) |
| 44 | self.voltha_schemas.add(schema) |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 45 | |
| 46 | |
Khen Nursimulu | c9ef7c1 | 2017-01-04 20:40:53 -0500 | [diff] [blame] | 47 | def set_schema_dir(self, schema_dir) : |
| 48 | self.schema_dir = schema_dir |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 49 | |
Khen Nursimulu | c9ef7c1 | 2017-01-04 20:40:53 -0500 | [diff] [blame] | 50 | def get_yang_schemas_definitions(self): |
| 51 | defs = [] |
| 52 | for schema in self.voltha_schemas: |
| 53 | defs.append( |
| 54 | { |
| 55 | 'id': schema, |
| 56 | 'version': '2016-11-15', #TODO: need to extract from voltha |
| 57 | 'format': 'yang', |
| 58 | 'location': 'NETCONF', |
| 59 | 'namespace': ''.join([URN_PREFIX, schema]) |
| 60 | } |
| 61 | ) |
| 62 | return defs |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 63 | |
Khen Nursimulu | c9ef7c1 | 2017-01-04 20:40:53 -0500 | [diff] [blame] | 64 | def is_schema_supported(self, schema): |
| 65 | return schema in self.voltha_schemas |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 66 | |
| 67 | |
Khen Nursimulu | c9ef7c1 | 2017-01-04 20:40:53 -0500 | [diff] [blame] | 68 | def get_schema_content(self, schema): |
| 69 | if self.schema_dir not in sys.path: |
| 70 | sys.path.insert(0, self.schema_dir) |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 71 | |
Khen Nursimulu | c9ef7c1 | 2017-01-04 20:40:53 -0500 | [diff] [blame] | 72 | try: |
| 73 | with open(''.join([self.schema_dir, '/', schema, '.yang']), |
| 74 | 'r') as f: |
| 75 | content = f.read() |
| 76 | return content |
| 77 | except Exception as e: |
| 78 | log.error("error-opening-file", file=''.join([schema, '.yang']), |
| 79 | dir=self.schema_dir, exception=repr(e)) |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 80 | |