LocaleCanonicalizer.mjs (5464B)
1 // generated by diplomat-tool 2 import { DataError } from "./DataError.mjs" 3 import { DataProvider } from "./DataProvider.mjs" 4 import { Locale } from "./Locale.mjs" 5 import { TransformResult } from "./TransformResult.mjs" 6 import wasm from "./diplomat-wasm.mjs"; 7 import * as diplomatRuntime from "./diplomat-runtime.mjs"; 8 9 10 /** 11 * A locale canonicalizer. 12 * 13 * See the [Rust documentation for `LocaleCanonicalizer`](https://docs.rs/icu/latest/icu/locale/struct.LocaleCanonicalizer.html) for more information. 14 */ 15 const LocaleCanonicalizer_box_destroy_registry = new FinalizationRegistry((ptr) => { 16 wasm.icu4x_LocaleCanonicalizer_destroy_mv1(ptr); 17 }); 18 19 export class LocaleCanonicalizer { 20 // Internal ptr reference: 21 #ptr = null; 22 23 // Lifetimes are only to keep dependencies alive. 24 // Since JS won't garbage collect until there are no incoming edges. 25 #selfEdge = []; 26 27 #internalConstructor(symbol, ptr, selfEdge) { 28 if (symbol !== diplomatRuntime.internalConstructor) { 29 console.error("LocaleCanonicalizer is an Opaque type. You cannot call its constructor."); 30 return; 31 } 32 this.#ptr = ptr; 33 this.#selfEdge = selfEdge; 34 35 // Are we being borrowed? If not, we can register. 36 if (this.#selfEdge.length === 0) { 37 LocaleCanonicalizer_box_destroy_registry.register(this, this.#ptr); 38 } 39 40 return this; 41 } 42 get ffiValue() { 43 return this.#ptr; 44 } 45 46 47 /** 48 * Create a new [`LocaleCanonicalizer`] using compiled data. 49 * 50 * See the [Rust documentation for `new_common`](https://docs.rs/icu/latest/icu/locale/struct.LocaleCanonicalizer.html#method.new_common) for more information. 51 */ 52 #defaultConstructor() { 53 54 const result = wasm.icu4x_LocaleCanonicalizer_create_common_mv1(); 55 56 try { 57 return new LocaleCanonicalizer(diplomatRuntime.internalConstructor, result, []); 58 } 59 60 finally { 61 } 62 } 63 64 /** 65 * Create a new [`LocaleCanonicalizer`]. 66 * 67 * See the [Rust documentation for `new_common`](https://docs.rs/icu/latest/icu/locale/struct.LocaleCanonicalizer.html#method.new_common) for more information. 68 */ 69 static createCommonWithProvider(provider) { 70 const diplomatReceive = new diplomatRuntime.DiplomatReceiveBuf(wasm, 5, 4, true); 71 72 73 const result = wasm.icu4x_LocaleCanonicalizer_create_common_with_provider_mv1(diplomatReceive.buffer, provider.ffiValue); 74 75 try { 76 if (!diplomatReceive.resultFlag) { 77 const cause = new DataError(diplomatRuntime.internalConstructor, diplomatRuntime.enumDiscriminant(wasm, diplomatReceive.buffer)); 78 throw new globalThis.Error('DataError: ' + cause.value, { cause }); 79 } 80 return new LocaleCanonicalizer(diplomatRuntime.internalConstructor, diplomatRuntime.ptrRead(wasm, diplomatReceive.buffer), []); 81 } 82 83 finally { 84 diplomatReceive.free(); 85 } 86 } 87 88 /** 89 * Create a new [`LocaleCanonicalizer`] with extended data using compiled data. 90 * 91 * See the [Rust documentation for `new_extended`](https://docs.rs/icu/latest/icu/locale/struct.LocaleCanonicalizer.html#method.new_extended) for more information. 92 */ 93 static createExtended() { 94 95 const result = wasm.icu4x_LocaleCanonicalizer_create_extended_mv1(); 96 97 try { 98 return new LocaleCanonicalizer(diplomatRuntime.internalConstructor, result, []); 99 } 100 101 finally { 102 } 103 } 104 105 /** 106 * Create a new [`LocaleCanonicalizer`] with extended data. 107 * 108 * See the [Rust documentation for `new_extended`](https://docs.rs/icu/latest/icu/locale/struct.LocaleCanonicalizer.html#method.new_extended) for more information. 109 */ 110 static createExtendedWithProvider(provider) { 111 const diplomatReceive = new diplomatRuntime.DiplomatReceiveBuf(wasm, 5, 4, true); 112 113 114 const result = wasm.icu4x_LocaleCanonicalizer_create_extended_with_provider_mv1(diplomatReceive.buffer, provider.ffiValue); 115 116 try { 117 if (!diplomatReceive.resultFlag) { 118 const cause = new DataError(diplomatRuntime.internalConstructor, diplomatRuntime.enumDiscriminant(wasm, diplomatReceive.buffer)); 119 throw new globalThis.Error('DataError: ' + cause.value, { cause }); 120 } 121 return new LocaleCanonicalizer(diplomatRuntime.internalConstructor, diplomatRuntime.ptrRead(wasm, diplomatReceive.buffer), []); 122 } 123 124 finally { 125 diplomatReceive.free(); 126 } 127 } 128 129 /** 130 * See the [Rust documentation for `canonicalize`](https://docs.rs/icu/latest/icu/locale/struct.LocaleCanonicalizer.html#method.canonicalize) for more information. 131 */ 132 canonicalize(locale) { 133 134 const result = wasm.icu4x_LocaleCanonicalizer_canonicalize_mv1(this.ffiValue, locale.ffiValue); 135 136 try { 137 return new TransformResult(diplomatRuntime.internalConstructor, result); 138 } 139 140 finally { 141 } 142 } 143 144 constructor() { 145 if (arguments[0] === diplomatRuntime.exposeConstructor) { 146 return this.#internalConstructor(...Array.prototype.slice.call(arguments, 1)); 147 } else if (arguments[0] === diplomatRuntime.internalConstructor) { 148 return this.#internalConstructor(...arguments); 149 } else { 150 return this.#defaultConstructor(...arguments); 151 } 152 } 153 }