-
Notifications
You must be signed in to change notification settings - Fork 25
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
Add support for multi-labeled nodes #82
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -174,31 +174,47 @@ class ResultSet { | |
} | ||
|
||
/** | ||
* Parse raw node representation into a Node object. | ||
* Parse label index into a label string. | ||
* @async | ||
* @param {object[]} cell raw node representation. | ||
* @returns {Promise<Node>} Node object. | ||
* @param {number} label_idx index of label. | ||
* @returns {Promise<string>} string representation of label. | ||
*/ | ||
async parseNode(cell) { | ||
// Node ID (integer), | ||
// [label string offset (integer)], | ||
// [[name, value, value type] X N] | ||
|
||
let node_id = cell[0]; | ||
let label = this._graph.getLabel(cell[1][0]); | ||
async parseNodeLabel(label_idx) { | ||
let label = this._graph.getLabel(label_idx); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz). |
||
// will try to get the right label for at most 10 times | ||
var tries = 0; | ||
while (label == undefined && tries < 10) { | ||
label = await this._graph.fetchAndGetLabel(cell[1][0]); | ||
label = await this._graph.fetchAndGetLabel(label_idx); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing semicolon. |
||
tries++; | ||
} | ||
if (label == undefined) { | ||
console.warn( | ||
"unable to retrive label value for label index " + cell[1][0] | ||
"unable to retrieve label value for label index " + label_idx | ||
); | ||
} | ||
return label; | ||
} | ||
|
||
/** | ||
* Parse raw node representation into a Node object. | ||
* @async | ||
* @param {object[]} cell raw node representation. | ||
* @returns {Promise<Node>} Node object. | ||
*/ | ||
async parseNode(cell) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Class properties must be methods. Expected '(' but instead saw 'parseNode'. |
||
// Node ID (integer), | ||
// [label string offset (integer) X N], | ||
// [[name, value, value type] X N] | ||
|
||
let node_id = cell[0]; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz). |
||
var labels = undefined; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's not necessary to initialize 'labels' to 'undefined'. |
||
if (cell[1].length == 1) { | ||
labels = await this.parseNodeLabel(cell[1][0]); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing semicolon. |
||
} else { | ||
labels = await Promise.all(cell[1].map(x => this.parseNodeLabel(x))); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6'). |
||
} | ||
let properties = await this.parseEntityProperties(cell[2]); | ||
let node = new Node(label, properties); | ||
let node = new Node(labels, properties); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz). |
||
node.setId(node_id); | ||
return node; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Class properties must be methods. Expected '(' but instead saw 'parseNodeLabel'.
Duplicate class method 'async'.