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

commonMain.Currency.kt Maven / Gradle / Ivy

There is a newer version: 0.14.0
Show newest version
package io.fluidsonic.stdlib

import io.fluidsonic.stdlib.Currency_Static.allCurrencyCodes
import kotlinx.serialization.*
import kotlinx.serialization.internal.*


@Serializable(with = CurrencySerializer::class)
/*inline*/ class Currency internal constructor(
	val code: String
) {

	init {
		freeze()
	}


	override fun equals(other: Any?) =
		other === this || (other is Currency && code == other.code)


	override fun hashCode() =
		code.hashCode()


	val name
		get() = name(Locale.englishInUnitedStates)


	override fun toString() =
		name


	companion object {

		val all: Collection = allCurrencyCodes.map { Currency(it.toUpperCase()) }

		private val allByCode = all.associateBy(Currency::code)


		fun byCode(code: String) =
			allByCode[code.toUpperCase()]
	}
}


expect fun Currency.name(locale: Locale): String


internal expect object Currency_Static {

	val allCurrencyCodes: Set
}


@Serializer(forClass = Currency::class)
internal object CurrencySerializer : KSerializer {

	override val descriptor = StringDescriptor.withName("io.fluidsonic.stdlib.Currency")


	override fun deserialize(decoder: Decoder) =
		decoder.decodeString().let { code ->
			Currency.byCode(code) ?: throw SerializationException("Unknown currency code: $code")
		}


	override fun serialize(encoder: Encoder, obj: Currency) {
		encoder.encodeString(obj.code)
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy