Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 1 | /** |
| 2 | * Abstract JsonLD criterion object |
| 3 | */ |
| 4 | define(['vc/operators'], function (operatorsClass) { |
| 5 | return { |
| 6 | __changed : false, |
| 7 | |
| 8 | create : function () { |
| 9 | return Object.create(this); |
| 10 | }, |
| 11 | |
| 12 | /** |
| 13 | * Upgrade this object to another object |
| 14 | * while private data stays intact |
| 15 | */ |
| 16 | upgradeTo : function (props) { |
| 17 | for (var prop in props) { |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 18 | this[prop] = props[prop]; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 19 | }; |
| 20 | return this; |
| 21 | }, |
| 22 | |
| 23 | ldType : function (type) { |
| 24 | if (arguments.length === 1) |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 25 | this._ldType = type; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 26 | return this._ldType; |
| 27 | }, |
| 28 | |
| 29 | parent : function (obj) { |
| 30 | if (arguments.length === 1) { |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 31 | this._parent = obj; |
| 32 | this.__changed = true; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 33 | }; |
| 34 | return this._parent; |
| 35 | }, |
| 36 | |
| 37 | // Destroy object - especially for |
| 38 | // acyclic structures! |
| 39 | // I'm paranoid! |
| 40 | destroy : function () { |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 41 | |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 42 | if (this._ops != undefined) { |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 43 | this._ops._parent = undefined; |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 44 | if (this._ops._element !== undefined) { |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 45 | this._ops._element.refTo = undefined; |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 46 | }; |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 47 | this._ops = undefined; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 48 | }; |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 49 | |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 50 | if (this._element !== undefined) |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 51 | this._element = undefined; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 52 | |
| 53 | // In case of a group, destroy all operands |
| 54 | if (this._operands !== undefined) { |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 55 | for (var i = 0; i < this._operands.length; i++) |
| 56 | this.getOperand(i).destroy(); |
| 57 | this._operands = []; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 58 | }; |
| 59 | }, |
| 60 | |
| 61 | // Wrap a new operation around the root group element |
| 62 | wrapOnRoot : function (op) { |
| 63 | var parent = this.parent(); |
| 64 | |
| 65 | var group = require('vc/docgroup').create(parent); |
| 66 | if (arguments.length === 1) |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 67 | group.operation(op); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 68 | else |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 69 | group.operation( |
| 70 | this.operation() === 'and' ? 'or' : 'and' |
| 71 | ); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 72 | group.append(this); |
| 73 | this.parent(group); |
| 74 | group.append(); |
| 75 | group.element(); // Init (seems to be necessary) |
| 76 | parent.root(group); |
| 77 | return this.parent(); |
| 78 | }, |
| 79 | |
| 80 | // Be aware! This may be cyclic |
| 81 | operators : function (and, or, del) { |
| 82 | if (arguments === 0) |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 83 | return this._ops; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 84 | this._ops = operatorsClass.create( |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 85 | and, or, del |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 86 | ); |
| 87 | this._ops.parent(this); |
| 88 | return this._ops; |
| 89 | }, |
| 90 | |
| 91 | toJson : function () { |
| 92 | return { |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 93 | // Unspecified object |
| 94 | "@type" : "koral:" + this.ldType() |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 95 | }; |
| 96 | }, |
| 97 | |
Akron | d2474aa | 2018-08-28 12:06:27 +0200 | [diff] [blame] | 98 | rewrites : function () { |
| 99 | return null; |
| 100 | }, |
| 101 | |
hebasta | a0282be | 2018-12-05 16:58:00 +0100 | [diff] [blame] | 102 | incomplete : function () { |
| 103 | return false; |
| 104 | }, |
| 105 | |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 106 | toQuery : function () { |
| 107 | return ''; |
| 108 | } |
| 109 | }; |
| 110 | }); |