1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
use crate::{
	sys::{
		napi_is_array, napi_is_arraybuffer, napi_is_buffer, napi_is_dataview, napi_is_date,
		napi_is_typedarray, napi_status, napi_typeof, napi_value, napi_valuetype,
	},
	Env, Error, Result,
};
use std::mem::MaybeUninit;

pub mod array;
pub mod arraybuffer;
pub mod bigint;
pub mod boolean;
pub mod buffer;
pub mod dataview;
pub mod date;
pub mod external;
pub mod function;
pub mod null;
pub mod number;
pub mod object;
pub mod string;
pub mod symbol;
pub mod typedarray;
pub mod undefined;

pub use self::{
	array::Array, arraybuffer::ArrayBuffer, bigint::BigInt, boolean::Boolean, buffer::Buffer,
	dataview::DataView, date::Date, external::External, function::Function, null::Null,
	number::Number, object::Object, string::String, symbol::Symbol, typedarray::TypedArray,
	undefined::Undefined,
};

#[derive(Clone, Copy)]
pub struct Value<'a> {
	env: Env<'a>,
	value: napi_value,
}

impl<'a> Value<'a> {
	pub fn from_raw(env: Env<'a>, value: napi_value) -> Value<'a> {
		Value { env, value }
	}

	pub fn env(&self) -> Env<'a> {
		self.env
	}

	pub fn raw(&self) -> napi_value {
		self.value
	}

	fn value_type(&self) -> Result<napi_valuetype> {
		let value = unsafe {
			let mut result = MaybeUninit::uninit();
			let status = napi_typeof(self.env().raw(), self.raw(), result.as_mut_ptr());
			if status != napi_status::napi_ok {
				return Err(Error::from_last_node_api_error(self.env().raw(), status));
			}
			result.assume_init()
		};
		Ok(value)
	}

	pub fn is_array(&self) -> Result<bool> {
		unsafe {
			let mut result = MaybeUninit::uninit();
			let status = napi_is_array(self.env().raw(), self.raw(), result.as_mut_ptr());
			if status != napi_status::napi_ok {
				return Err(Error::from_last_node_api_error(self.env().raw(), status));
			}
			Ok(result.assume_init())
		}
	}

