hedera-web/web/js/sql/batch.js

144 lines
2.2 KiB
JavaScript
Raw Normal View History

/**
* A map container for many Sql.Object
**/
Sql.Batch = new Class
({
Extends: Sql.Object
,Tag: 'sql-batch'
2015-07-07 15:27:47 +00:00
,Properties:
{
blocked:
{
type: Boolean
,set: function (x)
{
this._blocked = x;
}
,get: function ()
{
return this._blocked;
}
}
}
,objects: {}
2015-07-07 15:27:47 +00:00
,_blocked: false
,loadXml: function (builder, node)
{
this.parent (builder, node);
var childs = node.childNodes;
for (var i = 0; i < childs.length; i++)
if (childs[i].tagName && childs[i].tagName.toLowerCase () == 'item')
{
var object;
var id = childs[i].getAttribute ('name');
if (id)
{
if (object = builder.get (childs[i].getAttribute ('param')))
this.addParam (id, object);
else if (object = builder.get (childs[i].getAttribute ('object')))
this.addObject (id, object);
}
}
}
,get: function (id)
{
if (this.objects[id])
return this.objects[id];
return null;
}
,add: function (id)
{
if (!this.objects[id])
this.objects[id] = null;
}
,_addObject: function (id, object)
{
this.remove (id);
this.objects[id] = object;
object.on ('changed', this.emitChanged, this);
this.emitChanged ();
}
,addObject: function (id, object)
{
this._addObject (id, object.ref ());
}
,addValue: function (id, value)
{
this._addObject (id,
new Sql.Value ({value: value}));
}
,addParam: function (id, param)
{
this._addObject (id,
new Sql.Value ({param: param}));
}
,remove: function (id)
{
if (this.objects[id])
{
this._unrefObject (this.objects[id]);
delete this.objects[id];
}
}
2015-02-08 15:38:38 +00:00
,block: function ()
{
2015-07-07 15:27:47 +00:00
this._blocked = true;
2015-02-08 15:38:38 +00:00
}
,unblock: function ()
{
2015-07-07 15:27:47 +00:00
this._blocked = false;
}
,emitChanged: function ()
{
if (!this._blocked)
this.signalEmit ('changed');
2015-02-08 15:38:38 +00:00
}
,changed: function ()
{
2015-07-07 15:27:47 +00:00
this.signalEmit ('changed');
}
,isReady: function ()
{
for (var id in this.objects)
if (!(this.objects[id] && this.objects[id].isReady ()))
return false;
return true;
}
,_unrefObject: function (object)
{
if (object)
{
object.disconnect ('changed', this.emitChanged, this);
object.unref ();
}
}
2015-08-17 18:02:14 +00:00
,_destroy: function ()
{
for (var id in this.objects)
this._unrefObject (this.objects[id]);
2015-08-17 18:02:14 +00:00
this.parent ();
}
});