environment : added more logic to treat append and prepend path

This commit is contained in:
Massimiliano Culpo 2016-06-12 18:49:12 +02:00
parent 5300ffac7f
commit 30c9d976f6
3 changed files with 68 additions and 27 deletions

View file

@ -1,4 +1,4 @@
##############################################################################
#
# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
# Produced at the Lawrence Livermore National Laboratory.
#
@ -21,7 +21,7 @@
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
#
import collections
import inspect
import json
@ -100,6 +100,7 @@ def execute(self):
class EnvironmentModifications(object):
"""
Keeps track of requests to modify the current environment.
@ -315,14 +316,57 @@ def from_sourcing_files(*args, **kwargs):
for x in unset_variables:
env.unset(x)
# Variables that have been modified
common_variables = set(this_environment).intersection(
set(after_source_env))
common_variables = set(this_environment).intersection(set(after_source_env)) # NOQA: ignore=E501
modified_variables = [x for x in common_variables if this_environment[x] != after_source_env[x]] # NOQA: ignore=E501
def return_separator_if_any(first_value, second_value):
separators = ':', ';'
for separator in separators:
if separator in first_value and separator in second_value:
return separator
return None
for x in modified_variables:
# TODO : we may be smarter here, and try to parse
# TODO : if we could compose append_path
# TODO : and prepend_path to modify the value
env.set(x, after_source_env[x])
current = this_environment[x]
modified = after_source_env[x]
sep = return_separator_if_any(current, modified)
if sep is None:
# We just need to set the variable to the new value
env.set(x, after_source_env[x])
else:
current_list = current.split(sep)
modified_list = modified.split(sep)
# Paths that have been removed
remove_list = [
ii for ii in current_list if ii not in modified_list]
# Check that nothing has been added in the middle of vurrent
# list
remaining_list = [
ii for ii in current_list if ii in modified_list]
start = modified_list.index(remaining_list[0])
end = modified_list.index(remaining_list[-1])
search = sep.join(modified_list[start:end + 1])
if search not in current:
# We just need to set the variable to the new value
env.set(x, after_source_env[x])
break
else:
try:
prepend_list = modified_list[:start]
except KeyError:
prepend_list = []
try:
append_list = modified_list[end + 1:]
except KeyError:
append_list = []
for item in remove_list:
env.remove_path(x, item)
for item in append_list:
env.append_path(x, item)
for item in prepend_list:
env.prepend_path(x, item)
return env

View file

@ -1,3 +1,3 @@
#!/usr/bin/env bash
export PATH_LIST='/path/first:/path/second:/path/third:/path/fourth'
export PATH_LIST='/path/first:/path/second:/path/fourth'
unset EMPTY_PATH_LIST

View file

@ -27,7 +27,9 @@
from spack import spack_root
from llnl.util.filesystem import join_path
from spack.environment import EnvironmentModifications, SetEnv, UnsetEnv
from spack.environment import EnvironmentModifications
from spack.environment import SetEnv, UnsetEnv
from spack.environment import RemovePath, PrependPath, AppendPath
class EnvironmentTest(unittest.TestCase):
@ -133,21 +135,16 @@ def test_source_files(self):
self.assertTrue(isinstance(modifications['UNSET_ME'][0], SetEnv))
self.assertEqual(modifications['UNSET_ME'][0].value, 'overridden')
self.assertEqual(len(modifications['PATH_LIST']), 1)
self.assertTrue(isinstance(modifications['PATH_LIST'][0], SetEnv))
self.assertEqual(
modifications['PATH_LIST'][0].value,
'/path/first:/path/second:/path/third:/path/fourth'
self.assertEqual(len(modifications['PATH_LIST']), 3)
self.assertTrue(
isinstance(modifications['PATH_LIST'][0], RemovePath)
)
# TODO : with reference to the TODO in spack/environment.py
# TODO : remove the above and insert
# self.assertEqual(len(modifications['PATH_LIST']), 2)
# self.assertTrue(
# isinstance(modifications['PATH_LIST'][0], PrependPath)
# )
# self.assertEqual(modifications['PATH_LIST'][0].value, '/path/first')
# self.assertTrue(
# isinstance(modifications['PATH_LIST'][1], AppendPath)
# )
# self.assertEqual(modifications['PATH_LIST'][1].value, '/path/fourth')
self.assertEqual(modifications['PATH_LIST'][0].value, '/path/third')
self.assertTrue(
isinstance(modifications['PATH_LIST'][1], AppendPath)
)
self.assertEqual(modifications['PATH_LIST'][1].value, '/path/fourth')
self.assertTrue(
isinstance(modifications['PATH_LIST'][2], PrependPath)
)
self.assertEqual(modifications['PATH_LIST'][2].value, '/path/first')