1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-02 03:12:34 +01:00

enable_disable_list: Added a type to handle instrument/result_processor lists

A custom list type now allows "enabling"/"disabling" items by prepending a `~`.
When merged the new state takes priority over the old state.
This commit is contained in:
Sebastian Goscik
2016-04-07 15:08:01 +01:00
parent 05df7c7d9f
commit 8de1b94d73
2 changed files with 43 additions and 1 deletions

View File

@@ -31,6 +31,7 @@ import math
import shlex
from bisect import insort
from collections import defaultdict
from copy import copy
from wlauto.utils.misc import isiterable, to_identifier
from devlib.utils.types import identifier, boolean, integer, numeric, caseless_string
@@ -338,3 +339,29 @@ class prioritylist(object):
def __len__(self):
return self.size
class enable_disable_list(list):
def merge_with(self, other):
new_self = copy(self)
return enable_disable_list.merge(other, new_self)
def merge_into(self, other):
other = copy(other)
return enable_disable_list.merge(self, other)
@staticmethod
def merge(source, dest):
for item in source:
if item not in dest:
#Disable previously enabled item
if item.startswith('~') and item[1:] in dest:
dest.remove(item[1:])
#Enable previously disabled item
if not item.startswith('~') and ('~' + item) in dest:
dest.remove('~' + item)
dest.append(item)
return dest
def values(self):
return [item for item in self if not item.startswith('~')]