# PyP6XER
# Copyright (C) 2020, 2021 Hassan Emam <hassan@constology.com>
#
# This file is part of PyP6XER.
#
# PyP6XER library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License v2.1 as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# PyP6XER is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with PyP6XER. If not, see <https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html>.
from xerparser.model.classes.rsrccurv import ResourceCurve
[docs]
class ResourceCurves:
def __init__(self):
self._resourcecurves = []
[docs]
def add(self, params):
self._resourcecurves.append(ResourceCurve(params))
[docs]
def find_by_id(self, id) -> ResourceCurve:
obj = list(filter(lambda x: x.actv_code_type_id == id, self._resourcecurves))
if len(obj) > 0:
return obj[0]
return obj
[docs]
def get_tsv(self):
tsv = []
if len(self._resourcecurves) > 0:
tsv.append(['%T', 'RSRCCURVDATA'])
tsv.append(['%F', 'curv_id', 'curv_name', 'default_flag', 'pct_usage_0',
'pct_usage_1', 'pct_usage_2', 'pct_usage_3', 'pct_usage_4',
'pct_usage_5', 'pct_usage_6', 'pct_usage_7', 'pct_usage_8',
'pct_usage_9', 'pct_usage_10', 'pct_usage_11', 'pct_usage_12',
'pct_usage_13', 'pct_usage_14', 'pct_usage_15', 'pct_usage_16',
'pct_usage_17', 'pct_usage_18', 'pct_usage_19', 'pct_usage_20'])
for rcurv in self._resourcecurves:
tsv.append(rcurv.get_tsv())
return tsv
@property
[docs]
def count(self):
return len(self._resourcecurves)
[docs]
def __len__(self):
return len(self._resourcecurves)
[docs]
def __iter__(self):
return self
[docs]
def __next__(self) -> ResourceCurve:
if self.index >= len(self._resourcecurves):
raise StopIteration
idx = self.index
self.index += 1
return self._resourcecurves[idx]