Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/filterhits/db.py

Issue 4615801646612480: Issue 395 - Filter hits statistics backend (Closed)
Patch Set: Addressed further comments from Sebastian. Created April 2, 2015, 10:13 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sitescripts/filterhits/bin/reprocess_logs.py ('k') | sitescripts/filterhits/geometrical_mean.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/filterhits/db.py
diff --git a/sitescripts/filterhits/db.py b/sitescripts/filterhits/db.py
new file mode 100644
index 0000000000000000000000000000000000000000..fc8eeef61eb2655967b9adb71959d44d11b2ace2
--- /dev/null
+++ b/sitescripts/filterhits/db.py
@@ -0,0 +1,67 @@
+# 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 itertools
+
+import MySQLdb
+
+from sitescripts.utils import get_config
+
+def connect():
+ config = get_config()
+ return MySQLdb.connect(
+ user=config.get("filterhitstats", "dbuser"),
+ passwd=config.get("filterhitstats", "dbpassword"),
+ db=config.get("filterhitstats", "database"),
+ use_unicode=True, charset="utf8"
+ )
+
+def query(db, sql, *params, **kwargs):
+ """
+ Executes the query given by the provided SQL and returns the results.
+ If dict_result keyword argument is provided + True the results will be
+ returned as a tuple of dictionaries, otherwise a tuple of tuples.
+ """
+ if kwargs.get("dict_result"):
+ cursor = db.cursor(MySQLdb.cursors.DictCursor)
+ else:
+ cursor = db.cursor()
+ try:
+ cursor.execute(sql, params)
+ db.commit()
+ return cursor.fetchall()
+ finally:
+ cursor.close()
+
+def write(db, queries):
+ """
+ This writes a given iteratable object of tuples containing SQL
+ strings and any required parameters to the database. All queries will
+ be run as one transaction and rolled back on error.
+ """
+ try:
+ cursor = db.cursor()
+ try:
+ for query in queries:
+ sql, params = query[0], query[1:]
+ cursor.execute(sql, params)
+ db.commit()
+ finally:
+ cursor.close()
+ except MySQLdb.Error:
+ db.rollback()
+ raise
« no previous file with comments | « sitescripts/filterhits/bin/reprocess_logs.py ('k') | sitescripts/filterhits/geometrical_mean.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld