uk.co.real_logic.artio.fields.UtcTimeOnlyEncoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artio-codecs Show documentation
Show all versions of artio-codecs Show documentation
High-Performance FIX Gateway
/*
* Copyright 2015-2024 Real Logic Limited.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package uk.co.real_logic.artio.fields;
import org.agrona.concurrent.UnsafeBuffer;
import uk.co.real_logic.artio.util.MutableAsciiBuffer;
import static uk.co.real_logic.artio.fields.CalendricalUtil.*;
import static uk.co.real_logic.artio.fields.UtcTimeOnlyDecoder.*;
/**
* .
*/
public final class UtcTimeOnlyEncoder
{
public static final int LENGTH_WITHOUT_MILLISECONDS = 8;
public static final int LENGTH_WITH_MILLISECONDS = 12;
public static final int LENGTH_WITH_MICROSECONDS = 15;
public static final int LENGTH_WITH_NANOSECONDS = 18;
private final UnsafeBuffer buffer = new UnsafeBuffer(0, 0);
private final MutableAsciiBuffer flyweight = new MutableAsciiBuffer(buffer);
public int encode(final long millisecondOfDay, final byte[] bytes)
{
buffer.wrap(bytes);
return encode(millisecondOfDay, flyweight, 0);
}
public static int encode(
final long millisecondOfDay,
final MutableAsciiBuffer string,
final int offset)
{
final long localSecond = Math.floorDiv(millisecondOfDay, MILLIS_IN_SECOND);
final int fractionOfSecond = (int)(Math.floorMod(millisecondOfDay, MILLIS_IN_SECOND));
encodeFraction(localSecond, fractionOfSecond, string, offset, MILLIS_FIELD_LENGTH);
return fractionOfSecond > 0 ? LENGTH_WITH_MILLISECONDS : LENGTH_WITHOUT_MILLISECONDS;
}
public static int encodeMicros(
final long microsecondOfDay,
final MutableAsciiBuffer string,
final int offset)
{
final long localSecond = Math.floorDiv(microsecondOfDay, MICROS_IN_SECOND);
final int fractionOfSecond = (int)(Math.floorMod(microsecondOfDay, MICROS_IN_SECOND));
encodeFraction(localSecond, fractionOfSecond, string, offset, MICROS_FIELD_LENGTH);
return fractionOfSecond > 0 ? LENGTH_WITH_MICROSECONDS : LENGTH_WITHOUT_MILLISECONDS;
}
public static int encodeNanos(
final long nanosecondOfDay,
final MutableAsciiBuffer string,
final int offset)
{
final long localSecond = Math.floorDiv(nanosecondOfDay, NANOS_IN_SECOND);
final int fractionOfSecond = (int)(Math.floorMod(nanosecondOfDay, NANOS_IN_SECOND));
encodeFraction(localSecond, fractionOfSecond, string, offset, NANOS_FIELD_LENGTH);
return fractionOfSecond > 0 ? LENGTH_WITH_NANOSECONDS : LENGTH_WITHOUT_MILLISECONDS;
}
static void encodeFraction(
final long epochSecond,
final int fractionOfSecond,
final MutableAsciiBuffer string,
final int offset,
final int fractionFieldLength)
{
int secondOfDay = (int)Math.floorMod(epochSecond, SECONDS_IN_DAY);
final int hours = secondOfDay / SECONDS_IN_HOUR;
secondOfDay -= hours * SECONDS_IN_HOUR;
final int minutes = secondOfDay / SECONDS_IN_MINUTE;
secondOfDay -= minutes * SECONDS_IN_MINUTE;
string.putNaturalPaddedIntAscii(offset, 2, hours);
string.putChar(offset + 2, ':');
string.putNaturalPaddedIntAscii(offset + 3, 2, minutes);
string.putChar(offset + 5, ':');
string.putNaturalPaddedIntAscii(offset + 6, 2, secondOfDay);
string.putChar(offset + 8, '.');
string.putNaturalPaddedIntAscii(offset + 9, fractionFieldLength, fractionOfSecond);
}
}