
io.prediction.data.store.java.LJavaEventStore.scala Maven / Gradle / Ivy
The newest version!
/** Copyright 2015 TappingStone, Inc.
*
* 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
*
* 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 io.prediction.data.store.java
import io.prediction.data.storage.Event
import io.prediction.data.store.LEventStore
import org.joda.time.DateTime
import scala.collection.JavaConversions
import scala.concurrent.duration.Duration
/** This Java-friendly object provides a set of operation to access Event Store
* without going through Spark's parallelization
*/
object LJavaEventStore {
/** Reads events of the specified entity. May use this in Algorithm's predict()
* or Serving logic to have fast event store access.
*
* @param appName return events of this app
* @param entityType return events of this entityType
* @param entityId return events of this entityId
* @param channelName return events of this channel (default channel if it's None)
* @param eventNames return events with any of these event names.
* @param targetEntityType return events of this targetEntityType:
* - None means no restriction on targetEntityType
* - Some(None) means no targetEntityType for this event
* - Some(Some(x)) means targetEntityType should match x.
* @param targetEntityId return events of this targetEntityId
* - None means no restriction on targetEntityId
* - Some(None) means no targetEntityId for this event
* - Some(Some(x)) means targetEntityId should match x.
* @param startTime return events with eventTime >= startTime
* @param untilTime return events with eventTime < untilTime
* @param limit Limit number of events. Get all events if None or Some(-1)
* @param latest Return latest event first
* @return java.util.List[Event]
*/
def findByEntity(
appName: String,
entityType: String,
entityId: String,
channelName: Option[String],
eventNames: Option[java.util.List[String]],
targetEntityType: Option[Option[String]],
targetEntityId: Option[Option[String]],
startTime: Option[DateTime],
untilTime: Option[DateTime],
limit: Option[Integer],
latest: Boolean,
timeout: Duration): java.util.List[Event] = {
val eventNamesSeq = eventNames.map(JavaConversions.asScalaBuffer(_).toSeq)
val limitInt = limit.map(_.intValue())
JavaConversions.seqAsJavaList(
LEventStore.findByEntity(
appName,
entityType,
entityId,
channelName,
eventNamesSeq,
targetEntityType,
targetEntityId,
startTime,
untilTime,
limitInt,
latest,
timeout
).toSeq)
}
/** Reads events generically. If entityType or entityId is not specified, it
* results in table scan.
*
* @param appName return events of this app
* @param entityType return events of this entityType
* - None means no restriction on entityType
* - Some(x) means entityType should match x.
* @param entityId return events of this entityId
* - None means no restriction on entityId
* - Some(x) means entityId should match x.
* @param channelName return events of this channel (default channel if it's None)
* @param eventNames return events with any of these event names.
* @param targetEntityType return events of this targetEntityType:
* - None means no restriction on targetEntityType
* - Some(None) means no targetEntityType for this event
* - Some(Some(x)) means targetEntityType should match x.
* @param targetEntityId return events of this targetEntityId
* - None means no restriction on targetEntityId
* - Some(None) means no targetEntityId for this event
* - Some(Some(x)) means targetEntityId should match x.
* @param startTime return events with eventTime >= startTime
* @param untilTime return events with eventTime < untilTime
* @param limit Limit number of events. Get all events if None or Some(-1)
* @return java.util.List[Event]
*/
def find(
appName: String,
entityType: Option[String],
entityId: Option[String],
channelName: Option[String],
eventNames: Option[java.util.List[String]],
targetEntityType: Option[Option[String]],
targetEntityId: Option[Option[String]],
startTime: Option[DateTime],
untilTime: Option[DateTime],
limit: Option[Integer],
timeout: Duration): java.util.List[Event] = {
val eventNamesSeq = eventNames.map(JavaConversions.asScalaBuffer(_).toSeq)
val limitInt = limit.map(_.intValue())
JavaConversions.seqAsJavaList(
LEventStore.find(
appName,
entityType,
entityId,
channelName,
eventNamesSeq,
targetEntityType,
targetEntityId,
startTime,
untilTime,
limitInt,
timeout
).toSeq)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy