// generated by diplomat-tool import { DataError } from "./DataError.mjs" import { DataProvider } from "./DataProvider.mjs" import wasm from "./diplomat-wasm.mjs"; import * as diplomatRuntime from "./diplomat-runtime.mjs"; /** A mapper between IANA time zone identifiers and BCP-47 time zone identifiers. * *This mapper supports two-way mapping, but it is optimized for the case of IANA to BCP-47. *It also supports normalizing and canonicalizing the IANA strings. * *See the [Rust documentation for `TimeZoneIdMapperWithFastCanonicalization`](https://docs.rs/icu/latest/icu/timezone/struct.TimeZoneIdMapperWithFastCanonicalization.html) for more information. */ const TimeZoneIdMapperWithFastCanonicalization_box_destroy_registry = new FinalizationRegistry((ptr) => { wasm.icu4x_TimeZoneIdMapperWithFastCanonicalization_destroy_mv1(ptr); }); export class TimeZoneIdMapperWithFastCanonicalization { // Internal ptr reference: #ptr = null; // Lifetimes are only to keep dependencies alive. // Since JS won't garbage collect until there are no incoming edges. #selfEdge = []; constructor(symbol, ptr, selfEdge) { if (symbol !== diplomatRuntime.internalConstructor) { console.error("TimeZoneIdMapperWithFastCanonicalization is an Opaque type. You cannot call its constructor."); return; } this.#ptr = ptr; this.#selfEdge = selfEdge; // Are we being borrowed? If not, we can register. if (this.#selfEdge.length === 0) { TimeZoneIdMapperWithFastCanonicalization_box_destroy_registry.register(this, this.#ptr); } } get ffiValue() { return this.#ptr; } static create(provider) { const diplomatReceive = new diplomatRuntime.DiplomatReceiveBuf(wasm, 5, 4, true); const result = wasm.icu4x_TimeZoneIdMapperWithFastCanonicalization_create_mv1(diplomatReceive.buffer, provider.ffiValue); try { if (!diplomatReceive.resultFlag) { const cause = new DataError(diplomatRuntime.internalConstructor, diplomatRuntime.enumDiscriminant(wasm, diplomatReceive.buffer)); throw new globalThis.Error('DataError: ' + cause.value, { cause }); } return new TimeZoneIdMapperWithFastCanonicalization(diplomatRuntime.internalConstructor, diplomatRuntime.ptrRead(wasm, diplomatReceive.buffer), []); } finally { diplomatReceive.free(); } } canonicalizeIana(value) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const valueSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.str8(wasm, value)); const write = new diplomatRuntime.DiplomatWriteBuf(wasm); const result = wasm.icu4x_TimeZoneIdMapperWithFastCanonicalization_canonicalize_iana_mv1(this.ffiValue, ...valueSlice.splat(), write.buffer); try { return result === 0 ? null : write.readString8(); } finally { functionCleanupArena.free(); write.free(); } } canonicalIanaFromBcp47(value) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const valueSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.str8(wasm, value)); const write = new diplomatRuntime.DiplomatWriteBuf(wasm); const result = wasm.icu4x_TimeZoneIdMapperWithFastCanonicalization_canonical_iana_from_bcp47_mv1(this.ffiValue, ...valueSlice.splat(), write.buffer); try { return result === 0 ? null : write.readString8(); } finally { functionCleanupArena.free(); write.free(); } } }