Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
618a519e
Commit
618a519e
authored
Sep 27, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'varreplace-lessre' of
git://github.com/dhozac/ansible
into devel
parents
6b5088c6
9e4fac5e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
71 additions
and
9 deletions
+71
-9
lib/ansible/utils.py
+48
-9
test/TestUtils.py
+23
-0
No files found.
lib/ansible/utils.py
View file @
618a519e
...
@@ -216,10 +216,9 @@ _LISTRE = re.compile(r"(\w+)\[(\d+)\]")
...
@@ -216,10 +216,9 @@ _LISTRE = re.compile(r"(\w+)\[(\d+)\]")
class
VarNotFoundException
(
Exception
):
class
VarNotFoundException
(
Exception
):
pass
pass
def
_varLookup
(
name
,
vars
,
depth
=
0
):
def
_varLookup
(
path
,
vars
,
depth
=
0
):
''' find the contents of a possibly complex variable in vars. '''
''' find the contents of a possibly complex variable in vars. '''
path
=
name
.
split
(
'.'
)
space
=
vars
space
=
vars
for
part
in
path
:
for
part
in
path
:
part
=
varReplace
(
part
,
vars
,
depth
=
depth
+
1
)
part
=
varReplace
(
part
,
vars
,
depth
=
depth
+
1
)
...
@@ -237,16 +236,56 @@ def _varLookup(name, vars, depth=0):
...
@@ -237,16 +236,56 @@ def _varLookup(name, vars, depth=0):
raise
VarNotFoundException
()
raise
VarNotFoundException
()
return
space
return
space
_KEYCRE
=
re
.
compile
(
r"\$(?P<complex>\{){0,1}((?(complex)[\w\.\[\]\$\{\}]+|\w+))(?(complex)\})"
)
def
_varFind
(
text
):
start
=
text
.
find
(
"$"
)
if
start
==
-
1
:
return
None
var_start
=
start
+
1
if
text
[
var_start
]
==
'{'
:
is_complex
=
True
brace_level
=
1
var_start
+=
1
else
:
is_complex
=
False
brace_level
=
0
end
=
var_start
path
=
[]
part_start
=
(
var_start
,
brace_level
)
while
end
<
len
(
text
)
and
((
is_complex
and
brace_level
>
0
)
or
not
is_complex
):
if
text
[
end
]
.
isalnum
()
or
text
[
end
]
==
'_'
:
pass
elif
is_complex
and
text
[
end
]
==
'{'
:
brace_level
+=
1
elif
is_complex
and
text
[
end
]
==
'}'
:
brace_level
-=
1
elif
is_complex
and
text
[
end
]
in
(
'$'
,
'['
,
']'
):
pass
elif
is_complex
and
text
[
end
]
==
'.'
:
if
brace_level
==
part_start
[
1
]:
if
text
[
part_start
[
0
]]
==
'{'
:
path
.
append
(
text
[
part_start
[
0
]
+
1
:
end
-
1
])
else
:
path
.
append
(
text
[
part_start
[
0
]:
end
])
part_start
=
(
end
+
1
,
brace_level
)
else
:
break
end
+=
1
var_end
=
end
if
is_complex
:
var_end
-=
1
if
text
[
var_end
]
!=
'}'
or
brace_level
!=
0
:
return
None
path
.
append
(
text
[
part_start
[
0
]:
var_end
])
return
{
'path'
:
path
,
'start'
:
start
,
'end'
:
end
}
def
varLookup
(
varname
,
vars
):
def
varLookup
(
varname
,
vars
):
''' helper function used by with_items '''
''' helper function used by with_items '''
m
=
_
KEYCRE
.
search
(
varname
)
m
=
_
varFind
(
varname
)
if
not
m
:
if
not
m
:
return
None
return
None
try
:
try
:
return
_varLookup
(
m
.
group
(
2
)
,
vars
)
return
_varLookup
(
m
[
'path'
]
,
vars
)
except
VarNotFoundException
:
except
VarNotFoundException
:
return
None
return
None
...
@@ -260,7 +299,7 @@ def varReplace(raw, vars, do_repr=False, depth=0):
...
@@ -260,7 +299,7 @@ def varReplace(raw, vars, do_repr=False, depth=0):
done
=
[]
# Completed chunks to return
done
=
[]
# Completed chunks to return
while
raw
:
while
raw
:
m
=
_
KEYCRE
.
search
(
raw
)
m
=
_
varFind
(
raw
)
if
not
m
:
if
not
m
:
done
.
append
(
raw
)
done
.
append
(
raw
)
break
break
...
@@ -269,13 +308,13 @@ def varReplace(raw, vars, do_repr=False, depth=0):
...
@@ -269,13 +308,13 @@ def varReplace(raw, vars, do_repr=False, depth=0):
# original)
# original)
try
:
try
:
replacement
=
_varLookup
(
m
.
group
(
2
)
,
vars
,
depth
)
replacement
=
_varLookup
(
m
[
'path'
]
,
vars
,
depth
)
if
isinstance
(
replacement
,
(
str
,
unicode
)):
if
isinstance
(
replacement
,
(
str
,
unicode
)):
replacement
=
varReplace
(
replacement
,
vars
,
depth
=
depth
+
1
)
replacement
=
varReplace
(
replacement
,
vars
,
depth
=
depth
+
1
)
except
VarNotFoundException
:
except
VarNotFoundException
:
replacement
=
m
.
group
()
replacement
=
raw
[
m
[
'start'
]:
m
[
'end'
]]
start
,
end
=
m
.
span
()
start
,
end
=
m
[
'start'
],
m
[
'end'
]
if
do_repr
:
if
do_repr
:
replacement
=
repr
(
replacement
)
replacement
=
repr
(
replacement
)
if
(
start
>
0
and
if
(
start
>
0
and
...
...
test/TestUtils.py
View file @
618a519e
...
@@ -261,6 +261,29 @@ class TestUtils(unittest.TestCase):
...
@@ -261,6 +261,29 @@ class TestUtils(unittest.TestCase):
res
=
ansible
.
utils
.
varReplace
(
template
,
vars
,
do_repr
=
True
)
res
=
ansible
.
utils
.
varReplace
(
template
,
vars
,
do_repr
=
True
)
assert
res
==
'True == 1L'
assert
res
==
'True == 1L'
def
test_varReplace_consecutive_vars
(
self
):
vars
=
{
'foo'
:
'foo'
,
'bar'
:
'bar'
,
}
template
=
'${foo}${bar}'
res
=
ansible
.
utils
.
varReplace
(
template
,
vars
)
assert
res
==
'foobar'
def
test_varReplace_escape_dot
(
self
):
vars
=
{
'hostvars'
:
{
'test.example.com'
:
{
'foo'
:
'bar'
,
},
},
}
template
=
'${hostvars.{test.example.com}.foo}'
res
=
ansible
.
utils
.
varReplace
(
template
,
vars
)
assert
res
==
'bar'
def
test_template_varReplace_iterated
(
self
):
def
test_template_varReplace_iterated
(
self
):
template
=
'hello $who'
template
=
'hello $who'
vars
=
{
vars
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment