blob: 878a6d9237e6bb67e57beb0737236a401fbb198f [file] [log] [blame]
var Exclude = function Exclude(_Values){
this.OPTIMUM_FILTER_SIZE = 100;
this.Values = _Values; //array of elements
}
Exclude.prototype.decode = function(/*XMLDecoder*/ decoder) {
decoder.readStartElement(this.getElementLabel());
//TODO
/*var component;
var any = false;
while ((component = decoder.peekStartElement(CCNProtocolDTags.Component)) ||
(any = decoder.peekStartElement(CCNProtocolDTags.Any)) ||
decoder.peekStartElement(CCNProtocolDTags.Bloom)) {
var ee = component?new ExcludeComponent(): any ? new ExcludeAny() : new BloomFilter();
ee.decode(decoder);
_values.add(ee);
}*/
decoder.readEndElement();
};
Exclude.prototype.encode=function(/*XMLEncoder*/ encoder) {
if (!validate()) {
throw new ContentEncodingException("Cannot encode " + this.getClass().getName() + ": field values missing.");
}
// if everything is null, output nothing
if (empty())
return;
encoder.writeStartElement(getElementLabel());
encoder.writeEndElement();
};
Exclude.prototype.getElementLabel = function() { return CCNProtocolDTags.Exclude; };