org.apache.cassandra.cql3.functions.TimeFcts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-all Show documentation
Show all versions of cassandra-all Show documentation
The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
*
* http://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 org.apache.cassandra.cql3.functions;
import java.nio.ByteBuffer;
import java.util.Collection;
import java.util.List;
import com.google.common.collect.ImmutableList;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.cassandra.db.marshal.*;
import org.apache.cassandra.transport.ProtocolVersion;
import org.apache.cassandra.utils.ByteBufferUtil;
import org.apache.cassandra.utils.UUIDGen;
public abstract class TimeFcts
{
public static Logger logger = LoggerFactory.getLogger(TimeFcts.class);
public static Collection all()
{
return ImmutableList.of(now("now", TimeUUIDType.instance),
now("currenttimeuuid", TimeUUIDType.instance),
now("currenttimestamp", TimestampType.instance),
now("currentdate", SimpleDateType.instance),
now("currenttime", TimeType.instance),
minTimeuuidFct,
maxTimeuuidFct,
dateOfFct,
unixTimestampOfFct,
toDate(TimeUUIDType.instance),
toTimestamp(TimeUUIDType.instance),
toUnixTimestamp(TimeUUIDType.instance),
toUnixTimestamp(TimestampType.instance),
toDate(TimestampType.instance),
toUnixTimestamp(SimpleDateType.instance),
toTimestamp(SimpleDateType.instance));
}
public static final Function now(final String name, final TemporalType> type)
{
return new NativeScalarFunction(name, type)
{
@Override
public ByteBuffer execute(ProtocolVersion protocolVersion, List parameters)
{
return type.now();
}
};
};
public static final Function minTimeuuidFct = new NativeScalarFunction("mintimeuuid", TimeUUIDType.instance, TimestampType.instance)
{
public ByteBuffer execute(ProtocolVersion protocolVersion, List parameters)
{
ByteBuffer bb = parameters.get(0);
if (bb == null)
return null;
return UUIDGen.toByteBuffer(UUIDGen.minTimeUUID(TimestampType.instance.compose(bb).getTime()));
}
};
public static final Function maxTimeuuidFct = new NativeScalarFunction("maxtimeuuid", TimeUUIDType.instance, TimestampType.instance)
{
public ByteBuffer execute(ProtocolVersion protocolVersion, List parameters)
{
ByteBuffer bb = parameters.get(0);
if (bb == null)
return null;
return UUIDGen.toByteBuffer(UUIDGen.maxTimeUUID(TimestampType.instance.compose(bb).getTime()));
}
};
/**
* Function that convert a value of TIMEUUID
into a value of type TIMESTAMP
.
* @deprecated Replaced by the {@link #timeUuidToTimestamp} function
*/
public static final NativeScalarFunction dateOfFct = new NativeScalarFunction("dateof", TimestampType.instance, TimeUUIDType.instance)
{
private volatile boolean hasLoggedDeprecationWarning;
public ByteBuffer execute(ProtocolVersion protocolVersion, List parameters)
{
if (!hasLoggedDeprecationWarning)
{
hasLoggedDeprecationWarning = true;
logger.warn("The function 'dateof' is deprecated." +
" Use the function 'toTimestamp' instead.");
}
ByteBuffer bb = parameters.get(0);
if (bb == null)
return null;
long timeInMillis = UUIDGen.unixTimestamp(UUIDGen.getUUID(bb));
return ByteBufferUtil.bytes(timeInMillis);
}
};
/**
* Function that convert a value of type TIMEUUID
into an UNIX timestamp.
* @deprecated Replaced by the {@link #timeUuidToUnixTimestamp} function
*/
public static final NativeScalarFunction unixTimestampOfFct = new NativeScalarFunction("unixtimestampof", LongType.instance, TimeUUIDType.instance)
{
private volatile boolean hasLoggedDeprecationWarning;
public ByteBuffer execute(ProtocolVersion protocolVersion, List parameters)
{
if (!hasLoggedDeprecationWarning)
{
hasLoggedDeprecationWarning = true;
logger.warn("The function 'unixtimestampof' is deprecated." +
" Use the function 'toUnixTimestamp' instead.");
}
ByteBuffer bb = parameters.get(0);
if (bb == null)
return null;
return ByteBufferUtil.bytes(UUIDGen.unixTimestamp(UUIDGen.getUUID(bb)));
}
};
/**
* Creates a function that convert a value of the specified type into a DATE
.
* @param type the temporal type
* @return a function that convert a value of the specified type into a DATE
.
*/
public static final NativeScalarFunction toDate(final TemporalType> type)
{
return new NativeScalarFunction("todate", SimpleDateType.instance, type)
{
public ByteBuffer execute(ProtocolVersion protocolVersion, List parameters)
{
ByteBuffer bb = parameters.get(0);
if (bb == null || !bb.hasRemaining())
return null;
long millis = type.toTimeInMillis(bb);
return SimpleDateType.instance.fromTimeInMillis(millis);
}
};
}
/**
* Creates a function that convert a value of the specified type into a TIMESTAMP
.
* @param type the temporal type
* @return a function that convert a value of the specified type into a TIMESTAMP
.
*/
public static final NativeScalarFunction toTimestamp(final TemporalType> type)
{
return new NativeScalarFunction("totimestamp", TimestampType.instance, type)
{
public ByteBuffer execute(ProtocolVersion protocolVersion, List parameters)
{
ByteBuffer bb = parameters.get(0);
if (bb == null || !bb.hasRemaining())
return null;
long millis = type.toTimeInMillis(bb);
return TimestampType.instance.fromTimeInMillis(millis);
}
};
}
/**
* Creates a function that convert a value of the specified type into an UNIX timestamp.
* @param type the temporal type
* @return a function that convert a value of the specified type into an UNIX timestamp.
*/
public static final NativeScalarFunction toUnixTimestamp(final TemporalType> type)
{
return new NativeScalarFunction("tounixtimestamp", LongType.instance, type)
{
public ByteBuffer execute(ProtocolVersion protocolVersion, List parameters)
{
ByteBuffer bb = parameters.get(0);
if (bb == null || !bb.hasRemaining())
return null;
return ByteBufferUtil.bytes(type.toTimeInMillis(bb));
}
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy