// generated by diplomat-tool import { CodePointSetBuilder } from "./CodePointSetBuilder.mjs" import { DataError } from "./DataError.mjs" import { DataProvider } from "./DataProvider.mjs" import { Locale } from "./Locale.mjs" import { TitlecaseOptions } from "./TitlecaseOptions.mjs" import wasm from "./diplomat-wasm.mjs"; import * as diplomatRuntime from "./diplomat-runtime.mjs"; /** See the [Rust documentation for `CaseMapper`](https://docs.rs/icu/latest/icu/casemap/struct.CaseMapper.html) for more information. */ const CaseMapper_box_destroy_registry = new FinalizationRegistry((ptr) => { wasm.icu4x_CaseMapper_destroy_mv1(ptr); }); export class CaseMapper { // 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("CaseMapper 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) { CaseMapper_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_CaseMapper_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 CaseMapper(diplomatRuntime.internalConstructor, diplomatRuntime.ptrRead(wasm, diplomatReceive.buffer), []); } finally { diplomatReceive.free(); } } lowercase(s, locale) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const sSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.str8(wasm, s)); const write = new diplomatRuntime.DiplomatWriteBuf(wasm); wasm.icu4x_CaseMapper_lowercase_mv1(this.ffiValue, ...sSlice.splat(), locale.ffiValue, write.buffer); try { return write.readString8(); } finally { functionCleanupArena.free(); write.free(); } } uppercase(s, locale) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const sSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.str8(wasm, s)); const write = new diplomatRuntime.DiplomatWriteBuf(wasm); wasm.icu4x_CaseMapper_uppercase_mv1(this.ffiValue, ...sSlice.splat(), locale.ffiValue, write.buffer); try { return write.readString8(); } finally { functionCleanupArena.free(); write.free(); } } titlecaseSegmentWithOnlyCaseData(s, locale, options) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const sSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.str8(wasm, s)); const write = new diplomatRuntime.DiplomatWriteBuf(wasm); wasm.icu4x_CaseMapper_titlecase_segment_with_only_case_data_v1_mv1(this.ffiValue, ...sSlice.splat(), locale.ffiValue, ...options._intoFFI(functionCleanupArena, {}), write.buffer); try { return write.readString8(); } finally { functionCleanupArena.free(); write.free(); } } fold(s) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const sSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.str8(wasm, s)); const write = new diplomatRuntime.DiplomatWriteBuf(wasm); wasm.icu4x_CaseMapper_fold_mv1(this.ffiValue, ...sSlice.splat(), write.buffer); try { return write.readString8(); } finally { functionCleanupArena.free(); write.free(); } } foldTurkic(s) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const sSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.str8(wasm, s)); const write = new diplomatRuntime.DiplomatWriteBuf(wasm); wasm.icu4x_CaseMapper_fold_turkic_mv1(this.ffiValue, ...sSlice.splat(), write.buffer); try { return write.readString8(); } finally { functionCleanupArena.free(); write.free(); } } addCaseClosureTo(c, builder) {wasm.icu4x_CaseMapper_add_case_closure_to_mv1(this.ffiValue, c, builder.ffiValue); try {} finally {} } simpleLowercase(ch) { const result = wasm.icu4x_CaseMapper_simple_lowercase_mv1(this.ffiValue, ch); try { return result; } finally {} } simpleUppercase(ch) { const result = wasm.icu4x_CaseMapper_simple_uppercase_mv1(this.ffiValue, ch); try { return result; } finally {} } simpleTitlecase(ch) { const result = wasm.icu4x_CaseMapper_simple_titlecase_mv1(this.ffiValue, ch); try { return result; } finally {} } simpleFold(ch) { const result = wasm.icu4x_CaseMapper_simple_fold_mv1(this.ffiValue, ch); try { return result; } finally {} } simpleFoldTurkic(ch) { const result = wasm.icu4x_CaseMapper_simple_fold_turkic_mv1(this.ffiValue, ch); try { return result; } finally {} } }