Wasmtime
component/types/val.hh
Go to the documentation of this file.
1
5#ifndef WASMTIME_COMPONENT_TYPES_VAL_HH
6#define WASMTIME_COMPONENT_TYPES_VAL_HH
7
8#include <wasmtime/conf.h>
9
10#ifdef WASMTIME_FEATURE_COMPONENT_MODEL
11
12#include <memory>
13#include <optional>
14#include <string_view>
16#include <wasmtime/helpers.hh>
17
18namespace wasmtime {
19namespace component {
20
21class ValType;
22
26class ListType {
27 WASMTIME_CLONE_EQUAL_WRAPPER(ListType, wasmtime_component_list_type);
28
30 ValType element() const;
31};
32
37 WASMTIME_CLONE_EQUAL_WRAPPER(RecordType, wasmtime_component_record_type);
38
40 size_t field_count() const {
42 }
43
45 std::optional<std::pair<std::string_view, ValType>>
46 field_nth(size_t nth) const;
47};
48
52class TupleType {
53 WASMTIME_CLONE_EQUAL_WRAPPER(TupleType, wasmtime_component_tuple_type);
54
56 size_t types_count() const {
58 }
59
61 std::optional<ValType> types_nth(size_t nth) const;
62};
63
68 WASMTIME_CLONE_EQUAL_WRAPPER(VariantType, wasmtime_component_variant_type);
69
71 size_t case_count() const {
73 }
74
76 std::optional<std::pair<std::string_view, std::optional<ValType>>>
77 case_nth(size_t nth) const;
78};
79
83class EnumType {
84 WASMTIME_CLONE_EQUAL_WRAPPER(EnumType, wasmtime_component_enum_type);
85
87 size_t names_count() const {
89 }
90
92 std::optional<std::string_view> names_nth(size_t nth) const {
93 const char *name_ptr = nullptr;
94 size_t name_len = 0;
95 if (wasmtime_component_enum_type_names_nth(ptr.get(), nth, &name_ptr,
96 &name_len)) {
97 return std::string_view(name_ptr, name_len);
98 }
99 return std::nullopt;
100 }
101};
102
107 WASMTIME_CLONE_EQUAL_WRAPPER(OptionType, wasmtime_component_option_type);
108
110 ValType ty() const;
111};
112
117 WASMTIME_CLONE_EQUAL_WRAPPER(ResultType, wasmtime_component_result_type);
118
120 std::optional<ValType> ok() const;
121
123 std::optional<ValType> err() const;
124};
125
130 WASMTIME_CLONE_EQUAL_WRAPPER(FlagsType, wasmtime_component_flags_type);
131
133 size_t names_count() const {
135 }
136
138 std::optional<std::string_view> names_nth(size_t nth) const {
139 const char *name_ptr = nullptr;
140 size_t name_len = 0;
141 if (wasmtime_component_flags_type_names_nth(ptr.get(), nth, &name_ptr,
142 &name_len)) {
143 return std::string_view(name_ptr, name_len);
144 }
145 return std::nullopt;
146 }
147};
148
152 WASMTIME_CLONE_EQUAL_WRAPPER(ResourceType, wasmtime_component_resource_type);
153
154public:
157 explicit ResourceType(uint32_t ty)
159};
160
165 WASMTIME_CLONE_EQUAL_WRAPPER(FutureType, wasmtime_component_future_type);
166
168 std::optional<ValType> ty() const;
169};
170
175 WASMTIME_CLONE_EQUAL_WRAPPER(StreamType, wasmtime_component_stream_type);
176
178 std::optional<ValType> ty() const;
179};
180
184class ValType {
186
189 ty.kind = kind;
190 return ValType(std::move(ty));
191 }
192
193public:
196 this->ty = ty;
198 }
199
201 ValType(const ValType &other) {
202 wasmtime_component_valtype_clone(&other.ty, &ty);
203 }
204
206 ValType &operator=(const ValType &other) {
208 wasmtime_component_valtype_clone(&other.ty, &ty);
209 return *this;
210 }
211
213 ValType(ValType &&other) : ty(other.ty) {
215 }
216
220 ty = other.ty;
222 return *this;
223 }
224
226
232 static_assert(sizeof(ValType) == sizeof(wasmtime_component_valtype_t));
233 return reinterpret_cast<const ValType *>(capi);
234 }
235
237 bool operator==(const ValType &other) const {
238 return wasmtime_component_valtype_equal(&ty, &other.ty);
239 }
240
242 bool operator!=(const ValType &other) const { return !(*this == other); }
243
245 static ValType new_bool() {
246 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_BOOL);
247 }
248
250 static ValType new_s8() {
251 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_S8);
252 }
253
255 static ValType new_s16() {
256 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_S16);
257 }
258
260 static ValType new_s32() {
261 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_S32);
262 }
263
265 static ValType new_s64() {
266 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_S64);
267 }
268
270 static ValType new_u8() {
271 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_U8);
272 }
273
275 static ValType new_u16() {
276 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_U16);
277 }
278
280 static ValType new_u32() {
281 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_U32);
282 }
283
285 static ValType new_u64() {
286 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_U64);
287 }
288
290 static ValType new_f32() {
291 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_F32);
292 }
293
295 static ValType new_f64() {
296 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_F64);
297 }
298
300 static ValType new_char() {
301 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_CHAR);
302 }
303
306 return ValType::new_kind(WASMTIME_COMPONENT_VALTYPE_STRING);
307 }
308
312 ty.of.list = list.capi_release();
313 }
314
318 ty.of.record = record.capi_release();
319 }
320
324 ty.of.tuple = tuple.capi_release();
325 }
326
330 ty.of.variant = variant.capi_release();
331 }
332
336 ty.of.enum_ = enum_.capi_release();
337 }
338
342 ty.of.option = option.capi_release();
343 }
344
348 ty.of.result = result.capi_release();
349 }
350
354 ty.of.flags = flags.capi_release();
355 }
356
361 ty.of.own = own.capi_release();
362 return ValType(std::move(ty));
363 }
364
369 ty.of.borrow = borrow.capi_release();
370 return ValType(std::move(ty));
371 }
372
376 ty.of.future = future.capi_release();
377 }
378
382 ty.of.stream = stream.capi_release();
383 }
384
387
389 bool is_bool() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_BOOL; }
390
392 bool is_s8() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_S8; }
393
395 bool is_s16() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_S16; }
396
398 bool is_s32() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_S32; }
399
401 bool is_s64() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_S64; }
402
404 bool is_u8() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_U8; }
405
407 bool is_u16() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_U16; }
408
410 bool is_u32() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_U32; }
411
413 bool is_u64() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_U64; }
414
416 bool is_f32() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_F32; }
417
419 bool is_f64() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_F64; }
420
422 bool is_char() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_CHAR; }
423
425 bool is_string() const {
427 }
428
430 bool is_list() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_LIST; }
431
433 bool is_record() const {
435 }
436
438 bool is_tuple() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_TUPLE; }
439
441 bool is_variant() const {
443 }
444
446 bool is_enum() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_ENUM; }
447
449 bool is_option() const {
451 }
452
454 bool is_result() const {
456 }
457
459 bool is_flags() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_FLAGS; }
460
462 bool is_own() const { return ty.kind == WASMTIME_COMPONENT_VALTYPE_OWN; }
463
465 bool is_borrow() const {
467 }
468
470 bool is_future() const {
472 }
473
475 bool is_stream() const {
477 }
478
480 bool is_error_context() const {
482 }
483
485 const ListType &list() const {
486 assert(is_list());
487 return *ListType::from_capi(&ty.of.list);
488 }
489
491 const RecordType &record() const {
492 assert(is_record());
493 return *RecordType::from_capi(&ty.of.record);
494 }
495
497 const TupleType &tuple() const {
498 assert(is_tuple());
499 return *TupleType::from_capi(&ty.of.tuple);
500 }
501
503 const VariantType &variant() const {
504 assert(is_variant());
505 return *VariantType::from_capi(&ty.of.variant);
506 }
507
509 const EnumType &enum_() const {
510 assert(is_enum());
511 return *EnumType::from_capi(&ty.of.enum_);
512 }
513
515 const OptionType &option() const {
516 assert(is_option());
517 return *OptionType::from_capi(&ty.of.option);
518 }
519
521 const ResultType &result() const {
522 assert(is_result());
523 return *ResultType::from_capi(&ty.of.result);
524 }
525
527 const FlagsType &flags() const {
528 assert(is_flags());
529 return *FlagsType::from_capi(&ty.of.flags);
530 }
531
533 const ResourceType &own() const {
534 assert(is_own());
535 return *ResourceType::from_capi(&ty.of.own);
536 }
537
539 const ResourceType &borrow() const {
540 assert(is_borrow());
541 return *ResourceType::from_capi(&ty.of.borrow);
542 }
543
545 const FutureType &future() const {
546 assert(is_future());
547 return *FutureType::from_capi(&ty.of.future);
548 }
549
551 const StreamType &stream() const {
552 assert(is_stream());
553 return *StreamType::from_capi(&ty.of.stream);
554 }
555
557 const wasmtime_component_valtype_t *capi() const { return &ty; }
560};
561
562inline ValType ListType::element() const {
564 wasmtime_component_list_type_element(ptr.get(), &type_ret);
565 return ValType(std::move(type_ret));
566}
567
568inline std::optional<std::pair<std::string_view, ValType>>
569RecordType::field_nth(size_t nth) const {
570 const char *name_ptr = nullptr;
571 size_t name_len = 0;
573 if (wasmtime_component_record_type_field_nth(ptr.get(), nth, &name_ptr,
574 &name_len, &type_ret)) {
575 return std::make_pair(std::string_view(name_ptr, name_len),
576 ValType(std::move(type_ret)));
577 }
578 return std::nullopt;
579}
580
581inline std::optional<ValType> TupleType::types_nth(size_t nth) const {
583 if (wasmtime_component_tuple_type_types_nth(ptr.get(), nth, &type_ret)) {
584 return ValType(std::move(type_ret));
585 }
586 return std::nullopt;
587}
588
589inline std::optional<std::pair<std::string_view, std::optional<ValType>>>
590VariantType::case_nth(size_t nth) const {
591 const char *name_ptr = nullptr;
592 size_t name_len = 0;
593 bool has_payload = false;
596 ptr.get(), nth, &name_ptr, &name_len, &has_payload, &payload_ret)) {
597 return std::nullopt;
598 }
599 return std::make_pair(
600 std::string_view(name_ptr, name_len),
601 has_payload ? std::optional<ValType>(ValType(std::move(payload_ret)))
602 : std::nullopt);
603}
604
605inline ValType OptionType::ty() const {
607 wasmtime_component_option_type_ty(ptr.get(), &type_ret);
608 return ValType(std::move(type_ret));
609}
610
611inline std::optional<ValType> ResultType::ok() const {
613 if (wasmtime_component_result_type_ok(ptr.get(), &type_ret)) {
614 return ValType(std::move(type_ret));
615 }
616 return std::nullopt;
617}
618
619inline std::optional<ValType> ResultType::err() const {
621 if (wasmtime_component_result_type_err(ptr.get(), &type_ret)) {
622 return ValType(std::move(type_ret));
623 }
624 return std::nullopt;
625}
626
627inline std::optional<ValType> FutureType::ty() const {
629 if (wasmtime_component_future_type_ty(ptr.get(), &type_ret)) {
630 return ValType(std::move(type_ret));
631 }
632 return std::nullopt;
633}
634
635inline std::optional<ValType> StreamType::ty() const {
637 if (wasmtime_component_stream_type_ty(ptr.get(), &type_ret)) {
638 return ValType(std::move(type_ret));
639 }
640 return std::nullopt;
641}
642
643} // namespace component
644} // namespace wasmtime
645
646#endif // WASMTIME_FEATURE_COMPONENT_MODEL
647
648#endif // WASMTIME_COMPONENT_TYPES_VAL_HH
Type information about a WebAssembly value.
Definition: types/val.hh:66
Represents a component enum type.
Definition: component/types/val.hh:83
Represents a component flags type.
Definition: component/types/val.hh:129
Represents a component future type.
Definition: component/types/val.hh:164
Represents a component list type.
Definition: component/types/val.hh:26
Represents a component option type.
Definition: component/types/val.hh:106
Represents a component record type.
Definition: component/types/val.hh:36
Definition: component/types/val.hh:151
ResourceType(uint32_t ty)
Creates a new host resource type with the specified ty identifier.
Definition: component/types/val.hh:157
Represents a component result type.
Definition: component/types/val.hh:116
Represents a component stream type.
Definition: component/types/val.hh:174
Represents a component tuple type.
Definition: component/types/val.hh:52
Represents a component value type.
Definition: component/types/val.hh:184
bool is_enum() const
Returns true if this is an enum type.
Definition: component/types/val.hh:446
bool is_u32() const
Returns true if this is a u32 type.
Definition: component/types/val.hh:410
bool is_char() const
Returns true if this is a char type.
Definition: component/types/val.hh:422
ValType & operator=(const ValType &other)
Copies another type into this one.
Definition: component/types/val.hh:206
const FlagsType & flags() const
Returns the flags type, asserting that this is indeed a flags.
Definition: component/types/val.hh:527
const EnumType & enum_() const
Returns the enum type, asserting that this is indeed a enum.
Definition: component/types/val.hh:509
const ResourceType & borrow() const
Returns the borrow type, asserting that this is indeed a borrow.
Definition: component/types/val.hh:539
bool is_tuple() const
Returns true if this is a tuple type.
Definition: component/types/val.hh:438
bool is_variant() const
Returns true if this is a variant type.
Definition: component/types/val.hh:441
wasmtime_component_valtype_t * capi()
Returns the underlying C API pointer.
Definition: component/types/val.hh:559
static ValType new_s8()
Creates an s8 value type.
Definition: component/types/val.hh:250
static ValType new_s16()
Creates an s16 value type.
Definition: component/types/val.hh:255
ValType(ListType list)
Creates a list value type.
Definition: component/types/val.hh:310
const FutureType & future() const
Returns the future type, asserting that this is indeed a future.
Definition: component/types/val.hh:545
bool is_borrow() const
Returns true if this is a borrow type.
Definition: component/types/val.hh:465
wasmtime_component_valtype_kind_t kind() const
Returns the kind of this value type.
Definition: component/types/val.hh:386
static ValType new_bool()
Creates a bool value type.
Definition: component/types/val.hh:245
const wasmtime_component_valtype_t * capi() const
Returns the underlying C API pointer.
Definition: component/types/val.hh:557
ValType(ValType &&other)
Moves another type into this one.
Definition: component/types/val.hh:213
static ValType new_string()
Creates a string value type.
Definition: component/types/val.hh:305
const StreamType & stream() const
Returns the stream type, asserting that this is indeed a stream.
Definition: component/types/val.hh:551
bool is_own() const
Returns true if this is an own type.
Definition: component/types/val.hh:462
bool is_error_context() const
Returns true if this is an error context type.
Definition: component/types/val.hh:480
bool is_string() const
Returns true if this is a string type.
Definition: component/types/val.hh:425
bool is_list() const
Returns true if this is a list type.
Definition: component/types/val.hh:430
static ValType new_f32()
Creates an f32 value type.
Definition: component/types/val.hh:290
ValType(const ValType &other)
Copies another type into this one.
Definition: component/types/val.hh:201
const RecordType & record() const
Returns the record type, asserting that this is indeed a record.
Definition: component/types/val.hh:491
bool is_future() const
Returns true if this is a future type.
Definition: component/types/val.hh:470
ValType(EnumType enum_)
Creates an enum value type.
Definition: component/types/val.hh:334
ValType(ResultType result)
Creates a result value type.
Definition: component/types/val.hh:346
ValType(OptionType option)
Creates an option value type.
Definition: component/types/val.hh:340
static ValType new_u16()
Creates a u16 value type.
Definition: component/types/val.hh:275
static ValType new_u64()
Creates a u64 value type.
Definition: component/types/val.hh:285
ValType(FlagsType flags)
Creates a flags value type.
Definition: component/types/val.hh:352
bool is_f32() const
Returns true if this is an f32 type.
Definition: component/types/val.hh:416
bool is_s16() const
Returns true if this is an s16 type.
Definition: component/types/val.hh:395
static ValType new_char()
Creates a char value type.
Definition: component/types/val.hh:300
static ValType new_u8()
Creates a u8 value type.
Definition: component/types/val.hh:270
const ListType & list() const
Returns the list type, asserting that this is indeed a list.
Definition: component/types/val.hh:485
ValType(FutureType future)
Creates a future value type.
Definition: component/types/val.hh:374
ValType(VariantType variant)
Creates a variant value type.
Definition: component/types/val.hh:328
bool is_u8() const
Returns true if this is a u8 type.
Definition: component/types/val.hh:404
const TupleType & tuple() const
Returns the tuple type, asserting that this is indeed a tuple.
Definition: component/types/val.hh:497
ValType(wasmtime_component_valtype_t &&ty)
Creates a component value type from the raw C API representation.
Definition: component/types/val.hh:195
bool is_flags() const
Returns true if this is a flags type.
Definition: component/types/val.hh:459
static ValType new_borrow(ResourceType borrow)
Creates an borrow value type.
Definition: component/types/val.hh:366
bool operator!=(const ValType &other) const
Compares two types to see if they're different.
Definition: component/types/val.hh:242
bool is_s64() const
Returns true if this is an s64 type.
Definition: component/types/val.hh:401
ValType(RecordType record)
Creates a record value type.
Definition: component/types/val.hh:316
bool is_u64() const
Returns true if this is a u64 type.
Definition: component/types/val.hh:413
static ValType new_f64()
Creates an f64 value type.
Definition: component/types/val.hh:295
static ValType new_s64()
Creates an s64 value type.
Definition: component/types/val.hh:265
ValType & operator=(ValType &&other)
Moves another type into this one.
Definition: component/types/val.hh:218
static ValType new_s32()
Creates an s32 value type.
Definition: component/types/val.hh:260
static ValType new_u32()
Creates a u32 value type.
Definition: component/types/val.hh:280
const VariantType & variant() const
Returns the variant type, asserting that this is indeed a variant.
Definition: component/types/val.hh:503
bool is_s8() const
Returns true if this is an s8 type.
Definition: component/types/val.hh:392
ValType(StreamType stream)
Creates a stream value type.
Definition: component/types/val.hh:380
bool is_s32() const
Returns true if this is an s32 type.
Definition: component/types/val.hh:398
bool is_f64() const
Returns true if this is an f64 type.
Definition: component/types/val.hh:419
static ValType new_own(ResourceType own)
Creates an own value type.
Definition: component/types/val.hh:358
bool operator==(const ValType &other) const
Compares two types to see if they're the same.
Definition: component/types/val.hh:237
bool is_result() const
Returns true if this is a result type.
Definition: component/types/val.hh:454
bool is_record() const
Returns true if this is a record type.
Definition: component/types/val.hh:433
const ResultType & result() const
Returns the result type, asserting that this is indeed a result.
Definition: component/types/val.hh:521
ValType(TupleType tuple)
Creates a tuple value type.
Definition: component/types/val.hh:322
const OptionType & option() const
Returns the option type, asserting that this is indeed a option.
Definition: component/types/val.hh:515
bool is_bool() const
Returns true if this is a bool type.
Definition: component/types/val.hh:389
bool is_u16() const
Returns true if this is a u16 type.
Definition: component/types/val.hh:407
bool is_option() const
Returns true if this is an option type.
Definition: component/types/val.hh:449
bool is_stream() const
Returns true if this is a stream type.
Definition: component/types/val.hh:475
static const ValType * from_capi(const wasmtime_component_valtype_t *capi)
Definition: component/types/val.hh:231
Represents a component variant type.
Definition: component/types/val.hh:67
WASM_API_EXTERN bool wasmtime_component_result_type_err(const wasmtime_component_result_type_t *ty, struct wasmtime_component_valtype_t *type_ret)
Returns the err type of a component result type. The returned type must be deallocated with wasmtime_...
WASM_API_EXTERN void wasmtime_component_option_type_ty(const wasmtime_component_option_type_t *ty, struct wasmtime_component_valtype_t *type_ret)
Returns the inner type of a component option type.
#define WASMTIME_COMPONENT_VALTYPE_S16
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a s16 WIT typ...
Definition: component/types/val.h:348
#define WASMTIME_COMPONENT_VALTYPE_U64
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a u64 WIT typ...
Definition: component/types/val.h:366
WASM_API_EXTERN size_t wasmtime_component_tuple_type_types_count(const wasmtime_component_tuple_type_t *ty)
Returns the number of types in a component tuple type.
WASM_API_EXTERN size_t wasmtime_component_enum_type_names_count(const wasmtime_component_enum_type_t *ty)
Returns the number of names in a component enum type.
WASM_API_EXTERN bool wasmtime_component_tuple_type_types_nth(const wasmtime_component_tuple_type_t *ty, size_t nth, struct wasmtime_component_valtype_t *type_ret)
Returns the nth type in a component tuple type.
#define WASMTIME_COMPONENT_VALTYPE_OWN
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a resource ow...
Definition: component/types/val.h:405
WASM_API_EXTERN size_t wasmtime_component_flags_type_names_count(const wasmtime_component_flags_type_t *ty)
Returns the number of names in a component flags type.
WASM_API_EXTERN size_t wasmtime_component_variant_type_case_count(const wasmtime_component_variant_type_t *ty)
Returns the number of cases in a component variant type.
WASM_API_EXTERN bool wasmtime_component_stream_type_ty(const wasmtime_component_stream_type_t *ty, struct wasmtime_component_valtype_t *type_ret)
Returns the inner type of a component stream type.
WASM_API_EXTERN void wasmtime_component_valtype_clone(const wasmtime_component_valtype_t *ty, wasmtime_component_valtype_t *out)
Clones a component value type.
WASM_API_EXTERN bool wasmtime_component_record_type_field_nth(const wasmtime_component_record_type_t *ty, size_t nth, const char **name_ret, size_t *name_len_ret, struct wasmtime_component_valtype_t *type_ret)
Returns the nth field in a component record type.
#define WASMTIME_COMPONENT_VALTYPE_STREAM
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a stream WIT ...
Definition: component/types/val.h:414
#define WASMTIME_COMPONENT_VALTYPE_S64
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a s64 WIT typ...
Definition: component/types/val.h:354
#define WASMTIME_COMPONENT_VALTYPE_F64
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a f64 WIT typ...
Definition: component/types/val.h:372
WASM_API_EXTERN bool wasmtime_component_result_type_ok(const wasmtime_component_result_type_t *ty, struct wasmtime_component_valtype_t *type_ret)
Returns the ok type of a component result type. The returned type must be deallocated with wasmtime_c...
#define WASMTIME_COMPONENT_VALTYPE_S8
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a s8 WIT type...
Definition: component/types/val.h:345
#define WASMTIME_COMPONENT_VALTYPE_BORROW
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a resource bo...
Definition: component/types/val.h:408
WASM_API_EXTERN bool wasmtime_component_variant_type_case_nth(const wasmtime_component_variant_type_t *ty, size_t nth, const char **name_ret, size_t *name_len_ret, bool *has_payload_ret, struct wasmtime_component_valtype_t *payload_ret)
Returns the nth case in a component variant type. The returned payload type must be deallocated with ...
#define WASMTIME_COMPONENT_VALTYPE_STRING
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a string WIT ...
Definition: component/types/val.h:378
WASM_API_EXTERN void wasmtime_component_valtype_delete(wasmtime_component_valtype_t *ptr)
Deallocates a component value type.
#define WASMTIME_COMPONENT_VALTYPE_FUTURE
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a future WIT ...
Definition: component/types/val.h:411
WASM_API_EXTERN bool wasmtime_component_future_type_ty(const wasmtime_component_future_type_t *ty, struct wasmtime_component_valtype_t *type_ret)
Returns the inner type of a component future type.
WASM_API_EXTERN bool wasmtime_component_flags_type_names_nth(const wasmtime_component_flags_type_t *ty, size_t nth, const char **name_ret, size_t *name_len_ret)
Returns the nth name in a component flags type.
WASM_API_EXTERN bool wasmtime_component_enum_type_names_nth(const wasmtime_component_enum_type_t *ty, size_t nth, const char **name_ret, size_t *name_len_ret)
Returns the nth name in a component enum type.
#define WASMTIME_COMPONENT_VALTYPE_VARIANT
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a variant WIT...
Definition: component/types/val.h:390
#define WASMTIME_COMPONENT_VALTYPE_RECORD
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a record WIT ...
Definition: component/types/val.h:384
WASM_API_EXTERN size_t wasmtime_component_record_type_field_count(const wasmtime_component_record_type_t *ty)
Returns the number of fields in a component record type.
#define WASMTIME_COMPONENT_VALTYPE_BOOL
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a bool WIT ty...
Definition: component/types/val.h:342
uint8_t wasmtime_component_valtype_kind_t
Discriminant used in wasmtime_component_valtype_t::kind.
Definition: component/types/val.h:420
WASM_API_EXTERN bool wasmtime_component_valtype_equal(const wasmtime_component_valtype_t *a, const wasmtime_component_valtype_t *b)
Compares two component value types for equality.
#define WASMTIME_COMPONENT_VALTYPE_RESULT
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a result WIT ...
Definition: component/types/val.h:399
#define WASMTIME_COMPONENT_VALTYPE_ERROR_CONTEXT
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is an error cont...
Definition: component/types/val.h:417
WASM_API_EXTERN void wasmtime_component_list_type_element(const wasmtime_component_list_type_t *ty, struct wasmtime_component_valtype_t *type_ret)
Returns the element type of a component list type.
#define WASMTIME_COMPONENT_VALTYPE_U32
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a u32 WIT typ...
Definition: component/types/val.h:363
#define WASMTIME_COMPONENT_VALTYPE_OPTION
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a option WIT ...
Definition: component/types/val.h:396
#define WASMTIME_COMPONENT_VALTYPE_ENUM
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a enum WIT ty...
Definition: component/types/val.h:393
#define WASMTIME_COMPONENT_VALTYPE_CHAR
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a char WIT ty...
Definition: component/types/val.h:375
#define WASMTIME_COMPONENT_VALTYPE_TUPLE
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a tuple WIT t...
Definition: component/types/val.h:387
#define WASMTIME_COMPONENT_VALTYPE_U8
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a u8 WIT type...
Definition: component/types/val.h:357
#define WASMTIME_COMPONENT_VALTYPE_F32
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a f32 WIT typ...
Definition: component/types/val.h:369
#define WASMTIME_COMPONENT_VALTYPE_LIST
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a list WIT ty...
Definition: component/types/val.h:381
#define WASMTIME_COMPONENT_VALTYPE_FLAGS
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a flags WIT t...
Definition: component/types/val.h:402
#define WASMTIME_COMPONENT_VALTYPE_S32
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a s32 WIT typ...
Definition: component/types/val.h:351
#define WASMTIME_COMPONENT_VALTYPE_U16
Value of wasmtime_component_valtype_kind_t meaning that wasmtime_component_valtype_t is a u16 WIT typ...
Definition: component/types/val.h:360
Build-time defines for how the C API was built.
WASM_API_EXTERN wasmtime_component_resource_type_t * wasmtime_component_resource_type_new_host(uint32_t ty)
Creates a new resource type representing a host-defined resource.
Represents a single value type in the component model.
Definition: component/types/val.h:463
wasmtime_component_valtype_union_t of
The actual type.
Definition: component/types/val.h:467
wasmtime_component_valtype_kind_t kind
The type discriminant for the of union.
Definition: component/types/val.h:465
wasmtime_component_flags_type_t * flags
Definition: component/types/val.h:447
wasmtime_component_option_type_t * option
Definition: component/types/val.h:441
wasmtime_component_record_type_t * record
Definition: component/types/val.h:429
wasmtime_component_resource_type_t * borrow
Definition: component/types/val.h:453
wasmtime_component_list_type_t * list
Definition: component/types/val.h:426
wasmtime_component_tuple_type_t * tuple
Definition: component/types/val.h:432
wasmtime_component_future_type_t * future
Definition: component/types/val.h:456
wasmtime_component_result_type_t * result
Definition: component/types/val.h:444
wasmtime_component_enum_type_t * enum_
Definition: component/types/val.h:438
wasmtime_component_stream_type_t * stream
Definition: component/types/val.h:459
wasmtime_component_variant_type_t * variant
Definition: component/types/val.h:435