mirror of https://github.com/ansible/ansible.git
commit
8f106c9a58
@ -0,0 +1,96 @@
|
|||||||
|
# (c) 2015, Yannig Perre <yannig.perre(at)gmail.com>
|
||||||
|
#
|
||||||
|
# This file is part of Ansible
|
||||||
|
#
|
||||||
|
# Ansible is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# Ansible 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 Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
import StringIO
|
||||||
|
import os
|
||||||
|
import codecs
|
||||||
|
import ConfigParser
|
||||||
|
import re
|
||||||
|
|
||||||
|
from ansible.errors import *
|
||||||
|
from ansible.plugins.lookup import LookupBase
|
||||||
|
|
||||||
|
class LookupModule(LookupBase):
|
||||||
|
|
||||||
|
def read_properties(self, filename, key, dflt, is_regexp):
|
||||||
|
config = StringIO.StringIO()
|
||||||
|
config.write('[java_properties]\n' + open(filename).read())
|
||||||
|
config.seek(0, os.SEEK_SET)
|
||||||
|
self.cp.readfp(config)
|
||||||
|
return self.get_value(key, 'java_properties', dflt, is_regexp)
|
||||||
|
|
||||||
|
def read_ini(self, filename, key, section, dflt, is_regexp):
|
||||||
|
self.cp.readfp(open(filename))
|
||||||
|
return self.get_value(key, section, dflt, is_regexp)
|
||||||
|
|
||||||
|
def get_value(self, key, section, dflt, is_regexp):
|
||||||
|
# Retrieve all values from a section using a regexp
|
||||||
|
if is_regexp:
|
||||||
|
return [v for k, v in self.cp.items(section) if re.match(key, k)]
|
||||||
|
value = None
|
||||||
|
# Retrieve a single value
|
||||||
|
try:
|
||||||
|
value = self.cp.get(section, key)
|
||||||
|
except ConfigParser.NoOptionError, e:
|
||||||
|
return dflt
|
||||||
|
return value
|
||||||
|
|
||||||
|
def run(self, terms, variables=None, **kwargs):
|
||||||
|
|
||||||
|
if isinstance(terms, basestring):
|
||||||
|
terms = [ terms ]
|
||||||
|
|
||||||
|
basedir = self.get_basedir(variables)
|
||||||
|
self.basedir = basedir
|
||||||
|
self.cp = ConfigParser.ConfigParser()
|
||||||
|
|
||||||
|
ret = []
|
||||||
|
for term in terms:
|
||||||
|
params = term.split()
|
||||||
|
key = params[0]
|
||||||
|
|
||||||
|
paramvals = {
|
||||||
|
'file' : 'ansible.ini',
|
||||||
|
're' : False,
|
||||||
|
'default' : None,
|
||||||
|
'section' : "global",
|
||||||
|
'type' : "ini",
|
||||||
|
}
|
||||||
|
|
||||||
|
# parameters specified?
|
||||||
|
try:
|
||||||
|
for param in params[1:]:
|
||||||
|
name, value = param.split('=')
|
||||||
|
assert(name in paramvals)
|
||||||
|
paramvals[name] = value
|
||||||
|
except (ValueError, AssertionError), e:
|
||||||
|
raise errors.AnsibleError(e)
|
||||||
|
|
||||||
|
path = self._loader.path_dwim_relative(basedir, 'files', paramvals['file'])
|
||||||
|
if paramvals['type'] == "properties":
|
||||||
|
var = self.read_properties(path, key, paramvals['default'], paramvals['re'])
|
||||||
|
else:
|
||||||
|
var = self.read_ini(path, key, paramvals['section'], paramvals['default'], paramvals['re'])
|
||||||
|
if var is not None:
|
||||||
|
if type(var) is list:
|
||||||
|
for v in var:
|
||||||
|
ret.append(v)
|
||||||
|
else:
|
||||||
|
ret.append(var)
|
||||||
|
return ret
|
@ -0,0 +1,24 @@
|
|||||||
|
[global]
|
||||||
|
# A comment
|
||||||
|
value1=Text associated with value1 and global section
|
||||||
|
value2=Same for value2 and global section
|
||||||
|
value.dot=Properties with dot
|
||||||
|
field.with.space = another space
|
||||||
|
|
||||||
|
[section1]
|
||||||
|
value1=section1/value1
|
||||||
|
value2=section1/value2
|
||||||
|
|
||||||
|
[value_section]
|
||||||
|
value1=1
|
||||||
|
value2=2
|
||||||
|
value3=3
|
||||||
|
other1=4
|
||||||
|
other2=5
|
||||||
|
|
||||||
|
[other_section]
|
||||||
|
value1=1
|
||||||
|
value2=2
|
||||||
|
value3=3
|
||||||
|
other1=4
|
||||||
|
other2=5
|
@ -0,0 +1,5 @@
|
|||||||
|
# A comment
|
||||||
|
value1=Text associated with value1
|
||||||
|
value2=Same for value2
|
||||||
|
value.dot=Properties with dot
|
||||||
|
field.with.space = another space
|
@ -0,0 +1,40 @@
|
|||||||
|
---
|
||||||
|
- name: "Lookup test"
|
||||||
|
hosts: "localhost"
|
||||||
|
# connection: local
|
||||||
|
tasks:
|
||||||
|
- name: "read properties value"
|
||||||
|
set_fact:
|
||||||
|
test1: "{{lookup('ini', 'value1 type=properties file=lookup.properties')}}"
|
||||||
|
test2: "{{lookup('ini', 'value2 type=properties file=lookup.properties')}}"
|
||||||
|
test_dot: "{{lookup('ini', 'value.dot type=properties file=lookup.properties')}}"
|
||||||
|
field_with_space: "{{lookup('ini', 'field.with.space type=properties file=lookup.properties')}}"
|
||||||
|
- debug: var={{item}}
|
||||||
|
with_items: [ 'test1', 'test2', 'test_dot', 'field_with_space' ]
|
||||||
|
- name: "read ini value"
|
||||||
|
set_fact:
|
||||||
|
value1_global: "{{lookup('ini', 'value1 section=global file=lookup.ini')}}"
|
||||||
|
value2_global: "{{lookup('ini', 'value2 section=global file=lookup.ini')}}"
|
||||||
|
value1_section1: "{{lookup('ini', 'value1 section=section1 file=lookup.ini')}}"
|
||||||
|
- debug: var={{item}}
|
||||||
|
with_items: [ 'value1_global', 'value2_global', 'value1_section1' ]
|
||||||
|
- name: "read ini value with section and regexp"
|
||||||
|
set_fact:
|
||||||
|
value_section: "{{lookup('ini', 'value[1-2] section=value_section file=lookup.ini re=true')}}"
|
||||||
|
other_section: "{{lookup('ini', 'other[1-2] section=other_section file=lookup.ini re=true')}}"
|
||||||
|
- debug: var={{item}}
|
||||||
|
with_items: [ 'value_section', 'other_section' ]
|
||||||
|
- name: "Reading unknown value"
|
||||||
|
set_fact:
|
||||||
|
unknown: "{{lookup('ini', 'value2 default=unknown section=section1 file=lookup.ini')}}"
|
||||||
|
- debug: var=unknown
|
||||||
|
- name: "Looping over section section1"
|
||||||
|
debug: msg="{{item}}"
|
||||||
|
with_ini: value[1-2] section=section1 file=lookup.ini re=true
|
||||||
|
- name: "Looping over section value_section"
|
||||||
|
debug: msg="{{item}}"
|
||||||
|
with_ini: value[1-2] section=value_section file=lookup.ini re=true
|
||||||
|
- debug: msg="{{item}}"
|
||||||
|
with_ini: value[1-2] section=section1 file=lookup.ini re=true
|
||||||
|
register: _
|
||||||
|
- debug: var=_
|
Loading…
Reference in New Issue