Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

# 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 glob 

import json 

import os 

import stat 

 

from ansible.module_utils.six.moves import configparser 

from ansible.module_utils.six.moves import StringIO 

 

from ansible.module_utils.facts.utils import get_file_content 

 

from ansible.module_utils.facts.collector import BaseFactCollector 

 

 

class LocalFactCollector(BaseFactCollector): 

name = 'local' 

_fact_ids = set() 

 

def collect(self, module=None, collected_facts=None): 

local_facts = {} 

local_facts['local'] = {} 

 

if not module: 

return local_facts 

 

fact_path = module.params.get('fact_path', None) 

 

if not fact_path or not os.path.exists(fact_path): 

return local_facts 

 

local = {} 

for fn in sorted(glob.glob(fact_path + '/*.fact')): 

# where it will sit under local facts 

fact_base = os.path.basename(fn).replace('.fact', '') 

if stat.S_IXUSR & os.stat(fn)[stat.ST_MODE]: 

# run it 

# try to read it as json first 

# if that fails read it with ConfigParser 

# if that fails, skip it 

try: 

rc, out, err = module.run_command(fn) 

except UnicodeError: 

fact = 'error loading fact - output of running %s was not utf-8' % fn 

local[fact_base] = fact 

local_facts['local'] = local 

return local_facts 

else: 

out = get_file_content(fn, default='') 

 

# load raw json 

fact = 'loading %s' % fact_base 

try: 

fact = json.loads(out) 

except ValueError: 

# load raw ini 

cp = configparser.ConfigParser() 

try: 

cp.readfp(StringIO(out)) 

except configparser.Error: 

fact = "error loading fact - please check content" 

else: 

fact = {} 

for sect in cp.sections(): 

if sect not in fact: 

fact[sect] = {} 

for opt in cp.options(sect): 

val = cp.get(sect, opt) 

fact[sect][opt] = val 

 

local[fact_base] = fact 

 

local_facts['local'] = local 

return local_facts