-
Notifications
You must be signed in to change notification settings - Fork 346
/
Copy pathvalidate_avro.py
executable file
·163 lines (141 loc) · 5.55 KB
/
validate_avro.py
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
#!/usr/bin/env python3
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2015-12-22 23:25:25 +0000 (Tue, 22 Dec 2015)
#
# https://github.com/HariSekhon/DevOps-Python-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
# to help improve or steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
"""
Avro Validator Tool
Validates each file passed as an argument
Directories are recursed, checking all files ending in a .avro suffix.
Works like a standard unix filter program - if no files are passed as arguments or '-' is given then reads
from standard input
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
# from __future__ import unicode_literals
import os
import re
import sys
# pylint: disable=bare-except
try:
from avro3.datafile import DataFileReader, DataFileException
from avro3.io import DatumReader
except Exception: # pylint: disable=broad-except
from avro.datafile import DataFileReader, DataFileException
from avro.io import DatumReader
libdir = os.path.abspath(os.path.join(os.path.dirname(__file__), 'pylib'))
sys.path.append(libdir)
try:
# pylint: disable=wrong-import-position
from harisekhon.utils import log, die, ERRORS, log_option, uniq_list_ordered, validate_regex
from harisekhon import CLI
except ImportError as _:
print('module import failed: %s' % _, file=sys.stderr)
print("Did you remember to build the project by running 'make'?", file=sys.stderr)
print("Alternatively perhaps you tried to copy this program out without it's adjacent libraries?", file=sys.stderr)
sys.exit(4)
__author__ = 'Hari Sekhon'
__version__ = '0.9.2'
class AvroValidatorTool(CLI):
def __init__(self):
# Python 2.x
super(AvroValidatorTool, self).__init__()
# Python 3.x
# super().__init__()
self.re_avro_suffix = re.compile(r'.*\.avro$', re.I)
self.valid_avro_msg = '<unknown> => Avro OK'
self.invalid_avro_msg = '<unknown> => Avro INVALID'
self.exclude = None
def add_options(self):
self.add_opt('-e', '--exclude', metavar='regex', default=os.getenv('EXCLUDE'),
help='Regex of file / directory paths to exclude from checking ($EXCLUDE)')
def process_options(self):
self.exclude = self.get_opt('exclude')
if self.exclude:
validate_regex(self.exclude, 'exclude')
self.exclude = re.compile(self.exclude, re.I)
def is_excluded(self, path):
if self.exclude and self.exclude.search(path):
log.debug("excluding path: %s", path)
return True
return False
def check_avro(self, filehandle):
try:
DataFileReader(filehandle, DatumReader())
print(self.valid_avro_msg)
except DataFileException as _:
if 'snappy' in str(_):
die("%s => ERROR: %s - Is the python-snappy module installed? ('pip install python-snappy')" \
% (filehandle.name, _))
die("%s => ERROR: %s" % (filehandle.name, _))
except TypeError as _:
if self.verbose > 2:
print(_)
die(self.invalid_avro_msg)
def run(self):
if not self.args:
self.args.append('-')
args = uniq_list_ordered(self.args)
for arg in args:
if arg == '-':
continue
if not os.path.exists(arg):
print("'%s' not found" % arg)
sys.exit(ERRORS['CRITICAL'])
if os.path.isfile(arg):
log_option('file', arg)
elif os.path.isdir(arg):
log_option('directory', os.path.abspath(arg))
else:
die("path '%s' could not be determined as either a file or directory" % arg)
for arg in args:
self.check_path(arg)
def check_path(self, path):
if path == '-' or os.path.isfile(path):
self.check_file(path)
elif os.path.isdir(path):
self.walk(path)
else:
die("failed to determine if path '%s' is file or directory" % path)
# don't need to recurse when using walk generator
def walk(self, path):
if self.is_excluded(path):
return
for root, dirs, files in os.walk(path, topdown=True):
# modify dirs in place to prune descent for increased efficiency
# requires topdown=True
# calling is_excluded() on joined root/dir so that things like
# '/tests/spark-\d+\.\d+.\d+-bin-hadoop\d+.\d+' will match
dirs[:] = [d for d in dirs if not self.is_excluded(os.path.join(root, d))]
for filename in files:
file_path = os.path.join(root, filename)
if self.re_avro_suffix.match(file_path):
self.check_file(file_path)
def check_file(self, filename):
if filename == '-':
filename = '<STDIN>'
self.valid_avro_msg = '%s => Avro OK' % filename
self.invalid_avro_msg = '%s => Avro INVALID' % filename
if filename == '<STDIN>':
self.check_avro(sys.stdin)
else:
if self.is_excluded(filename):
return
try:
with open(filename) as avrohandle:
self.check_avro(avrohandle)
except IOError as _:
die("ERROR: %s" % _)
if __name__ == '__main__':
AvroValidatorTool().main()