// generated by diplomat-tool import { LocaleParseError } from "./LocaleParseError.mjs" import wasm from "./diplomat-wasm.mjs"; import * as diplomatRuntime from "./diplomat-runtime.mjs"; const Locale_box_destroy_registry = new FinalizationRegistry((ptr) => { wasm.icu4x_Locale_destroy_mv1(ptr); }); /** * An ICU4X Locale, capable of representing strings like `"en-US"`. * * See the [Rust documentation for `Locale`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html) for more information. */ export class Locale { // 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 = []; #internalConstructor(symbol, ptr, selfEdge) { if (symbol !== diplomatRuntime.internalConstructor) { console.error("Locale 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) { Locale_box_destroy_registry.register(this, this.#ptr); } return this; } /** @internal */ get ffiValue() { return this.#ptr; } /** * Construct an {@link Locale} from an locale identifier. * * This will run the complete locale parsing algorithm. If code size and * performance are critical and the locale is of a known shape (such as * `aa-BB`) use `create_und`, `set_language`, `set_script`, and `set_region`. * * See the [Rust documentation for `try_from_str`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#method.try_from_str) for more information. */ static fromString(name) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const nameSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.sliceWrapper(wasm, diplomatRuntime.DiplomatBuf.str8(wasm, name))); const diplomatReceive = new diplomatRuntime.DiplomatReceiveBuf(wasm, 5, 4, true); const result = wasm.icu4x_Locale_from_string_mv1(diplomatReceive.buffer, nameSlice.ptr); try { if (!diplomatReceive.resultFlag) { const cause = new LocaleParseError(diplomatRuntime.internalConstructor, diplomatRuntime.enumDiscriminant(wasm, diplomatReceive.buffer)); throw new globalThis.Error('LocaleParseError.' + cause.value, { cause }); } return new Locale(diplomatRuntime.internalConstructor, diplomatRuntime.ptrRead(wasm, diplomatReceive.buffer), []); } finally { functionCleanupArena.free(); diplomatReceive.free(); } } /** * Construct a unknown {@link Locale} "und". * * See the [Rust documentation for `UNKNOWN`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#associatedconstant.UNKNOWN) for more information. */ static unknown() { const result = wasm.icu4x_Locale_unknown_mv1(); try { return new Locale(diplomatRuntime.internalConstructor, result, []); } finally { } } /** * Clones the {@link Locale}. * * See the [Rust documentation for `Locale`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html) for more information. */ clone() { const result = wasm.icu4x_Locale_clone_mv1(this.ffiValue); try { return new Locale(diplomatRuntime.internalConstructor, result, []); } finally { } } /** * Returns a string representation of the `LanguageIdentifier` part of * {@link Locale}. * * See the [Rust documentation for `id`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#structfield.id) for more information. */ get basename() { const write = new diplomatRuntime.DiplomatWriteBuf(wasm); wasm.icu4x_Locale_basename_mv1(this.ffiValue, write.buffer); try { return write.readString8(); } finally { write.free(); } } /** * Returns a string representation of the unicode extension. * * See the [Rust documentation for `extensions`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#structfield.extensions) for more information. */ getUnicodeExtension(s) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const sSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.sliceWrapper(wasm, diplomatRuntime.DiplomatBuf.str8(wasm, s))); const write = new diplomatRuntime.DiplomatWriteBuf(wasm); const result = wasm.icu4x_Locale_get_unicode_extension_mv1(this.ffiValue, sSlice.ptr, write.buffer); try { return result === 0 ? null : write.readString8(); } finally { functionCleanupArena.free(); write.free(); } } /** * Set a Unicode extension. * * See the [Rust documentation for `extensions`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#structfield.extensions) for more information. */ setUnicodeExtension(k, v) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const kSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.sliceWrapper(wasm, diplomatRuntime.DiplomatBuf.str8(wasm, k))); const vSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.sliceWrapper(wasm, diplomatRuntime.DiplomatBuf.str8(wasm, v))); const result = wasm.icu4x_Locale_set_unicode_extension_mv1(this.ffiValue, kSlice.ptr, vSlice.ptr); try { return result === 1; } finally { functionCleanupArena.free(); } } /** * Returns a string representation of {@link Locale} language. * * See the [Rust documentation for `id`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#structfield.id) for more information. */ get language() { const write = new diplomatRuntime.DiplomatWriteBuf(wasm); wasm.icu4x_Locale_language_mv1(this.ffiValue, write.buffer); try { return write.readString8(); } finally { write.free(); } } /** * Set the language part of the {@link Locale}. * * See the [Rust documentation for `try_from_str`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#method.try_from_str) for more information. */ set language(s) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const sSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.sliceWrapper(wasm, diplomatRuntime.DiplomatBuf.str8(wasm, s))); const diplomatReceive = new diplomatRuntime.DiplomatReceiveBuf(wasm, 5, 4, true); const result = wasm.icu4x_Locale_set_language_mv1(diplomatReceive.buffer, this.ffiValue, sSlice.ptr); try { if (!diplomatReceive.resultFlag) { const cause = new LocaleParseError(diplomatRuntime.internalConstructor, diplomatRuntime.enumDiscriminant(wasm, diplomatReceive.buffer)); throw new globalThis.Error('LocaleParseError.' + cause.value, { cause }); } } finally { functionCleanupArena.free(); diplomatReceive.free(); } } /** * Returns a string representation of {@link Locale} region. * * See the [Rust documentation for `id`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#structfield.id) for more information. */ get region() { const write = new diplomatRuntime.DiplomatWriteBuf(wasm); const result = wasm.icu4x_Locale_region_mv1(this.ffiValue, write.buffer); try { return result === 0 ? null : write.readString8(); } finally { write.free(); } } /** * Set the region part of the {@link Locale}. * * See the [Rust documentation for `try_from_str`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#method.try_from_str) for more information. */ set region(s) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const sSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.sliceWrapper(wasm, diplomatRuntime.DiplomatBuf.str8(wasm, s))); const diplomatReceive = new diplomatRuntime.DiplomatReceiveBuf(wasm, 5, 4, true); const result = wasm.icu4x_Locale_set_region_mv1(diplomatReceive.buffer, this.ffiValue, sSlice.ptr); try { if (!diplomatReceive.resultFlag) { const cause = new LocaleParseError(diplomatRuntime.internalConstructor, diplomatRuntime.enumDiscriminant(wasm, diplomatReceive.buffer)); throw new globalThis.Error('LocaleParseError.' + cause.value, { cause }); } } finally { functionCleanupArena.free(); diplomatReceive.free(); } } /** * Returns a string representation of {@link Locale} script. * * See the [Rust documentation for `id`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#structfield.id) for more information. */ get script() { const write = new diplomatRuntime.DiplomatWriteBuf(wasm); const result = wasm.icu4x_Locale_script_mv1(this.ffiValue, write.buffer); try { return result === 0 ? null : write.readString8(); } finally { write.free(); } } /** * Set the script part of the {@link Locale}. Pass an empty string to remove the script. * * See the [Rust documentation for `try_from_str`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#method.try_from_str) for more information. */ set script(s) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const sSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.sliceWrapper(wasm, diplomatRuntime.DiplomatBuf.str8(wasm, s))); const diplomatReceive = new diplomatRuntime.DiplomatReceiveBuf(wasm, 5, 4, true); const result = wasm.icu4x_Locale_set_script_mv1(diplomatReceive.buffer, this.ffiValue, sSlice.ptr); try { if (!diplomatReceive.resultFlag) { const cause = new LocaleParseError(diplomatRuntime.internalConstructor, diplomatRuntime.enumDiscriminant(wasm, diplomatReceive.buffer)); throw new globalThis.Error('LocaleParseError.' + cause.value, { cause }); } } finally { functionCleanupArena.free(); diplomatReceive.free(); } } /** * Normalizes a locale string. * * See the [Rust documentation for `normalize`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#method.normalize) for more information. */ static normalize(s) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const sSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.sliceWrapper(wasm, diplomatRuntime.DiplomatBuf.str8(wasm, s))); const diplomatReceive = new diplomatRuntime.DiplomatReceiveBuf(wasm, 5, 4, true); const write = new diplomatRuntime.DiplomatWriteBuf(wasm); const result = wasm.icu4x_Locale_normalize_mv1(diplomatReceive.buffer, sSlice.ptr, write.buffer); try { if (!diplomatReceive.resultFlag) { const cause = new LocaleParseError(diplomatRuntime.internalConstructor, diplomatRuntime.enumDiscriminant(wasm, diplomatReceive.buffer)); throw new globalThis.Error('LocaleParseError.' + cause.value, { cause }); } return write.readString8(); } finally { functionCleanupArena.free(); diplomatReceive.free(); write.free(); } } /** * Returns a string representation of {@link Locale}. * * See the [Rust documentation for `write_to`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#method.write_to) for more information. */ toString() { const write = new diplomatRuntime.DiplomatWriteBuf(wasm); wasm.icu4x_Locale_to_string_mv1(this.ffiValue, write.buffer); try { return write.readString8(); } finally { write.free(); } } /** * See the [Rust documentation for `normalizing_eq`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#method.normalizing_eq) for more information. */ normalizingEq(other) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const otherSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.sliceWrapper(wasm, diplomatRuntime.DiplomatBuf.str8(wasm, other))); const result = wasm.icu4x_Locale_normalizing_eq_mv1(this.ffiValue, otherSlice.ptr); try { return result; } finally { functionCleanupArena.free(); } } /** * See the [Rust documentation for `strict_cmp`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#method.strict_cmp) for more information. */ compareToString(other) { let functionCleanupArena = new diplomatRuntime.CleanupArena(); const otherSlice = functionCleanupArena.alloc(diplomatRuntime.DiplomatBuf.sliceWrapper(wasm, diplomatRuntime.DiplomatBuf.str8(wasm, other))); const result = wasm.icu4x_Locale_compare_to_string_mv1(this.ffiValue, otherSlice.ptr); try { return result; } finally { functionCleanupArena.free(); } } /** * See the [Rust documentation for `total_cmp`](https://docs.rs/icu/2.1.1/icu/locale/struct.Locale.html#method.total_cmp) for more information. */ compareTo(other) { const result = wasm.icu4x_Locale_compare_to_mv1(this.ffiValue, other.ffiValue); try { return result; } finally { } } constructor(symbol, ptr, selfEdge) { return this.#internalConstructor(...arguments) } }