blob: 7c9edd07c4b7550c7b8b8d8fc44833e35f58cac6 [file] [log] [blame]
/*
* 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.carbondata.geo
import scala.collection.mutable
import org.apache.spark.sql.util.CarbonException
import org.apache.carbondata.core.constants.CarbonCommonConstants
import org.apache.carbondata.core.util.CustomIndex
object GeoUtils {
def getGeoHashHandler(tableProperties: mutable.Map[String, String])
: (String, CustomIndex[_]) = {
val indexProperty = tableProperties.get(CarbonCommonConstants.INDEX_HANDLER)
if (indexProperty.isEmpty || indexProperty.get.trim.isEmpty) {
CarbonException.analysisException(
s"Table do not have ${CarbonCommonConstants.INDEX_HANDLER} property " +
s"with ${CarbonCommonConstants.GEOHASH} type handler")
}
val handler = indexProperty.get.split(",").map(_.trim).filter(handler =>
CarbonCommonConstants.GEOHASH.equalsIgnoreCase(
tableProperties.getOrElse(s"${CarbonCommonConstants.INDEX_HANDLER}.$handler.type", "")))
.map(handler => (handler,
tableProperties.get(s"${CarbonCommonConstants.INDEX_HANDLER}.$handler.instance")))
if (handler.isEmpty || handler.length != 1 || handler(0)._1.isEmpty
|| handler(0)._2.isEmpty) {
CarbonException.analysisException(
s"Table do not have ${CarbonCommonConstants.INDEX_HANDLER} property " +
s"with ${CarbonCommonConstants.GEOHASH} type handler")
}
(handler(0) _1, CustomIndex.getCustomInstance(handler(0)._2.get))
}
}