
io.prediction.data.storage.jdbc.JDBCChannels.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.storage.jdbc
import grizzled.slf4j.Logging
import io.prediction.data.storage.Channel
import io.prediction.data.storage.Channels
import io.prediction.data.storage.StorageClientConfig
import scalikejdbc._
/** JDBC implementation of [[Channels]] */
class JDBCChannels(client: String, config: StorageClientConfig, prefix: String)
extends Channels with Logging {
/** Database table name for this data access object */
val tableName = JDBCUtils.prefixTableName(prefix, "channels")
DB autoCommit { implicit session =>
sql"""
create table if not exists $tableName (
id serial not null primary key,
name text not null,
appid integer not null)""".execute().apply()
}
def insert(channel: Channel): Option[Int] = DB localTx { implicit session =>
val q = if (channel.id == 0) {
sql"INSERT INTO $tableName (name, appid) VALUES(${channel.name}, ${channel.appid})"
} else {
sql"INSERT INTO $tableName VALUES(${channel.id}, ${channel.name}, ${channel.appid})"
}
Some(q.updateAndReturnGeneratedKey().apply().toInt)
}
def get(id: Int): Option[Channel] = DB localTx { implicit session =>
sql"SELECT id, name, appid FROM $tableName WHERE id = $id".
map(resultToChannel).single().apply()
}
def getByAppid(appid: Int): Seq[Channel] = DB localTx { implicit session =>
sql"SELECT id, name, appid FROM $tableName WHERE appid = $appid".
map(resultToChannel).list().apply()
}
def delete(id: Int): Unit = DB localTx { implicit session =>
sql"DELETE FROM $tableName WHERE id = $id".update().apply()
}
def resultToChannel(rs: WrappedResultSet): Channel = {
Channel(
id = rs.int("id"),
name = rs.string("name"),
appid = rs.int("appid"))
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy