| Index: sitescripts/filterhits/bin/process_logs.py |
| diff --git a/sitescripts/filterhits/bin/process_logs.py b/sitescripts/filterhits/bin/process_logs.py |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..9c3e75f3e01ca8a6be998013a78812ce894a77f7 |
| --- /dev/null |
| +++ b/sitescripts/filterhits/bin/process_logs.py |
| @@ -0,0 +1,91 @@ |
| +# coding: utf-8 |
| + |
| +# This file is part of the Adblock Plus web scripts, |
| +# Copyright (C) 2006-2015 Eyeo GmbH |
| +# |
| +# Adblock Plus is free software: you can redistribute it and/or modify |
| +# it under the terms of the GNU General Public License version 3 as |
| +# published by the Free Software Foundation. |
| +# |
| +# Adblock Plus 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 Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| + |
| +import MySQLdb, itertools, json, os, sys |
|
Wladimir Palant
2015/03/26 22:56:50
Nit: PEP 8 requires one import per line and a blan
kzar
2015/03/27 11:59:57
Done.
Sebastian Noack
2015/03/27 13:12:19
While we are on it, please also add a new line bet
kzar
2015/03/27 15:10:50
Done.
|
| +from sitescripts.utils import get_config |
| +from sitescripts.filterhits import common, db, geometrical_mean |
|
Wladimir Palant
2015/03/26 22:56:50
common isn't actually used here.
kzar
2015/03/27 11:59:57
Done.
|
| + |
| +last_log_file = None |
|
Wladimir Palant
2015/03/26 22:56:50
Nit: IMHO this isn't meant to be exported, call it
kzar
2015/03/27 11:59:57
Done.
|
| + |
| +def log_files(dir): |
| + """ |
| + Provides a generator of filter hits log files for the given directory. |
| + Works recursively, relative path of log file is returned. |
| + """ |
| + for root, subdirs, files in os.walk(dir): |
| + for f in files: |
| + if os.path.splitext(f)[1] == ".log" and f[0].isdigit(): |
|
Wladimir Palant
2015/03/26 22:56:50
Why the requirement that the first letter is a dig
kzar
2015/03/27 11:59:57
That is a simple way to skip over other log files
Wladimir Palant
2015/03/27 16:29:06
Aren't all logs we are interested in inside of sub
kzar
2015/03/27 22:15:00
Not always, for example you might choose to only r
|
| + yield os.path.join(root, f) |
| + |
| +def read_data(log_file): |
| + """ |
| + Read, parse and return the JSON data for the given log file name. |
| + (As a side effect sets the global last_log_file to the log file name.) |
| + """ |
| + global last_log_file |
| + try: |
| + with open(log_file, "r") as f: |
| + # Skip past the date and GET parameters |
| + current = last = "" |
| + while last + current != '" ': |
| + last, current = current, f.read(1) |
| + if not current: |
| + sys.exit("Unexpected EOF in log file %s" % log_file) |
|
Wladimir Palant
2015/03/26 22:56:50
Wouldn't that be a lot simpler if the date and the
kzar
2015/03/27 11:59:57
Sure, I suppose this logic would be simpler that w
Sebastian Noack
2015/03/27 13:12:19
I agree with Wladimir FWIW. I also wouldn't consid
kzar
2015/03/27 15:10:50
OK fair enough, Done.
Wladimir Palant
2015/03/27 16:29:06
Yes, that's why we have reviews - so that we don't
kzar
2015/03/27 22:15:00
Better yet, I changed it in the past :p. (See patc
|
| + |
| + # Read the JSON |
| + data = json.load(f) |
| + # Keep track of the current log file in global variable in case we need to |
| + # identify it later if there's a problem. (This works because the files are |
| + # processed lazily.) |
| + last_log_file = log_file |
| + except IOError: |
| + sys.exit("Could not read log file %s" % log_file) |
| + return data |
| + |
| +if __name__ == "__main__": |
| + if not len(sys.argv) == 2: |
| + print "Usage: python -m sitescripts.filterhits.bin.process_logs /path/to/logs" |
| + sys.exit(1) |
| + |
| + interval = get_config().get("filterhitstats", "interval") |
| + |
| + def read_update(f): |
| + return geometrical_mean.update(interval, read_data(f)) |
| + |
| + if sys.argv[1].endswith(".log"): |
| + sql = read_update(sys.argv[1]) |
| + else: |
| + sql = itertools.chain.from_iterable(itertools.imap(read_update, |
| + log_files(sys.argv[1]))) |
| + |
| + try: |
| + db_connection = db.connect() |
| + except MySQLdb.Error: |
| + sys.exit("Failed to connect to the MySQL database.") |
|
Wladimir Palant
2015/03/26 22:56:50
I have the impression that the original exception
kzar
2015/03/27 11:59:57
This was Sebastian's idea, not mine. (See the inli
Sebastian Noack
2015/03/27 13:12:19
There are no comments on patchset 5. You probably
kzar
2015/03/27 15:10:50
OK the discussion was in patch set 4... it doesn't
|
| + |
| + try: |
| + db.write(db_connection, sql) |
| + except (KeyError, MySQLdb.Error), e: |
| + if isinstance(e, KeyError): |
| + message = "KeyError (%s)" % str(e.args[0]) |
| + elif isinstance(e, MySQLdb.Error): |
| + message = "MySQL error (%d) \"%s\"" % (e.args[0], e.args[1]) |
| + sys.exit("Failed to process file %s, all changes rolled back. %s\n" % ( |
| + last_log_file, message |
| + )) |
| + finally: |
| + db_connection.close() |