Merge "Refactoring inventory management data manipulation"
This commit is contained in:
commit
59535540cc
50
lib/dictutils.py
Normal file
50
lib/dictutils.py
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
# Copyright 2014, Rackspace US, Inc.
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# (c) 2014, Kevin Carter <kevin.carter@rackspace.com>
|
||||||
|
# (c) 2015, Major Hayden <major@mhtx.net>
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
def recursive_list_removal(inventory, purge_list):
|
||||||
|
"""Remove items from a list.
|
||||||
|
|
||||||
|
Keyword arguments:
|
||||||
|
inventory -- inventory dictionary
|
||||||
|
purge_list -- list of items to remove
|
||||||
|
"""
|
||||||
|
for item in purge_list:
|
||||||
|
for _item in inventory:
|
||||||
|
if item == _item:
|
||||||
|
inventory.pop(inventory.index(item))
|
||||||
|
|
||||||
|
|
||||||
|
def recursive_dict_removal(inventory, purge_list):
|
||||||
|
"""Remove items from a dictionary.
|
||||||
|
|
||||||
|
Keyword arguments:
|
||||||
|
inventory -- inventory dictionary
|
||||||
|
purge_list -- list of items to remove
|
||||||
|
"""
|
||||||
|
for key, value in inventory.iteritems():
|
||||||
|
if isinstance(value, dict):
|
||||||
|
for _key, _value in value.iteritems():
|
||||||
|
if isinstance(_value, dict):
|
||||||
|
for item in purge_list:
|
||||||
|
if item in _value:
|
||||||
|
del(_value[item])
|
||||||
|
elif isinstance(_value, list):
|
||||||
|
recursive_list_removal(_value, purge_list)
|
||||||
|
elif isinstance(value, list):
|
||||||
|
recursive_list_removal(value, purge_list)
|
@ -23,6 +23,8 @@ import json
|
|||||||
import os
|
import os
|
||||||
import prettytable
|
import prettytable
|
||||||
|
|
||||||
|
from dictutils import recursive_dict_removal
|
||||||
|
|
||||||
|
|
||||||
def file_find(filename, user_file=None, pass_exception=False):
|
def file_find(filename, user_file=None, pass_exception=False):
|
||||||
"""Return the path to a file.
|
"""Return the path to a file.
|
||||||
@ -57,39 +59,6 @@ def file_find(filename, user_file=None, pass_exception=False):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
def recursive_list_removal(inventory, purge_list):
|
|
||||||
"""Remove items from a list.
|
|
||||||
|
|
||||||
Keyword arguments:
|
|
||||||
inventory -- inventory dictionary
|
|
||||||
purge_list -- list of items to remove
|
|
||||||
"""
|
|
||||||
for item in purge_list:
|
|
||||||
for _item in inventory:
|
|
||||||
if item == _item:
|
|
||||||
inventory.pop(inventory.index(item))
|
|
||||||
|
|
||||||
|
|
||||||
def recursive_dict_removal(inventory, purge_list):
|
|
||||||
"""Remove items from a dictionary.
|
|
||||||
|
|
||||||
Keyword arguments:
|
|
||||||
inventory -- inventory dictionary
|
|
||||||
purge_list -- list of items to remove
|
|
||||||
"""
|
|
||||||
for key, value in inventory.iteritems():
|
|
||||||
if isinstance(value, dict):
|
|
||||||
for _key, _value in value.iteritems():
|
|
||||||
if isinstance(_value, dict):
|
|
||||||
for item in purge_list:
|
|
||||||
if item in _value:
|
|
||||||
del(_value[item])
|
|
||||||
elif isinstance(_value, list):
|
|
||||||
recursive_list_removal(_value, purge_list)
|
|
||||||
elif isinstance(value, list):
|
|
||||||
recursive_list_removal(value, purge_list)
|
|
||||||
|
|
||||||
|
|
||||||
def args():
|
def args():
|
||||||
"""Setup argument Parsing."""
|
"""Setup argument Parsing."""
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
@ -366,5 +335,6 @@ def main():
|
|||||||
f_handle.write(json.dumps(inventory, indent=2))
|
f_handle.write(json.dumps(inventory, indent=2))
|
||||||
print('Success. . .')
|
print('Success. . .')
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
Loading…
Reference in New Issue
Block a user