blob: f0314d7d98a9b7ae9ea340ab465204c4b7450970 [file] [log] [blame]
/*
* @author: ucla-cs
* This class represents Forwarding Entries
*/
var ForwardingEntry = function ForwardingEntry(
//ActionType
_action,
//Name
_prefixName,
//PublisherPublicKeyDigest
_ccndId,
//Integer
_faceID,
//Integer
_flags,
//Integer
_lifetime){
//String
this.action = _action;
//Name\
this.prefixName = _prefixName;
//PublisherPublicKeyDigest
this.ccndID = _ccndId;
//Integer
this.faceID = _faceID;
//Integer
this.flags = _flags;
//Integer
this.lifetime = _lifetime; // in seconds
};
ForwardingEntry.prototype.from_ccnb =function(
//XMLDecoder
decoder)
//throws ContentDecodingException
{
decoder.readStartElement(this.getElementLabel());
if (decoder.peekStartElement(CCNProtocolDTags.Action)) {
this.action = decoder.readUTF8Element(CCNProtocolDTags.Action);
}
if (decoder.peekStartElement(CCNProtocolDTags.Name)) {
this.prefixName = new Name();
this.prefixName.from_ccnb(decoder) ;
}
if (decoder.peekStartElement(CCNProtocolDTags.PublisherPublicKeyDigest)) {
this.CcndId = new PublisherPublicKeyDigest();
this.CcndId.from_ccnb(decoder);
}
if (decoder.peekStartElement(CCNProtocolDTags.FaceID)) {
this.faceID = decoder.readIntegerElement(CCNProtocolDTags.FaceID);
}
if (decoder.peekStartElement(CCNProtocolDTags.ForwardingFlags)) {
this.flags = decoder.readIntegerElement(CCNProtocolDTags.ForwardingFlags);
}
if (decoder.peekStartElement(CCNProtocolDTags.FreshnessSeconds)) {
this.lifetime = decoder.readIntegerElement(CCNProtocolDTags.FreshnessSeconds);
}
decoder.readEndElement();
};
/**
* Used by NetworkObject to encode the object to a network stream.
* @see org.ccnx.ccn.impl.encoding.XMLEncodable
*/
ForwardingEntry.prototype.to_ccnb =function(
//XMLEncoder
encoder)
{
//if (!validate()) {
//throw new ContentEncodingException("Cannot encode " + this.getClass().getName() + ": field values missing.");
//}
encoder.writeStartElement(this.getElementLabel());
if (null != this.action && this.action.length != 0)
encoder.writeElement(CCNProtocolDTags.Action, this.action);
if (null != this.prefixName) {
this.prefixName.to_ccnb(encoder);
}
if (null != this.CcndId) {
this.CcndId.to_ccnb(encoder);
}
if (null != this.faceID) {
encoder.writeElement(CCNProtocolDTags.FaceID, this.faceID);
}
if (null != this.flags) {
encoder.writeElement(CCNProtocolDTags.ForwardingFlags, this.flags);
}
if (null != this.lifetime) {
encoder.writeElement(CCNProtocolDTags.FreshnessSeconds, this.lifetime);
}
encoder.writeEndElement();
};
ForwardingEntry.prototype.getElementLabel = function() { return CCNProtocolDTags.ForwardingEntry; }