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

Unified Diff: filters/parse_interface.py

Issue 5636796054503424: Issue 1170 - [adblockplus.org Anwiki to CMS migration] Migrate content (Closed)
Patch Set: Remove includes/common.tmpl which is no longer required. Created March 7, 2015, 7:01 p.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 | « filters/get_subscriptions.py ('k') | filters/subscription_sort.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: filters/parse_interface.py
diff --git a/filters/parse_interface.py b/filters/parse_interface.py
new file mode 100644
index 0000000000000000000000000000000000000000..e292b8a70e39abd9d8fee6a2aa600dc92b4953f3
--- /dev/null
+++ b/filters/parse_interface.py
@@ -0,0 +1,64 @@
+# This file is part of the Adblock Plus website,
+# 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 re, warnings
+
+TYPE_REGEXP = r"(?:arrayof\s+)?\w+"
+
+def parse_interface(interface_items):
+ parsed = []
+ for key, value in interface_items.iteritems():
+ if "(" in key:
+ # Item is a method
+ match = re.match(r"^\s*(%s)\s+(\S+)\s*\(\s*([^\)]*)\s*\)\s*$" % TYPE_REGEXP, key)
+ if not match:
+ warnings.warn("Skipped malformed method: '%s'" % key)
+ continue
+ return_type, property_name, argument_string = match.groups()
+ arguments = []
+ if argument_string:
+ for argument in argument_string.split(","):
+ if argument.strip():
+ match = re.match(r"^\s*(%s)\s+(\S+)\s*$" % TYPE_REGEXP, argument)
+ if not match:
+ warnings.warn("Skipped malformed argument: '%s'" % argument)
+ continue
+ argument_type, argument_name = match.groups()
+ arguments.append({
+ "name": argument_name,
+ "type": argument_type
+ })
+ value.update({
+ "type": "method",
+ "name": property_name,
+ "return_type": return_type,
+ "arguments": arguments
+ })
+ parsed.append(value)
+ else:
+ # Item is a property
+ match = re.match(r"^\s*(readonly\s+)?(%s)\s+(\S+)\s*$" % TYPE_REGEXP, key)
+ if not match:
+ warnings.warn("Skipped malformed property: '%s'" % key)
+ continue
+ property_modifier, property_type, property_name = match.groups()
+ value.update({
+ "type": property_type,
+ "name": property_name,
+ "modifier": property_modifier or ""
+ })
+ parsed.append(value)
+ parsed.sort(key=lambda x: x["name"])
+ return parsed
« no previous file with comments | « filters/get_subscriptions.py ('k') | filters/subscription_sort.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld