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

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

# 

# {c) 2017 Red Hat, Inc. 

# 

# 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/>. 

 

# Make coding more python3-ish 

from __future__ import (absolute_import, division, print_function) 

__metaclass__ = type 

 

import re 

import os 

import traceback 

 

from collections import Mapping 

from xml.etree.ElementTree import fromstring 

 

from ansible.module_utils.network.common.utils import Template 

from ansible.module_utils.six import iteritems, string_types 

from ansible.errors import AnsibleError 

 

try: 

import yaml 

HAS_YAML = True 

except ImportError: 

HAS_YAML = False 

 

try: 

import textfsm 

HAS_TEXTFSM = True 

except ImportError: 

HAS_TEXTFSM = False 

 

 

try: 

from __main__ import display 

except ImportError: 

from ansible.utils.display import Display 

display = Display() 

 

 

def re_matchall(regex, value): 

objects = list() 

for match in re.findall(regex.pattern, value, re.M): 

obj = {} 

if regex.groupindex: 

for name, index in iteritems(regex.groupindex): 

if len(regex.groupindex) == 1: 

obj[name] = match 

else: 

obj[name] = match[index - 1] 

objects.append(obj) 

return objects 

 

 

def re_search(regex, value): 

obj = {} 

match = regex.search(value, re.M) 

if match: 

items = list(match.groups()) 

if regex.groupindex: 

for name, index in iteritems(regex.groupindex): 

obj[name] = items[index - 1] 

return obj 

 

 

def parse_cli(output, tmpl): 

if not isinstance(output, string_types): 

raise AnsibleError("parse_cli input should be a string, but was given a input of %s" % (type(output))) 

 

if not os.path.exists(tmpl): 

raise AnsibleError('unable to locate parse_cli template: %s' % tmpl) 

 

try: 

template = Template() 

except ImportError as exc: 

raise AnsibleError(str(exc)) 

 

spec = yaml.safe_load(open(tmpl).read()) 

obj = {} 

 

for name, attrs in iteritems(spec['keys']): 

value = attrs['value'] 

 

try: 

variables = spec.get('vars', {}) 

value = template(value, variables) 

except: 

pass 

 

if 'start_block' in attrs and 'end_block' in attrs: 

start_block = re.compile(attrs['start_block']) 

end_block = re.compile(attrs['end_block']) 

 

blocks = list() 

lines = None 

block_started = False 

 

for line in output.split('\n'): 

match_start = start_block.match(line) 

match_end = end_block.match(line) 

 

if match_start: 

lines = list() 

lines.append(line) 

block_started = True 

 

elif match_end: 

if lines: 

lines.append(line) 

blocks.append('\n'.join(lines)) 

block_started = False 

 

elif block_started: 

if lines: 

lines.append(line) 

 

regex_items = [re.compile(r) for r in attrs['items']] 

objects = list() 

 

for block in blocks: 

if isinstance(value, Mapping) and 'key' not in value: 

items = list() 

for regex in regex_items: 

match = regex.search(block) 

if match: 

item_values = match.groupdict() 

item_values['match'] = list(match.groups()) 

items.append(item_values) 

else: 

items.append(None) 

 

obj = {} 

for k, v in iteritems(value): 

try: 

obj[k] = template(v, {'item': items}, fail_on_undefined=False) 

except: 

obj[k] = None 

objects.append(obj) 

 

elif isinstance(value, Mapping): 

items = list() 

for regex in regex_items: 

match = regex.search(block) 

if match: 

item_values = match.groupdict() 

item_values['match'] = list(match.groups()) 

items.append(item_values) 

else: 

items.append(None) 

 

key = template(value['key'], {'item': items}) 

values = dict([(k, template(v, {'item': items})) for k, v in iteritems(value['values'])]) 

objects.append({key: values}) 

 

return objects 

 

elif 'items' in attrs: 

regexp = re.compile(attrs['items']) 

when = attrs.get('when') 

conditional = "{%% if %s %%}True{%% else %%}False{%% endif %%}" % when 

 

if isinstance(value, Mapping) and 'key' not in value: 

values = list() 

 

for item in re_matchall(regexp, output): 

entry = {} 

 

for item_key, item_value in iteritems(value): 

entry[item_key] = template(item_value, {'item': item}) 

 

if when: 

if template(conditional, {'item': entry}): 

values.append(entry) 

else: 

values.append(entry) 

 

obj[name] = values 

 

elif isinstance(value, Mapping): 

values = dict() 

 

