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
|
import gzip
import json
import os
import shutil
import time
import xml.etree.ElementTree as ET
from random import randint
import requests
import pnfconfig
class PNF:
""" Handle update on xml and send file ready event to ves collector """
def __init__(self):
pass
@staticmethod
def create_job_id(jobid, change_list):
"""
create new measinfo tag and add new sub element in existing xml.
:param jobid: create unique job id within xml sub element.
:param change_list: list to create sub elements itmes.
"""
try:
measurement_type = []
meas_object_dn = []
for items in range(len(change_list)):
if "/measurementType =" in change_list[items]:
measurement_type.append(((change_list[items].rsplit('/', 1))[1].rsplit('=', 1))[1].strip())
if "/DN =" in change_list[items]:
meas_object_dn.append(((change_list[items].rsplit('/', 1))[1].rsplit('=', 1))[1].strip())
script_dir = os.path.dirname(__file__)
pm_rel_file_path = "sftp/"
pm_location = os.path.join(script_dir, pm_rel_file_path)
ET.register_namespace('', "http://www.3gpp.org/ftp/specs/archive/32_series/32.435#measCollec")
tree = ET.parse(pm_location + "pm.xml")
root = tree.getroot()
attrib = {}
measinfo = ET.SubElement(root[1], 'measInfo', attrib)
attrib = {'jobId': jobid}
ET.SubElement(measinfo, 'job', attrib)
ET.SubElement(measinfo, 'granPeriod', {'duration': 'PT900S', 'endTime': '2000-03-01T14:14:30+02:00'})
ET.SubElement(measinfo, 'repPeriod', {'duration': 'PT1800S'})
for items in range(len(measurement_type)):
meastype = ET.SubElement(measinfo, 'measType', {'p': (items + 1).__str__()})
meastype.text = measurement_type[items]
for items in range(len(meas_object_dn)):
measvalue = ET.SubElement(measinfo, 'measValue', {'measObjLdn': meas_object_dn[items]})
for item in range(len(measurement_type)):
value = ET.SubElement(measvalue, 'r', {'p': (item + 1).__str__()})
value.text = randint(100, 900).__str__()
tree.write(pm_location + "pm.xml", encoding="utf-8", xml_declaration=True)
except Exception as error:
print(error)
@staticmethod
def delete_job_id(jobid):
"""
delete measinfo tag from existing xml pm file based on jobid.
:param jobid: element within measinfo tag.
"""
try:
script_dir = os.path.dirname(__file__)
pm_rel_file_path = "sftp/"
pm_location = os.path.join(script_dir, pm_rel_file_path)
ET.register_namespace('', "http://www.3gpp.org/ftp/specs/archive/32_series/32.435#measCollec")
tree = ET.parse(pm_location + "pm.xml")
root = tree.getroot()
for measinfo in root[1].findall(
'{http://www.3gpp.org/ftp/specs/archive/32_series/32.435#measCollec}measInfo'):
xml_id = measinfo.find('{http://www.3gpp.org/ftp/specs/archive/32_series/32.435#measCollec}job').attrib
if xml_id["jobId"] == jobid:
root[1].remove(measinfo)
tree.write(pm_location + "pm.xml", encoding="utf-8", xml_declaration=True)
except Exception as error:
print(error)
@staticmethod
def pm_job():
"""
create timestemp based gunzip xml file and send file ready event to ves collector.
"""
try:
script_dir = os.path.dirname(__file__)
timestemp = time.time()
pm_rel_file_path = "sftp/"
pm_location = os.path.join(script_dir, pm_rel_file_path)
shutil.copy(pm_location + "pm.xml", pm_location + "A{}.xml".format(timestemp))
with open(pm_location + "A{}.xml".format(timestemp), 'rb') as f_in:
with gzip.open(pm_location + "A{}.xml.gz".format(timestemp), 'wb') as f_out:
shutil.copyfileobj(f_in, f_out)
os.remove(pm_location + "A{}.xml".format(timestemp))
rel_path = "FileReadyEvent.json"
file_ready_event_path = os.path.join(script_dir, rel_path)
with open(file_ready_event_path) as json_file:
data = json_file.read().replace("pmfilename", str(timestemp))
eventdata = json.loads(data)
url = "http://{}:{}/eventListener/v7".format(pnfconfig.VES_IP, pnfconfig.VES_PORT)
print("Sending File Ready Event to VES Collector " + url + " -- data @" + data)
headers = {'content-type': 'application/json'}
requests.post(url, json=eventdata, headers=headers)
except Exception as error:
print(error)
|