	pub fn as_array(&self) -> Result<Array<'a>> {
		if self.is_array()? {
			Ok(Array::from_value(*self))
		} else {
			Err(Error::message("could not cast value to array"))
		}
	}

	pub fn is_arraybuffer(&self) -> Result<bool> {
		unsafe {
			let mut result = MaybeUninit::uninit();
			let status = napi_is_arraybuffer(self.env().raw(), self.raw(), result.as_mut_ptr());
			if status != napi_status::napi_ok {
				return Err(Error::from_last_node_api_error(self.env().raw(), status));
			}
			Ok(result.assume_init())
		}
	}

	pub fn as_arraybuffer(&self) -> Result<ArrayBuffer<'a>> {
		if self.is_arraybuffer()? {
			Ok(ArrayBuffer::from_value(*self))
		} else {
			Err(Error::message("could not cast value to arraybuffer"))
		}
	}

	pub fn is_bigint(&self) -> Result<bool> {
		Ok(self.value_type()? == napi_valuetype::napi_bigint)
	}

	pub fn as_bigint(&self) -> Result<BigInt<'a>> {
		if self.is_bigint()? {
			Ok(BigInt::from_value(*self))
		} else {
			Err(Error::message("could not cast value to bigint"))
		}
	}

	pub fn is_boolean(&self) -> Result<bool> {
		Ok(self.value_type()? == napi_valuetype::napi_boolean)
	}

	pub fn as_boolean(&self) -> Result<Boolean<'a>> {
		if self.is_boolean()? {
			Ok(Boolean::from_value(*self))
		} else {
			Err(Error::message("could not cast value to boolean"))
		}
	}

	pub fn is_buffer(&self) -> Result<bool> {
		unsafe {
			let mut result = MaybeUninit::uninit();
			let status = napi_is_buffer(self.env().raw(), self.raw(), result.as_mut_ptr());
			if status != napi_status::napi_ok {
				return Err(Error::from_last_node_api_error(self.env().raw(), status));
			}
			Ok(result.assume_init())
		}
	}

	pub fn as_buffer(&self) -> Result<Buffer<'a>> {
		if self.is_buffer()? {
			Ok(Buffer::from_value(*self))
		} else {
			Err(Error::message("could not cast value to buffer"))
		}
	}

	pub fn is_dataview(&self) -> Result<bool> {
		unsafe {
			let mut result = MaybeUninit::uninit();
			let status = napi_is_dataview(self.env().raw(), self.raw(), result.as_mut_ptr());
			if status != napi_status::napi_ok {
				return Err(Error::from_last_node_api_error(self.env().raw(), status));
			}
			Ok(result.assume_init())
		}
	}

	pub fn as_dataview(&self) -> Result<DataView<'a>> {
		if self.is_dataview()? {
			Ok(DataView::from_value(*self))
		} else {
			Err(Error::message("could not cast value to dataview"))
		}
	}

	pub fn is_date(&self) -> Result<bool> {
		unsafe {
			let mut result = MaybeUninit::uninit();
			let status = napi_is_date(self.env().raw(), self.raw(), result.as_mut_ptr());
			if status != napi_status::napi_ok {
				return Err(Error::from_last_node_api_error(self.env().raw(), status));
			}
			Ok(result.assume_init())
		}
	}

	pub fn as_date(&self) -> Result<Date<'a>> {
		if self.is_date()? {
			Ok(Date::from_value(*self))
		} else {
			Err(Error::message("could not cast value to date"))
		}
	}

	pub fn is_external(&self) -> Result<bool> {
		Ok(self.value_type()? == napi_valuetype::napi_external)
	}

	pub fn as_external<T>(&self) -> Result<External<'a, T>> {
		if self.is_external()? {
			Ok(External::from_value(*self))
		} else {
			Err(Error::message("could not cast value to external"))
		}
	}

	pub fn is_function(&self) -> Result<bool> {
		Ok(self.value_type()? == napi_valuetype::napi_function)
	}

	pub fn as_function(&self) -> Result<Function<'a>> {
		if self.is_function()? {
			Ok(Function::from_value(*self))
		} else {
			Err(Error::message("could not cast value to function"))
		}
	}

	pub fn is_null(&self) -> Result<bool> {
		Ok(self.value_type()? == napi_valuetype::napi_null)
	}

	pub fn as_null(&self) -> Result<Null<'a>> {
		if self.is_null()? {
			Ok(Null::from_value(*self))
		} else {
			Err(Error::message("could not cast value to null"))
		}
	}

	pub fn is_number(&self) -> Result<bool> {
		Ok(self.value_type()? == napi_valuetype::napi_number)
	}

	pub fn as_number(&self) -> Result<Number<'a>> {
		if self.is_number()? {
			Ok(Number::from_value(*self))
		} else {
			Err(Error::message("could not cast value to number"))
		}
	}

	pub fn is_object(&self) -> Result<bool> {
		Ok(self.value_type()? == napi_valuetype::napi_object)
	}

	pub fn as_object(&self) -> Result<Object<'a>> {
		if self.is_object()? {
			Ok(Object::from_value(*self))
		} else {
			Err(Error::message("could not cast value to object"))
		}
	}

	pub fn is_string(&self) -> Result<bool> {
		Ok(self.value_type()? == napi_valuetype::napi_string)
	}

	pub fn as_string(&self) -> Result<String<'a>> {
		if self.is_string()? {
			Ok(String::from_value(*self))
		} else {
			Err(Error::message("could not cast value to string"))
		}
	}

	pub fn is_symbol(&self) -> Result<bool> {
		Ok(self.value_type()? == napi_valuetype::napi_symbol)
	}

	pub fn as_symbol(&self) -> Result<Symbol<'a>> {
		if self.is_symbol()? {
			Ok(Symbol::from_value(*self))
		} else {
			Err(Error::message("could not cast value to symbol"))
		}
	}

	pub fn is_typedarray(&self) -> Result<bool> {
		unsafe {
			let mut result = MaybeUninit::uninit();
			let status = napi_is_typedarray(self.env().raw(), self.raw(), result.as_mut_ptr());
			if status != napi_status::napi_ok {
				return Err(Error::from_last_node_api_error(self.env().raw(), status));
			}
			Ok(result.assume_init())
		}
	}

	pub fn as_typedarray(&self) -> Result<TypedArray<'a>> {
		if self.is_typedarray()? {
			Ok(TypedArray::from_value(*self))
		} else {
			Err(Error::message("could not cast value to typedarray"))
		}
	}

	pub fn is_undefined(&self) -> Result<bool> {
		Ok(self.value_type()? == napi_valuetype::napi_undefined)
	}

	pub fn as_undefined(&self) -> Result<Undefined<'a>> {
		if self.is_undefined()? {
			Ok(Undefined::from_value(*self))
		} else {
			Err(Error::message("could not cast value to undefined"))
		}
	}
}

impl<'a> From<Array<'a>> for Value<'a> {
	fn from(value: Array<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<ArrayBuffer<'a>> for Value<'a> {
	fn from(value: ArrayBuffer<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<BigInt<'a>> for Value<'a> {
	fn from(value: BigInt<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<Boolean<'a>> for Value<'a> {
	fn from(value: Boolean<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<Buffer<'a>> for Value<'a> {
	fn from(value: Buffer<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<DataView<'a>> for Value<'a> {
	fn from(value: DataView<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<Date<'a>> for Value<'a> {
	fn from(value: Date<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a, T> From<External<'a, T>> for Value<'a>
where
	T: 'a,
{
	fn from(value: External<'a, T>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<Function<'a>> for Value<'a> {
	fn from(value: Function<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<Null<'a>> for Value<'a> {
	fn from(value: Null<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<Number<'a>> for Value<'a> {
	fn from(value: Number<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<Object<'a>> for Value<'a> {
	fn from(value: Object<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<String<'a>> for Value<'a> {
	fn from(value: String<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<Symbol<'a>> for Value<'a> {
	fn from(value: Symbol<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<TypedArray<'a>> for Value<'a> {
	fn from(value: TypedArray<'a>) -> Value<'a> {
		value.value()
	}
}

impl<'a> From<Undefined<'a>> for Value<'a> {
	fn from(value: Undefined<'a>) -> Value<'a> {
		value.value()
	}
}