-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
727 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
Extension/lib/filter/compiler/filter-compiler-constants.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** | ||
* This file is part of Adguard Browser Extension (https://github.com/AdguardTeam/AdguardBrowserExtension). | ||
* | ||
* Adguard Browser Extension is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Adguard Browser Extension 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 Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with Adguard Browser Extension. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/** | ||
* Constants for filter directives compiler | ||
* TODO: Fill in with real values | ||
*/ | ||
var FilterCompilerConstants = { | ||
adguard: true, | ||
adguard_ext_chromium: true, | ||
adguard_ext_firefox: false, | ||
adguard_ext_edge: false, | ||
adguard_ext_safari: false, | ||
adguard_ext_opera: false, | ||
adguard_ext_android_cb: false | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,239 @@ | ||
/** | ||
* This file is part of Adguard Browser Extension (https://github.com/AdguardTeam/AdguardBrowserExtension). | ||
* | ||
* Adguard Browser Extension is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Adguard Browser Extension 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 Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with Adguard Browser Extension. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/* global FilterCompilerConditionsConstants */ | ||
/** | ||
* The utility tool resolves preprocessor directives in filter content. | ||
* | ||
* Directives syntax: | ||
* !#if, !#endif - filters maintainers can use these conditions to supply different rules depending on the ad blocker type. | ||
* condition - just like in some popular programming languages, pre-processor conditions are based on constants declared by ad blockers. Ad blocker authors define on their own what exact constants do they declare. | ||
* !#include - this directive allows to include contents of a specified file into the filter. | ||
* | ||
* Condition constants should be declared in FilterCompilerConditionsConstants | ||
* | ||
* More details: | ||
* https://github.com/AdguardTeam/AdguardBrowserExtension/issues/917 | ||
*/ | ||
var FilterCompiler = (function () { | ||
|
||
var CONDITION_DIRECTIVE_START = "!#if"; | ||
var CONDITION_DIRECTIVE_END = "!#endif"; | ||
|
||
var CONDITION_OPERATOR_NOT = "!"; | ||
var CONDITION_OPERATOR_AND = "&&"; | ||
var CONDITION_OPERATOR_OR = "||"; | ||
var CONDITION_BRACKET_START = "("; | ||
var CONDITION_BRACKET_END = ")"; | ||
|
||
var INCLUDE_DIRECTIVE = "!#include"; | ||
|
||
/** | ||
* Checks brackets in string | ||
* | ||
* @param str | ||
*/ | ||
var checkBrackets = function (str) { | ||
var depth = 0; | ||
for (var i in str){ | ||
if (str[i] === CONDITION_BRACKET_START) { | ||
// if the char is an opening parenthesis then we increase the depth | ||
depth ++; | ||
} else if(str[i] === CONDITION_BRACKET_END) { | ||
// if the char is an closing parenthesis then we decrease the depth | ||
depth --; | ||
} | ||
// if the depth is negative we have a closing parenthesis | ||
// before any matching opening parenthesis | ||
if (depth < 0) { | ||
return false; | ||
} | ||
} | ||
// If the depth is not null then a closing parenthesis is missing | ||
if (depth > 0) { | ||
return false; | ||
} | ||
|
||
return true; | ||
}; | ||
|
||
/** | ||
* Finds end of condition block started with startIndex | ||
* | ||
* @param rules | ||
* @param startIndex | ||
*/ | ||
var findConditionEnd = function (rules, startIndex) { | ||
for (var j = startIndex; j < rules.length; j++) { | ||
var internalRule = rules[j]; | ||
|
||
if (internalRule.indexOf(CONDITION_DIRECTIVE_START) === 0) { | ||
throw new Error('Invalid directives: Nested conditions are not supported: ' + internalRule); | ||
} | ||
|
||
if (internalRule.indexOf(CONDITION_DIRECTIVE_END) === 0) { | ||
return j; | ||
} | ||
} | ||
|
||
return -1; | ||
}; | ||
|
||
var resolveConditionConstant = function (expression) { | ||
if (!expression) { | ||
throw new Error('Invalid directives: Empty condition'); | ||
} | ||
|
||
var trim = expression.trim(); | ||
return trim === "true" || FilterCompilerConditionsConstants[trim]; | ||
}; | ||
|
||
/** | ||
* Calculates conditional expression | ||
* | ||
* @param expression | ||
*/ | ||
var resolveExpression = function (expression) { | ||
if (!expression) { | ||
throw new Error('Invalid directives: Empty condition'); | ||
} | ||
|
||
expression = expression.trim(); | ||
|
||
if (!checkBrackets(expression)) { | ||
throw new Error('Invalid directives: Incorrect brackets: ' + expression); | ||
} | ||
|
||
// Parse brackets | ||
if (expression.indexOf(CONDITION_BRACKET_START) === 0) { | ||
var endBracketIndex = expression.indexOf(CONDITION_BRACKET_END); | ||
if (endBracketIndex === -1) { | ||
throw new Error('Invalid directives: Incorrect brackets: ' + expression); | ||
} | ||
|
||
if (endBracketIndex === expression.length - CONDITION_BRACKET_END.length) { | ||
// TODO: Fix strip from brackets | ||
return resolveExpression(expression.substring(CONDITION_BRACKET_START.length, expression.length - CONDITION_BRACKET_END.length)); | ||
} | ||
} | ||
|
||
var result; | ||
|
||
// Resolve logical operators | ||
var indexOfAndOperator = expression.indexOf(CONDITION_OPERATOR_AND); | ||
var indexOfOrOperator = expression.indexOf(CONDITION_OPERATOR_OR); | ||
var indexOfNotOperator = expression.indexOf(CONDITION_OPERATOR_NOT); | ||
|
||
if (indexOfOrOperator !== -1) { | ||
result = resolveExpression(expression.substring(0, indexOfOrOperator - 1)) || | ||
resolveExpression(expression.substring(indexOfOrOperator + CONDITION_OPERATOR_OR.length, expression.length)); | ||
} else if (indexOfAndOperator !== -1) { | ||
result = resolveExpression(expression.substring(0, indexOfAndOperator - 1)) && | ||
resolveExpression(expression.substring(indexOfAndOperator + CONDITION_OPERATOR_AND.length, expression.length)); | ||
} else if (indexOfNotOperator === 0) { | ||
result = !resolveExpression(expression.substring(CONDITION_OPERATOR_NOT.length)); | ||
} else { | ||
result = resolveConditionConstant(expression); | ||
} | ||
|
||
return result; | ||
}; | ||
|
||
/** | ||
* Validates and resolves condition directive | ||
* | ||
* @param directive | ||
*/ | ||
var resolveCondition = function (directive) { | ||
var expression = directive.substring(CONDITION_DIRECTIVE_START.length).trim(); | ||
|
||
return resolveExpression(expression); | ||
}; | ||
|
||
/** | ||
* Resolves conditions directives | ||
* | ||
* @param rules | ||
*/ | ||
var resolveConditions = function (rules) { | ||
var result = []; | ||
|
||
for (var i = 0; i < rules.length; i++) { | ||
var rule = rules[i]; | ||
|
||
if (rule.indexOf(CONDITION_DIRECTIVE_START) === 0) { | ||
var endLineIndex = findConditionEnd(rules, i + 1); | ||
if (endLineIndex === -1) { | ||
throw new Error('Invalid directives: Condition end not found: ' + rule); | ||
} | ||
|
||
var conditionValue = resolveCondition(rule); | ||
if (conditionValue) { | ||
result = result.concat(rules.slice(i + 1, endLineIndex)); | ||
} | ||
|
||
// Skip to the end of block | ||
i = endLineIndex; | ||
} else if (rule.indexOf(CONDITION_DIRECTIVE_END) === 0) { | ||
// Found condition end without start | ||
throw new Error('Invalid directives: Found unexpected condition end: ' + rule); | ||
} else { | ||
result.push(rule); | ||
} | ||
} | ||
|
||
return result; | ||
}; | ||
|
||
/** | ||
* Resolves include directives | ||
* TODO: Implement | ||
* | ||
* @param rules | ||
*/ | ||
var resolveIncludes = function (rules) { | ||
|
||
// Validate | ||
// Resolve | ||
|
||
// Recursive | ||
|
||
return rules; | ||
}; | ||
|
||
/** | ||
* Compiles filter content | ||
*/ | ||
var compile = function (rules) { | ||
|
||
var result; | ||
|
||
// Resolve 'if' conditions | ||
result = resolveConditions(rules); | ||
|
||
// Resolve 'includes' directives | ||
result = resolveIncludes(result); | ||
|
||
return result; | ||
}; | ||
|
||
return { | ||
compile: compile | ||
}; | ||
|
||
})(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>Ring Buffer Tests</title> | ||
<link rel="stylesheet" href="../qunit/qunit-2.0.1.css"> | ||
</head> | ||
|
||
<body> | ||
<div id="qunit"></div> | ||
<div id="qunit-fixture"></div> | ||
<script src="../qunit/qunit-2.0.1.js"></script> | ||
|
||
<script type="text/javascript" src="../../lib/adguard.js"></script> | ||
<script type="text/javascript" src="../../lib/utils/common.js"></script> | ||
<script type="text/javascript" src="../../lib/filter/compiler/filter-compiler.js"></script> | ||
<script type="text/javascript" src="test-filter-compiler.js"></script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.