for item in re_matchall(regexp, output): 

entry = {} 

 

for item_key, item_value in iteritems(value['values']): 

entry[item_key] = template(item_value, {'item': item}) 

 

key = template(value['key'], {'item': item}) 

 

if when: 

if template(conditional, {'item': {'key': key, 'value': entry}}): 

values[key] = entry 

else: 

values[key] = entry 

 

obj[name] = values 

 

else: 

item = re_search(regexp, output) 

obj[name] = template(value, {'item': item}) 

 

else: 

obj[name] = value 

 

return obj 

 

 

def parse_cli_textfsm(value, template): 

if not HAS_TEXTFSM: 

raise AnsibleError('parse_cli_textfsm filter requires TextFSM library to be installed') 

 

if not isinstance(value, string_types): 

raise AnsibleError("parse_cli_textfsm input should be a string, but was given a input of %s" % (type(value))) 

 

if not os.path.exists(template): 

raise AnsibleError('unable to locate parse_cli_textfsm template: %s' % template) 

 

try: 

template = open(template) 

except IOError as exc: 

raise AnsibleError(str(exc)) 

 

re_table = textfsm.TextFSM(template) 

fsm_results = re_table.ParseText(value) 

 

results = list() 

for item in fsm_results: 

results.append(dict(zip(re_table.header, item))) 

 

return results 

 

 

def _extract_param(template, root, attrs, value): 

 

key = None 

when = attrs.get('when') 

conditional = "{%% if %s %%}True{%% else %%}False{%% endif %%}" % when 

param_to_xpath_map = attrs['items'] 

 

if isinstance(value, Mapping): 

key = value.get('key', None) 

if key: 

value = value['values'] 

 

entries = dict() if key else list() 

 

for element in root.findall(attrs['top']): 

entry = dict() 

item_dict = dict() 

for param, param_xpath in iteritems(param_to_xpath_map): 

fields = None 

try: 

fields = element.findall(param_xpath) 

except: 

display.warning("Failed to evaluate value of '%s' with XPath '%s'.\nUnexpected error: %s." % (param, param_xpath, traceback.format_exc())) 

 

tags = param_xpath.split('/') 

 

# check if xpath ends with attribute. 

# If yes set attribute key/value dict to param value in case attribute matches 

# else if it is a normal xpath assign matched element text value. 

if len(tags) and tags[-1].endswith(']'): 

if fields: 

if len(fields) > 1: 

item_dict[param] = [field.attrib for field in fields] 

else: 

item_dict[param] = fields[0].attrib 

else: 

item_dict[param] = {} 

else: 

if fields: 

if len(fields) > 1: 

item_dict[param] = [field.text for field in fields] 

else: 

item_dict[param] = fields[0].text 

else: 

item_dict[param] = None 

 

if isinstance(value, Mapping): 

for item_key, item_value in iteritems(value): 

entry[item_key] = template(item_value, {'item': item_dict}) 

else: 

entry = template(value, {'item': item_dict}) 

 

if key: 

expanded_key = template(key, {'item': item_dict}) 

if when: 

if template(conditional, {'item': {'key': expanded_key, 'value': entry}}): 

entries[expanded_key] = entry 

else: 

entries[expanded_key] = entry 

else: 

if when: 

if template(conditional, {'item': entry}): 

entries.append(entry) 

else: 

entries.append(entry) 

 

return entries 

 

 

def parse_xml(output, tmpl): 

if not os.path.exists(tmpl): 

raise AnsibleError('unable to locate parse_cli template: %s' % tmpl) 

 

if not isinstance(output, string_types): 

raise AnsibleError('parse_xml works on string input, but given input of : %s' % type(output)) 

 

root = fromstring(output) 

try: 

template = Template() 

except ImportError as exc: 

raise AnsibleError(str(exc)) 

 

spec = yaml.safe_load(open(tmpl).read()) 

obj = {} 

 

for name, attrs in iteritems(spec['keys']): 

value = attrs['value'] 

 

try: 

variables = spec.get('vars', {}) 

value = template(value, variables) 

except: 

pass 

 

if 'items' in attrs: 

obj[name] = _extract_param(template, root, attrs, value) 

else: 

obj[name] = value 

 

return obj 

 

 

class FilterModule(object): 

"""Filters for working with output from network devices""" 

 

filter_map = { 

'parse_cli': parse_cli, 

'parse_cli_textfsm': parse_cli_textfsm, 

'parse_xml': parse_xml 

} 

 

def filters(self): 

return self.filter_map