org.ccsds.moims.mo.mal.structures.Time Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-mal Show documentation
Show all versions of api-mal Show documentation
An implementation of the Java API for the CCSDS MAL
/* ----------------------------------------------------------------------------
* Copyright (C) 2013 European Space Agency
* European Space Operations Centre
* Darmstadt
* Germany
* ----------------------------------------------------------------------------
* System : CCSDS MO MAL Java API
* ----------------------------------------------------------------------------
* Licensed under the European Space Agency Public License, Version 2.0
* You may not use this file except in compliance with the License.
*
* Except as expressly set forth in this License, the Software is provided to
* You on an "as is" basis and without warranties of any kind, including without
* limitation merchantability, fitness for a particular purpose, absence of
* defects or errors, accuracy or non-infringement of intellectual property rights.
*
* See the License for the specific language governing permissions and
* limitations under the License.
* ----------------------------------------------------------------------------
*/
package org.ccsds.moims.mo.mal.structures;
import org.ccsds.moims.mo.mal.MALDecoder;
import org.ccsds.moims.mo.mal.MALEncoder;
import org.ccsds.moims.mo.mal.MALException;
/**
* Class representing MAL Time type.
*/
public class Time implements Attribute {
private long value;
/**
* Default constructor.
*/
public Time() {
value = 0;
}
/**
* Initialises the object with a certain time. The value shall be the
* difference, measured in milliseconds, between the current time and
* midnight, January 1, 1970 UTC.
*
* @param value The time to instantiate the object (Unix time).
*/
public Time(final long value) {
this.value = value;
}
@Override
public Element createElement() {
return new Time();
}
/**
* Returns the value of this type.
*
* @return the value.
*/
public long getValue() {
return value;
}
/**
* Returns the current time encapsulated in a Time type.
*
* @return The current time.
*/
public static Time now() {
return new Time(System.currentTimeMillis());
}
public FineTime toFineTime() {
return new FineTime(value * ONE_MILLION);
}
@Override
public Long getShortForm() {
return Attribute.TIME_SHORT_FORM;
}
@Override
public Integer getTypeShortForm() {
return Attribute.TIME_TYPE_SHORT_FORM;
}
@Override
public UShort getAreaNumber() {
return UShort.ATTRIBUTE_AREA_NUMBER;
}
@Override
public org.ccsds.moims.mo.mal.structures.UOctet getAreaVersion() {
return UOctet.AREA_VERSION;
}
@Override
public UShort getServiceNumber() {
return UShort.ATTRIBUTE_SERVICE_NUMBER;
}
@Override
public void encode(final MALEncoder encoder) throws MALException {
encoder.encodeTime(this);
}
@Override
public Element decode(final MALDecoder decoder) throws MALException {
return decoder.decodeTime();
}
@Override
public boolean equals(final Object obj) {
if (null == obj) {
return false;
}
if (this == obj) {
return true;
}
if (!(obj instanceof Time)) {
return false;
}
return this.value == (((Time) obj).value);
}
@Override
public int hashCode() {
return (int) value;
}
@Override
public String toString() {
return String.valueOf(value);
}
private static final long serialVersionUID = Attribute.TIME_SHORT_FORM;
}