scray.core.service.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scray-service Show documentation
Show all versions of scray-service Show documentation
scray remote query service interface
// See the LICENCE.txt file distributed with this work for additional
// information regarding copyright ownership.
//
// 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 scray.core
import java.util.UUID
import scray.service.qmodel.thrifscala.ScrayUUID
import java.net.InetAddress
import scray.core.service.properties.ScrayServicePropertiesRegistration
import scray.common.properties.ScrayProperties
import scray.common.properties.predefined.PredefinedProperties
import java.net.InetSocketAddress
import scray.core.service.properties.ScrayServicePropertiesRegistrar
package object service {
// scray query endpoints
val SCRAY_QUERY_LISTENING_ENDPOINT = new InetSocketAddress(
ScrayProperties.getPropertyValue(PredefinedProperties.SCRAY_SERVICE_LISTENING_ADDRESS),
ScrayProperties.getPropertyValue(PredefinedProperties.SCRAY_QUERY_PORT))
val SCRAY_QUERY_HOST_ENDPOINT = new InetSocketAddress(
ScrayProperties.getPropertyValue(PredefinedProperties.SCRAY_SERVICE_HOST_ADDRESS),
ScrayProperties.getPropertyValue(PredefinedProperties.SCRAY_QUERY_PORT))
// scray meta endpoints
val SCRAY_META_LISTENING_ENDPOINT = new InetSocketAddress(
ScrayProperties.getPropertyValue(PredefinedProperties.SCRAY_SERVICE_LISTENING_ADDRESS),
ScrayProperties.getPropertyValue(PredefinedProperties.SCRAY_META_PORT))
val SCRAY_META_HOST_ENDPOINT = new InetSocketAddress(
ScrayProperties.getPropertyValue(PredefinedProperties.SCRAY_SERVICE_HOST_ADDRESS),
ScrayProperties.getPropertyValue(PredefinedProperties.SCRAY_META_PORT))
// memcached host
val MEMCACHED_ENDPOINTS = ScrayProperties.getPropertyValue(PredefinedProperties.SCRAY_MEMCACHED_IPS)
// scray seeds
val SCRAY_SEEDS = ScrayProperties.getPropertyValue(PredefinedProperties.SCRAY_SEED_IPS)
// expiration time of enpoint registrations
val EXPIRATION = ScrayProperties.getPropertyValue(ScrayServicePropertiesRegistrar.SCRAY_ENDPOINT_LIFETIME)
def inetAddr2EndpointString(iaddr: InetSocketAddress): String = s"${iaddr.getAddress.getHostAddress}:${iaddr.getPort}"
implicit def UUID2ScrayUUID(uuid: UUID): ScrayUUID =
ScrayUUID(uuid.getMostSignificantBits(), uuid.getLeastSignificantBits())
implicit def ScrayUUID2UUID(suuid: ScrayUUID): UUID =
new UUID(suuid.mostSigBits, suuid.leastSigBits)
implicit class RichBoolean(val b: Boolean) extends AnyVal {
final def option[A](a: => A): Option[A] = if (b) Some(a) else None
final def ?[A](a: => A, c: => A): A = if (b) a else c
final def ?(a: => Unit) = if (b) a
final def ϟ(a: => Unit) = if (!b) a
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy