All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.pwall.json.schema.validation.NumberValidator.kt Maven / Gradle / Ivy

There is a newer version: 0.52
Show newest version
/*
 * @(#) NumberValidator.kt
 *
 * json-kotlin-schema Kotlin implementation of JSON Schema
 * Copyright (c) 2020, 2021 Peter Wall
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package net.pwall.json.schema.validation

import java.math.BigDecimal
import java.math.BigInteger
import java.net.URI

import net.pwall.json.JSONDecimal
import net.pwall.json.JSONDouble
import net.pwall.json.JSONFloat
import net.pwall.json.JSONInteger
import net.pwall.json.JSONLong
import net.pwall.json.JSONNumberValue
import net.pwall.json.JSONValue
import net.pwall.json.JSONZero
import net.pwall.json.pointer.JSONPointer
import net.pwall.json.schema.JSONSchema
import net.pwall.json.schema.JSONSchemaException
import net.pwall.json.schema.output.BasicErrorEntry

class NumberValidator(uri: URI?, location: JSONPointer, val value: Number, val condition: ValidationType) :
        JSONSchema.Validator(uri, location) {

    enum class ValidationType(val keyword: String) {
        MULTIPLE_OF("multipleOf"),
        MAXIMUM("maximum"),
        EXCLUSIVE_MAXIMUM("exclusiveMaximum"),
        MINIMUM("minimum"),
        EXCLUSIVE_MINIMUM("exclusiveMinimum")
    }

    override fun childLocation(pointer: JSONPointer): JSONPointer = pointer.child(condition.keyword)

    override fun validate(json: JSONValue?, instanceLocation: JSONPointer): Boolean {
        val instance = instanceLocation.eval(json)
        return instance !is JSONNumberValue || validNumber(instance)
    }

    override fun getErrorEntry(relativeLocation: JSONPointer, json: JSONValue?, instanceLocation: JSONPointer):
            BasicErrorEntry? {
        val instance = instanceLocation.eval(json)
        return if (instance !is JSONNumberValue || validNumber(instance)) null else
                createBasicErrorEntry(relativeLocation, instanceLocation,
                        "Number fails check: ${condition.keyword} $value, was $instance")
    }

    private fun validNumber(instance: JSONNumberValue) = when (condition) {
        ValidationType.MULTIPLE_OF -> multipleOf(instance)
        ValidationType.MAXIMUM -> maximum(instance)
        ValidationType.EXCLUSIVE_MAXIMUM -> exclusiveMaximum(instance)
        ValidationType.MINIMUM -> minimum(instance)
        ValidationType.EXCLUSIVE_MINIMUM -> exclusiveMinimum(instance)
    }

    private fun multipleOf(instance: JSONNumberValue): Boolean = when (value) {
        is BigDecimal -> instance.toBigDecimal().rem(value).compareTo(BigDecimal.ZERO) == 0
        is Double -> instance.toDouble().rem(value) == 0.0
        is Float -> instance.toFloat().rem(value) == 0.0F
        is Long -> when (instance) {
            is JSONDecimal -> instance.value.rem(BigDecimal(value)).compareTo(BigDecimal.ZERO) == 0
            is JSONDouble -> instance.value.rem(value) == 0.0
            is JSONFloat -> instance.value.rem(value) == 0.0F
            is JSONLong -> instance.value.rem(value) == 0L
            is JSONInteger -> instance.toLong().rem(value) == 0L
            is JSONZero -> true
            else -> throw JSONSchemaException("Impossible type")
        }
        is Int -> when (instance) {
            is JSONDecimal -> instance.value.rem(BigDecimal(value)).compareTo(BigDecimal.ZERO) == 0
            is JSONDouble -> instance.value.rem(value) == 0.0
            is JSONFloat -> instance.value.rem(value) == 0.0F
            is JSONLong -> instance.value.rem(value) == 0L
            is JSONInteger -> instance.toLong().rem(value) == 0L
            is JSONZero -> true
            else -> throw JSONSchemaException("Impossible type")
        }
        else -> throw JSONSchemaException("Impossible type")
    }

    private fun maximum(instance: JSONNumberValue): Boolean = when (instance) {
        is JSONDecimal -> instance.value <= value.toBigDecimal()
        is JSONDouble -> instance.value <= value.toDouble()
        is JSONFloat -> instance.value <= value.toFloat()
        else -> instance.toLong() <= value.toLong()
    }

    private fun exclusiveMaximum(instance: JSONNumberValue): Boolean = when (instance) {
        is JSONDecimal -> instance.value < value.toBigDecimal()
        is JSONDouble -> instance.value < value.toDouble()
        is JSONFloat -> instance.value < value.toFloat()
        else -> instance.toLong() < value.toLong()
    }

    private fun minimum(instance: JSONNumberValue): Boolean = when (instance) {
        is JSONDecimal -> instance.value >= value.toBigDecimal()
        is JSONDouble -> instance.value >= value.toDouble()
        is JSONFloat -> instance.value >= value.toFloat()
        else -> instance.toLong() >= value.toLong()
    }

    private fun exclusiveMinimum(instance: JSONNumberValue): Boolean = when (instance) {
        is JSONDecimal -> instance.value > value.toBigDecimal()
        is JSONDouble -> instance.value > value.toDouble()
        is JSONFloat -> instance.value > value.toFloat()
        else -> instance.toLong() > value.toLong()
    }

    private fun Number.toBigDecimal() = when (this) {
        is BigDecimal -> this
        is BigInteger -> BigDecimal(this)
        is Double -> BigDecimal(this)
        is Float -> BigDecimal(this.toDouble())
        else -> BigDecimal(this.toLong())
    }

    private fun JSONNumberValue.toBigDecimal(): BigDecimal = when (this) {
        is JSONDecimal -> this.value
        is JSONDouble -> BigDecimal(this.value)
        is JSONFloat -> BigDecimal(this.value.toDouble())
        is JSONLong -> BigDecimal(this.value)
        is JSONInteger -> BigDecimal(this.value)
        is JSONZero -> BigDecimal.ZERO
        else -> throw JSONSchemaException("Incorrect JSON value")
    }

    override fun equals(other: Any?): Boolean = this === other ||
            other is NumberValidator && super.equals(other) && value == other.value && condition == other.condition

    override fun hashCode(): Int = super.hashCode() xor value.hashCode() xor condition.hashCode()

    companion object {

        val typeKeywords: List = ValidationType.values().map { it.keyword }

        fun findType(keyword: String): ValidationType {
            ValidationType.values().forEach { if (it.keyword == keyword) return it }
            throw RuntimeException("Can't find validation type - should not happen")
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy