Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BaseNode.equals support, and other ast goodness from python-fluent #172

Merged
merged 5 commits into from
Mar 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 62 additions & 1 deletion fluent-syntax/src/ast.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,69 @@
* Annotation.
*
*/
class BaseNode {
export class BaseNode {
constructor() {}

equals(other, ignoredFields = ["span"]) {
const thisKeys = new Set(Object.keys(this));
const otherKeys = new Set(Object.keys(other));
if (ignoredFields) {
for (const fieldName of ignoredFields) {
thisKeys.delete(fieldName);
otherKeys.delete(fieldName);
}
}
if (thisKeys.size !== otherKeys.size) {
return false;
}
for (const fieldName of thisKeys) {
if (!otherKeys.has(fieldName)) {
return false;
}
const thisVal = this[fieldName];
const otherVal = other[fieldName];
if (typeof thisVal !== typeof otherVal) {
return false;
}
if (thisVal instanceof Array) {
if (thisVal.length !== otherVal.length) {
return false;
}
for (let i = 0; i < thisVal.length; ++i) {
if (!scalarsEqual(thisVal[i], otherVal[i], ignoredFields)) {
return false;
}
}
} else if (!scalarsEqual(thisVal, otherVal, ignoredFields)) {
return false;
}
}
return true;
}

clone() {
function visit(value) {
if (value instanceof BaseNode) {
return value.clone();
}
if (Array.isArray(value)) {
return value.map(visit);
}
return value;
}
const clone = Object.create(this.constructor.prototype);
for (const prop of Object.keys(this)) {
clone[prop] = visit(this[prop]);
}
return clone;
}
}

function scalarsEqual(thisVal, otherVal, ignoredFields) {
if (thisVal instanceof BaseNode) {
return thisVal.equals(otherVal, ignoredFields);
}
return thisVal === otherVal;
}

/*
Expand Down
1 change: 1 addition & 0 deletions fluent-syntax/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import FluentSerializer from "./serializer";

export * from "./ast";
export { FluentParser, FluentSerializer };
export * from "./visitor";

export function parse(source, opts) {
const parser = new FluentParser(opts);
Expand Down
58 changes: 58 additions & 0 deletions fluent-syntax/src/visitor.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
import { BaseNode } from "./ast";

/*
* Abstract Visitor pattern
*/
export class Visitor {
visit(node) {
if (Array.isArray(node)) {
node.forEach(child => this.visit(child));
return;
}
if (!(node instanceof BaseNode)) {
return;
}
const visit = this[`visit${node.type}`] || this.genericVisit;
visit.call(this, node);
}

genericVisit(node) {
for (const propname of Object.keys(node)) {
this.visit(node[propname]);
}
}
}

/*
* Abstract Transformer pattern
*/
export class Transformer extends Visitor {
visit(node) {
if (!(node instanceof BaseNode)) {
return node;
}
const visit = this[`visit${node.type}`] || this.genericVisit;
return visit.call(this, node);
}

genericVisit(node) {
for (const propname of Object.keys(node)) {
const propvalue = node[propname];
if (Array.isArray(propvalue)) {
const newvals = propvalue
.map(child => this.visit(child))
.filter(newchild => newchild !== undefined);
node[propname] = newvals;
}
if (propvalue instanceof BaseNode) {
const new_val = this.visit(propvalue);
if (new_val === undefined) {
delete node[propname];
} else {
node[propname] = new_val;
}
}
}
return node;
}
}
74 changes: 74 additions & 0 deletions fluent-syntax/test/ast_test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
"use strict";

import assert from "assert";
import { ftl } from "./util";
import { FluentParser } from "../src";
import * as AST from "../src/ast";

suite("BaseNode.equals", function() {
setup(function() {
this.parser = new FluentParser();
});
test("Identifier.equals", function() {
const thisNode = new AST.Identifier("name");
const otherNode = new AST.Identifier("name");
assert.ok(thisNode.clone() instanceof AST.Identifier);
assert.strictEqual(thisNode.equals(otherNode), true);
assert.strictEqual(thisNode.equals(thisNode.clone()), true);
assert.notStrictEqual(thisNode, thisNode.clone());
});
test("Node.type", function() {
const thisNode = new AST.Identifier("name");
const otherNode = new AST.StringLiteral("name");
assert.strictEqual(thisNode.equals(otherNode), false);
});
test("Array children", function() {
const thisNode = new AST.Pattern([
new AST.TextElement("one"),
new AST.TextElement("two"),
new AST.TextElement("three"),
]);
let otherNode = new AST.Pattern([
new AST.TextElement("one"),
new AST.TextElement("two"),
new AST.TextElement("three"),
]);
assert.strictEqual(thisNode.equals(otherNode), true);
});
test("Variant order matters", function() {
const thisRes = this.parser.parse(ftl`
msg = { $val ->
[few] things
[1] one
*[other] default
}
`);
const otherRes = this.parser.parse(ftl`
msg = { $val ->
[few] things
*[other] default
[1] one
}
`);
const thisNode = thisRes.body[0];
const otherNode = otherRes.body[0];
assert.strictEqual(thisNode.equals(otherNode), false);
assert.strictEqual(thisRes.equals(thisRes.clone(), []), true);
assert.notStrictEqual(thisRes, thisRes.clone());
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's add a test which verifies that the original nodes have their variants in unchanged order after these tests run, please.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm dropping the ordering completely, per comment above, and update the tests accordingly. Let me know if there's more to do here.

});
test("Attribute order matters", function() {
const thisRes = this.parser.parse(ftl`
msg =
.attr1 = one
.attr2 = two
`);
const otherRes = this.parser.parse(ftl`
msg =
.attr2 = two
.attr1 = one
`);
const thisNode = thisRes.body[0];
const otherNode = otherRes.body[0];
assert.strictEqual(thisNode.equals(otherNode), false);
});
});
118 changes: 118 additions & 0 deletions fluent-syntax/test/visitor_test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
"use strict";

import assert from "assert";
import { ftl } from "./util";
import { FluentParser, Visitor, Transformer } from "../src";

suite("Visitor", function() {
setup(function() {
const parser = new FluentParser();
this.resource = parser.parse(ftl`
one = Message
# Comment
two = Messages
three = Messages with
.an = Attribute
`);
});
test("Mock Visitor", function() {
class MockVisitor extends Visitor {
constructor() {
super();
this.calls = {};
this.pattern_calls = 0;
}
genericVisit(node) {
const nodename = node.type;
if (nodename in this.calls) {
this.calls[nodename]++;
} else {
this.calls[nodename] = 1;
}
super.genericVisit(node);
}
visitPattern(node) {
this.pattern_calls++;
}
}
const mv = new MockVisitor();
mv.visit(this.resource);
assert.strictEqual(mv.pattern_calls, 4);
assert.deepStrictEqual(
mv.calls,
{
'Resource': 1,
'Comment': 1,
'Message': 3,
'Identifier': 4,
'Attribute': 1,
'Span': 10,
}
)
});
test("WordCount", function() {
class VisitorCounter extends Visitor {
constructor() {
super();
this.word_count = 0;
}
genericVisit(node) {
switch (node.type) {
case 'Span':
case 'Annotation':
break;
default:
super.genericVisit(node);
}
}
visitTextElement(node) {
this.word_count += node.value.split(/\s+/).length;
}
}
const vc = new VisitorCounter();
vc.visit(this.resource);
assert.strictEqual(vc.word_count, 5);
})
});

suite("Transformer", function() {
setup(function() {
const parser = new FluentParser();
this.resource = parser.parse(ftl`
one = Message
# Comment
two = Messages
three = Messages with
.an = Attribute
`);
});
test("ReplaceTransformer", function() {
class ReplaceTransformer extends Transformer {
constructor(before, after) {
super();
this.before = before;
this.after = after;
}
genericVisit(node) {
switch (node.type) {
case 'Span':
case 'Annotation':
return node;
break;
default:
return super.genericVisit(node);
}
}
visitTextElement(node) {
node.value = node.value.replace(this.before, this.after);
return node;
}
}
const resource = this.resource.clone()
const transformed = new ReplaceTransformer('Message', 'Term').visit(resource);
assert.notStrictEqual(resource, this.resource);
assert.strictEqual(resource, transformed);
assert.strictEqual(this.resource.equals(transformed), false);
assert.strictEqual(transformed.body[1].value.elements[0].value, 'Terms');
});
});