rune/module/module.rs
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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
use core::marker::PhantomData;
use ::rust_alloc::sync::Arc;
use crate as rune;
use crate::alloc::prelude::*;
use crate::alloc::{self, HashMap, HashSet};
use crate::compile::context::{AttributeMacroHandler, MacroHandler};
use crate::compile::{self, meta, ContextError, Docs, Named};
use crate::function::{Async, Function, FunctionKind, InstanceFunction, Plain};
use crate::function_meta::{
Associated, AssociatedFunctionData, AssociatedName, FunctionArgs, FunctionBuilder,
FunctionData, FunctionMeta, FunctionMetaKind, MacroMeta, MacroMetaKind, ToFieldFunction,
ToInstance,
};
use crate::item::IntoComponent;
use crate::macros::{MacroContext, TokenStream};
use crate::module::DocFunction;
use crate::runtime::{
AnyTypeInfo, ConstConstruct, InstAddress, MaybeTypeOf, Memory, Output, Protocol, ToConstValue,
TypeHash, TypeOf, VmResult,
};
use crate::{Hash, Item, ItemBuf};
use super::{
AssociatedKey, EnumMut, InstallWith, ItemFnMut, ItemMut, ModuleAssociated,
ModuleAssociatedKind, ModuleAttributeMacro, ModuleConstantBuilder, ModuleFunction,
ModuleFunctionBuilder, ModuleItem, ModuleItemCommon, ModuleItemKind, ModuleMacro, ModuleMeta,
ModuleRawFunctionBuilder, ModuleReexport, ModuleTrait, ModuleTraitImpl, ModuleType, TraitMut,
TypeMut, TypeSpecification, VariantMut,
};
#[derive(Debug, TryClone, PartialEq, Eq, Hash)]
enum Name {
/// An associated key.
Associated(AssociatedKey),
/// A regular item.
Item(Hash),
/// A macro.
Macro(Hash),
/// An attribute macro.
AttributeMacro(Hash),
/// A conflicting trait implementation.
TraitImpl(Hash, Hash),
}
/// A [Module] that is a collection of native functions and types.
///
/// Needs to be installed into a [Context][crate::compile::Context] using
/// [Context::install][crate::compile::Context::install].
#[derive(Default)]
pub struct Module {
/// Uniqueness checks.
names: HashSet<Name>,
/// A special identifier for this module, which will cause it to not conflict if installed multiple times.
pub(crate) unique: Option<&'static str>,
/// The name of the module.
pub(crate) item: ItemBuf,
/// Functions.
pub(crate) items: Vec<ModuleItem>,
/// Associated items.
pub(crate) associated: Vec<ModuleAssociated>,
/// Registered types.
pub(crate) types: Vec<ModuleType>,
/// Type hash to types mapping.
pub(crate) types_hash: HashMap<Hash, usize>,
/// A trait registered in the current module.
pub(crate) traits: Vec<ModuleTrait>,
/// A trait implementation registered in the current module.
pub(crate) trait_impls: Vec<ModuleTraitImpl>,
/// A re-export in the current module.
pub(crate) reexports: Vec<ModuleReexport>,
/// Constant constructors.
pub(crate) construct: Vec<(Hash, AnyTypeInfo, Arc<dyn ConstConstruct>)>,
/// Defines construct hashes.
pub(crate) construct_hash: HashSet<Hash>,
/// Module level metadata.
pub(crate) common: ModuleItemCommon,
}
impl Module {
/// Create an empty module for the root path.
pub fn new() -> Self {
Self::default()
}
/// Modify the current module to utilise a special identifier.
///
/// TODO: Deprecate after next major release.
#[doc(hidden)]
pub fn with_unique(self, id: &'static str) -> Self {
Self {
unique: Some(id),
..self
}
}
/// Construct a new module for the given item.
pub fn with_item(iter: impl IntoIterator<Item: IntoComponent>) -> Result<Self, ContextError> {
Ok(Self::inner_new(ItemBuf::with_item(iter)?))
}
/// Construct a new module for the given crate.
pub fn with_crate(name: &str) -> Result<Self, ContextError> {
Ok(Self::inner_new(ItemBuf::with_crate(name)?))
}
/// Construct a new module for the given crate.
pub fn with_crate_item(
name: &str,
iter: impl IntoIterator<Item: IntoComponent>,
) -> Result<Self, ContextError> {
Ok(Self::inner_new(ItemBuf::with_crate_item(name, iter)?))
}
/// Construct a new module from the given module meta.
pub fn from_meta(module_meta: ModuleMeta) -> Result<Self, ContextError> {
let meta = module_meta()?;
let mut m = Self::inner_new(meta.item);
m.item_mut().static_docs(meta.docs)?;
Ok(m)
}
fn inner_new(item: ItemBuf) -> Self {
Self {
names: HashSet::new(),
unique: None,
item,
items: Vec::new(),
associated: Vec::new(),
types: Vec::new(),
traits: Vec::new(),
trait_impls: Vec::new(),
types_hash: HashMap::new(),
reexports: Vec::new(),
construct: Vec::new(),
construct_hash: HashSet::new(),
common: ModuleItemCommon {
docs: Docs::EMPTY,
deprecated: None,
},
}
}
/// Mutate item-level properties for this module.
pub fn item_mut(&mut self) -> ItemMut<'_> {
ItemMut {
docs: &mut self.common.docs,
#[cfg(feature = "doc")]
deprecated: &mut self.common.deprecated,
}
}
/// Register a type. Registering a type is mandatory in order to register
/// instance functions using that type.
///
/// This will allow the type to be used within scripts, using the item named
/// here.
///
/// # Examples
///
/// ```
/// use rune::{Any, Context, Module};
///
/// #[derive(Any)]
/// struct MyBytes {
/// queue: Vec<String>,
/// }
///
/// impl MyBytes {
/// #[rune::function]
/// fn len(&self) -> usize {
/// self.queue.len()
/// }
/// }
///
/// // Register `len` without registering a type.
/// let mut m = Module::default();
/// // Note: cannot do this until we have registered a type.
/// m.function_meta(MyBytes::len)?;
///
/// let mut context = rune::Context::new();
/// assert!(context.install(m).is_err());
///
/// // Register `len` properly.
/// let mut m = Module::default();
///
/// m.ty::<MyBytes>()?;
/// m.function_meta(MyBytes::len)?;
///
/// let mut context = Context::new();
/// assert!(context.install(m).is_ok());
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn ty<T>(&mut self) -> Result<TypeMut<'_, T>, ContextError>
where
T: ?Sized + TypeOf + Named + InstallWith,
{
if !self.names.try_insert(Name::Item(T::HASH))? {
return Err(ContextError::ConflictingType {
item: T::ITEM.try_to_owned()?,
type_info: T::type_info(),
hash: T::HASH,
});
}
let index = self.types.len();
self.types_hash.try_insert(T::HASH, index)?;
self.types.try_push(ModuleType {
item: T::ITEM.try_to_owned()?,
hash: T::HASH,
common: ModuleItemCommon {
docs: Docs::EMPTY,
deprecated: None,
},
type_parameters: T::PARAMETERS,
type_info: T::type_info(),
spec: None,
constructor: None,
})?;
T::install_with(self)?;
let ty = self.types.last_mut().unwrap();
Ok(TypeMut {
docs: &mut ty.common.docs,
#[cfg(feature = "doc")]
deprecated: &mut ty.common.deprecated,
spec: &mut ty.spec,
constructor: &mut ty.constructor,
item: &ty.item,
_marker: PhantomData,
})
}
/// Accessor to modify type metadata such as documentaiton, fields, variants.
pub fn type_meta<T>(&mut self) -> Result<TypeMut<'_, T>, ContextError>
where
T: ?Sized + TypeOf + Named,
{
let type_hash = T::HASH;
let Some(ty) = self.types_hash.get(&type_hash).map(|&i| &mut self.types[i]) else {
let full_name = T::display().try_to_string()?;
return Err(ContextError::MissingType {
item: ItemBuf::with_item(&[full_name])?,
type_info: T::type_info(),
});
};
Ok(TypeMut {
docs: &mut ty.common.docs,
#[cfg(feature = "doc")]
deprecated: &mut ty.common.deprecated,
spec: &mut ty.spec,
constructor: &mut ty.constructor,
item: &ty.item,
_marker: PhantomData,
})
}
/// Register that the given type is a struct, and that it has the given
/// compile-time metadata. This implies that each field has a
/// [Protocol::GET] field function.
///
/// This is typically not used directly, but is used automatically with the
/// [Any][crate::Any] derive.
#[deprecated = "Use type_meta::<T>().make_struct(fields) instead"]
pub fn struct_meta<T>(&mut self, fields: &'static [&'static str]) -> Result<(), ContextError>
where
T: ?Sized + TypeOf + Named,
{
self.type_meta::<T>()?.make_named_struct(fields)?;
Ok(())
}
/// Register enum metadata for the given type `T`. This allows an enum to be
/// used in limited ways in Rune.
#[deprecated = "Use type_meta::<T>().make_enum(variants) instead"]
#[doc(hidden)]
pub fn enum_meta<T>(
&mut self,
variants: &'static [&'static str],
) -> Result<EnumMut<'_, T>, ContextError>
where
T: ?Sized + TypeOf + Named,
{
self.type_meta::<T>()?.make_enum(variants)
}
/// Access variant metadata for the given type and the index of its variant.
pub fn variant_meta<T>(&mut self, index: usize) -> Result<VariantMut<'_, T>, ContextError>
where
T: ?Sized + TypeOf + Named,
{
let type_hash = T::HASH;
let Some(ty) = self.types_hash.get(&type_hash).map(|&i| &mut self.types[i]) else {
let full_name = T::display().try_to_string()?;
return Err(ContextError::MissingType {
item: ItemBuf::with_item(&[full_name])?,
type_info: T::type_info(),
});
};
let Some(TypeSpecification::Enum(en)) = &mut ty.spec else {
let full_name = T::display().try_to_string()?;
return Err(ContextError::MissingEnum {
item: ItemBuf::with_item(&[full_name])?,
type_info: T::type_info(),
});
};
let Some(variant) = en.variants.get_mut(index) else {
return Err(ContextError::MissingVariant {
type_info: T::type_info(),
index,
});
};
Ok(VariantMut {
index,
docs: &mut variant.docs,
fields: &mut variant.fields,
constructor: &mut variant.constructor,
_marker: PhantomData,
})
}
/// Register a variant constructor for type `T`.
#[deprecated = "Use variant_meta() instead"]
pub fn variant_constructor<F, A>(
&mut self,
index: usize,
constructor: F,
) -> Result<(), ContextError>
where
F: Function<A, Plain>,
F::Return: TypeOf + Named,
{
self.variant_meta::<F::Return>(index)?
.constructor(constructor)?;
Ok(())
}
/// Register a constant value, at a crate, module or associated level.
///
/// # Examples
///
/// ```
/// use rune::{docstring, Any, Module};
///
/// let mut module = Module::default();
///
/// #[derive(Any)]
/// struct MyType;
///
/// module.constant("TEN", 10)
/// .build()?
/// .docs(docstring! {
/// /// A global ten value.
/// });
///
/// module.constant("TEN", 10)
/// .build_associated::<MyType>()?
/// .docs(docstring! {
/// /// Ten which looks like an associated constant.
/// });
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn constant<N, V>(&mut self, name: N, value: V) -> ModuleConstantBuilder<'_, N, V>
where
V: TypeHash + TypeOf + ToConstValue,
{
ModuleConstantBuilder {
module: self,
name,
value,
}
}
pub(super) fn insert_constant<N, V>(
&mut self,
name: N,
value: V,
) -> Result<ItemMut<'_>, ContextError>
where
N: IntoComponent,
V: TypeHash + TypeOf + ToConstValue,
{
let item = self.item.join([name])?;
let hash = Hash::type_hash(&item);
let value = match value.to_const_value() {
Ok(value) => value,
Err(error) => {
return Err(ContextError::InvalidConstValue {
item,
error: Box::try_new(error)?,
})
}
};
if !self.names.try_insert(Name::Item(hash))? {
return Err(ContextError::ConflictingConstantName { item, hash });
}
self.items.try_push(ModuleItem {
item,
hash,
common: ModuleItemCommon {
docs: Docs::EMPTY,
deprecated: None,
},
kind: ModuleItemKind::Constant(value),
})?;
self.insert_const_construct::<V>()?;
let c = self.items.last_mut().unwrap();
Ok(ItemMut {
docs: &mut c.common.docs,
#[cfg(feature = "doc")]
deprecated: &mut c.common.deprecated,
})
}
pub(super) fn insert_associated_constant<V>(
&mut self,
associated: Associated,
value: V,
) -> Result<ItemMut<'_>, ContextError>
where
V: TypeHash + TypeOf + ToConstValue,
{
let value = match value.to_const_value() {
Ok(value) => value,
Err(error) => {
return Err(ContextError::InvalidAssociatedConstValue {
container: associated.container_type_info,
kind: Box::try_new(associated.name.kind)?,
error: Box::try_new(error)?,
});
}
};
self.insert_associated_name(&associated)?;
self.associated.try_push(ModuleAssociated {
container: associated.container,
container_type_info: associated.container_type_info,
name: associated.name,
common: ModuleItemCommon {
docs: Docs::EMPTY,
deprecated: None,
},
kind: ModuleAssociatedKind::Constant(value),
})?;
self.insert_const_construct::<V>()?;
let last = self.associated.last_mut().unwrap();
Ok(ItemMut {
docs: &mut last.common.docs,
#[cfg(feature = "doc")]
deprecated: &mut last.common.deprecated,
})
}
fn insert_const_construct<V>(&mut self) -> alloc::Result<()>
where
V: TypeHash + TypeOf + ToConstValue,
{
if self.construct_hash.try_insert(V::HASH)? {
if let Some(construct) = V::construct() {
self.construct
.try_push((V::HASH, V::STATIC_TYPE_INFO, construct))?;
}
}
Ok(())
}
/// Register a native macro handler through its meta.
///
/// The metadata must be provided by annotating the function with
/// [`#[rune::macro_]`][crate::macro_].
///
/// This has the benefit that it captures documentation comments which can
/// be used when generating documentation or referencing the function
/// through code sense systems.
///
/// # Examples
///
/// ```
/// use rune::Module;
/// use rune::ast;
/// use rune::compile;
/// use rune::macros::{quote, MacroContext, TokenStream};
/// use rune::parse::Parser;
/// use rune::alloc::prelude::*;
///
/// /// Takes an identifier and converts it into a string.
/// ///
/// /// # Examples
/// ///
/// /// ```rune
/// /// assert_eq!(ident_to_string!(Hello), "Hello");
/// /// ```
/// #[rune::macro_]
/// fn ident_to_string(cx: &mut MacroContext<'_, '_, '_>, stream: &TokenStream) -> compile::Result<TokenStream> {
/// let mut p = Parser::from_token_stream(stream, cx.input_span());
/// let ident = p.parse_all::<ast::Ident>()?;
/// let ident = cx.resolve(ident)?.try_to_owned()?;
/// let string = cx.lit(&ident)?;
/// Ok(quote!(#string).into_token_stream(cx)?)
/// }
///
/// let mut m = Module::new();
/// m.macro_meta(ident_to_string)?;
///
/// Ok::<_, rune::support::Error>(())
/// ```
#[inline]
pub fn macro_meta(&mut self, meta: MacroMeta) -> Result<ItemMut<'_>, ContextError> {
let meta = meta()?;
let item = match meta.kind {
MacroMetaKind::Function(data) => {
let item = self.item.join(&data.item)?;
let hash = Hash::type_hash(&item);
if !self.names.try_insert(Name::Macro(hash))? {
return Err(ContextError::ConflictingMacroName { item, hash });
}
let mut docs = Docs::EMPTY;
docs.set_docs(meta.docs)?;
self.items.try_push(ModuleItem {
item,
hash,
common: ModuleItemCommon {
docs,
deprecated: None,
},
kind: ModuleItemKind::Macro(ModuleMacro {
handler: data.handler,
}),
})?;
self.items.last_mut().unwrap()
}
MacroMetaKind::Attribute(data) => {
let item = self.item.join(&data.item)?;
let hash = Hash::type_hash(&item);
if !self.names.try_insert(Name::AttributeMacro(hash))? {
return Err(ContextError::ConflictingMacroName { item, hash });
}
let mut docs = Docs::EMPTY;
docs.set_docs(meta.docs)?;
self.items.try_push(ModuleItem {
item,
hash,
common: ModuleItemCommon {
docs,
deprecated: None,
},
kind: ModuleItemKind::AttributeMacro(ModuleAttributeMacro {
handler: data.handler,
}),
})?;
self.items.last_mut().unwrap()
}
};
Ok(ItemMut {
docs: &mut item.common.docs,
#[cfg(feature = "doc")]
deprecated: &mut item.common.deprecated,
})
}
/// Register a native macro handler.
///
/// If possible, [`Module::macro_meta`] should be used since it includes more
/// useful information about the macro.
///
/// # Examples
///
/// ```
/// use rune::Module;
/// use rune::ast;
/// use rune::compile;
/// use rune::macros::{quote, MacroContext, TokenStream};
/// use rune::parse::Parser;
/// use rune::alloc::prelude::*;
///
/// fn ident_to_string(cx: &mut MacroContext<'_, '_, '_>, stream: &TokenStream) -> compile::Result<TokenStream> {
/// let mut p = Parser::from_token_stream(stream, cx.input_span());
/// let ident = p.parse_all::<ast::Ident>()?;
/// let ident = cx.resolve(ident)?.try_to_owned()?;
/// let string = cx.lit(&ident)?;
/// Ok(quote!(#string).into_token_stream(cx)?)
/// }
///
/// let mut m = Module::new();
/// m.macro_(["ident_to_string"], ident_to_string)?;
///
/// Ok::<_, rune::support::Error>(())
/// ```
pub fn macro_<N, M>(&mut self, name: N, f: M) -> Result<ItemMut<'_>, ContextError>
where
M: 'static
+ Send
+ Sync
+ Fn(&mut MacroContext<'_, '_, '_>, &TokenStream) -> compile::Result<TokenStream>,
N: IntoComponent,
{
let item = self.item.join([name])?;
let hash = Hash::type_hash(&item);
if !self.names.try_insert(Name::Macro(hash))? {
return Err(ContextError::ConflictingMacroName { item, hash });
}
let handler: Arc<MacroHandler> = Arc::new(f);
self.items.try_push(ModuleItem {
item,
hash,
common: ModuleItemCommon::default(),
kind: ModuleItemKind::Macro(ModuleMacro { handler }),
})?;
let m = self.items.last_mut().unwrap();
Ok(ItemMut {
docs: &mut m.common.docs,
#[cfg(feature = "doc")]
deprecated: &mut m.common.deprecated,
})
}
/// Register a native attribute macro handler.
///
/// If possible, [`Module::macro_meta`] should be used since it includes more
/// useful information about the function.
///
/// # Examples
///
/// ```
/// use rune::Module;
/// use rune::ast;
/// use rune::compile;
/// use rune::macros::{quote, MacroContext, TokenStream, ToTokens};
/// use rune::parse::Parser;
///
/// fn rename_fn(cx: &mut MacroContext<'_, '_, '_>, input: &TokenStream, item: &TokenStream) -> compile::Result<TokenStream> {
/// let mut item = Parser::from_token_stream(item, cx.macro_span());
/// let mut fun = item.parse_all::<ast::ItemFn>()?;
///
/// let mut input = Parser::from_token_stream(input, cx.input_span());
/// fun.name = input.parse_all::<ast::EqValue<_>>()?.value;
/// Ok(quote!(#fun).into_token_stream(cx)?)
/// }
///
/// let mut m = Module::new();
/// m.attribute_macro(["rename_fn"], rename_fn)?;
///
/// Ok::<_, rune::support::Error>(())
/// ```
pub fn attribute_macro<N, M>(&mut self, name: N, f: M) -> Result<ItemMut<'_>, ContextError>
where
M: 'static
+ Send
+ Sync
+ Fn(
&mut MacroContext<'_, '_, '_>,
&TokenStream,
&TokenStream,
) -> compile::Result<TokenStream>,
N: IntoComponent,
{
let item = self.item.join([name])?;
let hash = Hash::type_hash(&item);
if !self.names.try_insert(Name::AttributeMacro(hash))? {
return Err(ContextError::ConflictingMacroName { item, hash });
}
let handler: Arc<AttributeMacroHandler> = Arc::new(f);
self.items.try_push(ModuleItem {
item,
hash,
common: ModuleItemCommon {
docs: Docs::EMPTY,
deprecated: None,
},
kind: ModuleItemKind::AttributeMacro(ModuleAttributeMacro { handler }),
})?;
let m = self.items.last_mut().unwrap();
Ok(ItemMut {
docs: &mut m.common.docs,
#[cfg(feature = "doc")]
deprecated: &mut m.common.deprecated,
})
}
/// Register a function handler through its meta.
///
/// The metadata must be provided by annotating the function with
/// [`#[rune::function]`][macro@crate::function].
///
/// This has the benefit that it captures documentation comments which can
/// be used when generating documentation or referencing the function
/// through code sense systems.
///
/// # Examples
///
/// ```
/// use rune::{ContextError, Module, Ref};
///
/// /// This is a pretty neat function.
/// #[rune::function]
/// fn to_string(string: &str) -> String {
/// string.to_string()
/// }
///
/// /// This is a pretty neat download function
/// #[rune::function]
/// async fn download(url: Ref<str>) -> rune::support::Result<String> {
/// # todo!()
/// }
///
/// fn module() -> Result<Module, ContextError> {
/// let mut m = Module::new();
/// m.function_meta(to_string)?;
/// m.function_meta(download)?;
/// Ok(m)
/// }
/// ```
///
/// Registering instance functions:
///
/// ```
/// use rune::{Any, Module, Ref};
///
/// #[derive(Any)]
/// struct MyBytes {
/// queue: Vec<String>,
/// }
///
/// impl MyBytes {
/// fn new() -> Self {
/// Self {
/// queue: Vec::new(),
/// }
/// }
///
/// #[rune::function]
/// fn len(&self) -> usize {
/// self.queue.len()
/// }
///
/// #[rune::function(instance, path = Self::download)]
/// async fn download(this: Ref<Self>, url: Ref<str>) -> rune::support::Result<()> {
/// # todo!()
/// }
/// }
///
/// let mut m = Module::default();
///
/// m.ty::<MyBytes>()?;
/// m.function_meta(MyBytes::len)?;
/// m.function_meta(MyBytes::download)?;
/// # Ok::<_, rune::support::Error>(())
/// ```
#[inline]
pub fn function_meta(&mut self, meta: FunctionMeta) -> Result<ItemFnMut<'_>, ContextError> {
let meta = meta()?;
let mut docs = Docs::EMPTY;
docs.set_docs(meta.statics.docs)?;
docs.set_arguments(meta.statics.arguments)?;
let deprecated = meta.statics.deprecated.map(TryInto::try_into).transpose()?;
match meta.kind {
FunctionMetaKind::Function(data) => self.function_inner(data, docs, deprecated),
FunctionMetaKind::AssociatedFunction(data) => {
self.insert_associated_function(data, docs, deprecated)
}
}
}
pub(super) fn function_from_meta_kind(
&mut self,
kind: FunctionMetaKind,
) -> Result<ItemFnMut<'_>, ContextError> {
match kind {
FunctionMetaKind::Function(data) => self.function_inner(data, Docs::EMPTY, None),
FunctionMetaKind::AssociatedFunction(data) => {
self.insert_associated_function(data, Docs::EMPTY, None)
}
}
}
/// Register a function.
///
/// If possible, [`Module::function_meta`] should be used since it includes more
/// useful information about the function.
///
/// # Examples
///
/// ```
/// use rune::{docstring, Module};
///
/// fn add_ten(value: i64) -> i64 {
/// value + 10
/// }
///
/// let mut module = Module::default();
///
/// module.function("add_ten", add_ten)
/// .build()?
/// .docs(docstring! {
/// /// Adds 10 to any integer passed in.
/// });
/// # Ok::<_, rune::support::Error>(())
/// ```
///
/// Asynchronous function:
///
/// ```
/// use rune::{docstring, Any, Module};
/// # async fn download(url: &str) -> Result<String, DownloadError> { Ok(String::new()) }
///
/// #[derive(Any)]
/// struct DownloadError {
/// /* .. */
/// }
///
/// async fn download_quote() -> Result<String, DownloadError> {
/// download("https://api.quotable.io/random").await
/// }
///
/// let mut module = Module::default();
///
/// module.function("download_quote", download_quote)
/// .build()?
/// .docs(docstring! {
/// /// Download a random quote from the internet.
/// });
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn function<F, A, N, K>(&mut self, name: N, f: F) -> ModuleFunctionBuilder<'_, F, A, N, K>
where
F: Function<A, K>,
F::Return: MaybeTypeOf,
A: FunctionArgs,
K: FunctionKind,
{
ModuleFunctionBuilder {
module: self,
inner: FunctionBuilder::new(name, f),
}
}
/// See [`Module::function`].
#[deprecated = "Use `Module::function`"]
pub fn function2<F, A, N, K>(
&mut self,
name: N,
f: F,
) -> Result<ModuleFunctionBuilder<'_, F, A, N, K>, ContextError>
where
F: Function<A, K>,
F::Return: MaybeTypeOf,
A: FunctionArgs,
K: FunctionKind,
{
Ok(ModuleFunctionBuilder {
module: self,
inner: FunctionBuilder::new(name, f),
})
}
/// See [`Module::function`].
#[deprecated = "Use Module::function() instead"]
pub fn async_function<F, A, N>(&mut self, name: N, f: F) -> Result<ItemFnMut<'_>, ContextError>
where
F: Function<A, Async>,
F::Return: MaybeTypeOf,
N: IntoComponent,
A: FunctionArgs,
{
self.function_inner(FunctionData::new(name, f)?, Docs::EMPTY, None)
}
/// Register an instance function.
///
/// If possible, [`Module::function_meta`] should be used since it includes
/// more useful information about the function.
///
/// This returns a [`ItemMut`], which is a handle that can be used to
/// associate more metadata with the inserted item.
///
/// # Replacing this with `function_meta` and `#[rune::function]`
///
/// This is how you declare an instance function which takes `&self` or
/// `&mut self`:
///
/// ```rust
/// # use rune::Any;
/// #[derive(Any)]
/// struct Struct {
/// /* .. */
/// }
///
/// impl Struct {
/// /// Get the length of the `Struct`.
/// #[rune::function]
/// fn len(&self) -> usize {
/// /* .. */
/// # todo!()
/// }
/// }
/// ```
///
/// If a function does not take `&self` or `&mut self`, you must specify that
/// it's an instance function using `#[rune::function(instance)]`. The first
/// argument is then considered the instance the function gets associated with:
///
/// ```rust
/// # use rune::Any;
/// #[derive(Any)]
/// struct Struct {
/// /* .. */
/// }
///
/// /// Get the length of the `Struct`.
/// #[rune::function(instance)]
/// fn len(this: &Struct) -> usize {
/// /* .. */
/// # todo!()
/// }
/// ```
///
/// To declare an associated function which does not receive the type we
/// must specify the path to the function using `#[rune::function(path =
/// Self::<name>)]`:
///
/// ```rust
/// # use rune::Any;
/// #[derive(Any)]
/// struct Struct {
/// /* .. */
/// }
///
/// impl Struct {
/// /// Construct a new [`Struct`].
/// #[rune::function(path = Self::new)]
/// fn new() -> Struct {
/// Struct {
/// /* .. */
/// }
/// }
/// }
/// ```
///
/// Or externally like this:
///
/// ```rust
/// # use rune::Any;
/// #[derive(Any)]
/// struct Struct {
/// /* .. */
/// }
///
/// /// Construct a new [`Struct`].
/// #[rune::function(free, path = Struct::new)]
/// fn new() -> Struct {
/// Struct {
/// /* .. */
/// }
/// }
/// ```
///
/// The first part `Struct` in `Struct::new` is used to determine the type
/// the function is associated with.
///
/// Protocol functions can either be defined in an impl block or externally.
/// To define a protocol externally, you can simply do this:
///
/// ```rust
/// # use rune::Any;
/// # use rune::runtime::Formatter;
/// #[derive(Any)]
/// struct Struct {
/// /* .. */
/// }
///
/// #[rune::function(instance, protocol = DISPLAY_FMT)]
/// fn display_fmt(this: &Struct, f: &mut Formatter) -> std::fmt::Result {
/// /* .. */
/// # todo!()
/// }
/// ```
///
/// # Examples
///
/// ```
/// use rune::{Any, Module};
///
/// #[derive(Any)]
/// struct MyBytes {
/// queue: Vec<String>,
/// }
///
/// impl MyBytes {
/// /// Construct a new empty bytes container.
/// #[rune::function(path = Self::new)]
/// fn new() -> Self {
/// Self {
/// queue: Vec::new(),
/// }
/// }
///
/// /// Get the number of bytes.
/// #[rune::function]
/// fn len(&self) -> usize {
/// self.queue.len()
/// }
/// }
///
/// let mut m = Module::default();
///
/// m.ty::<MyBytes>()?;
/// m.function_meta(MyBytes::new)?;
/// m.function_meta(MyBytes::len)?;
/// # Ok::<_, rune::support::Error>(())
/// ```
///
/// Asynchronous function:
///
/// ```
/// use std::sync::atomic::AtomicU32;
/// use std::sync::Arc;
///
/// use rune::{Any, Module, Ref};
///
/// #[derive(Clone, Debug, Any)]
/// struct Client {
/// value: Arc<AtomicU32>,
/// }
///
/// #[derive(Any)]
/// struct DownloadError {
/// /* .. */
/// }
///
/// impl Client {
/// /// Download a thing.
/// #[rune::function(instance, path = Self::download)]
/// async fn download(this: Ref<Self>) -> Result<(), DownloadError> {
/// /* .. */
/// # Ok(())
/// }
/// }
///
/// let mut module = Module::default();
///
/// module.ty::<Client>()?;
/// module.function_meta(Client::download)?;
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn associated_function<N, F, A, K>(
&mut self,
name: N,
f: F,
) -> Result<ItemFnMut<'_>, ContextError>
where
N: ToInstance,
F: InstanceFunction<A, K>,
F::Return: MaybeTypeOf,
A: FunctionArgs,
K: FunctionKind,
{
self.insert_associated_function(
AssociatedFunctionData::from_instance_function(name.to_instance()?, f)?,
Docs::EMPTY,
None,
)
}
/// See [`Module::associated_function`].
#[deprecated = "Use Module::associated_function() instead"]
#[inline]
pub fn inst_fn<N, F, A, K>(&mut self, name: N, f: F) -> Result<ItemFnMut<'_>, ContextError>
where
N: ToInstance,
F: InstanceFunction<A, K>,
F::Return: MaybeTypeOf,
A: FunctionArgs,
K: FunctionKind,
{
self.associated_function(name, f)
}
/// See [`Module::associated_function`].
#[deprecated = "Use Module::associated_function() instead"]
pub fn async_inst_fn<N, F, A>(&mut self, name: N, f: F) -> Result<ItemFnMut<'_>, ContextError>
where
N: ToInstance,
F: InstanceFunction<A, Async>,
F::Return: MaybeTypeOf,
A: FunctionArgs,
{
self.associated_function(name, f)
}
/// Install a protocol function that interacts with the given field.
///
/// This returns a [`ItemMut`], which is a handle that can be used to
/// associate more metadata with the inserted item.
pub fn field_function<N, F, A>(
&mut self,
protocol: &'static Protocol,
name: N,
f: F,
) -> Result<ItemFnMut<'_>, ContextError>
where
N: ToFieldFunction,
F: InstanceFunction<A, Plain>,
F::Return: MaybeTypeOf,
A: FunctionArgs,
{
self.insert_associated_function(
AssociatedFunctionData::from_instance_function(name.to_field_function(protocol)?, f)?,
Docs::EMPTY,
None,
)
}
/// See [`Module::field_function`].
#[deprecated = "Use Module::field_function() instead"]
#[inline]
pub fn field_fn<N, F, A>(
&mut self,
protocol: &'static Protocol,
name: N,
f: F,
) -> Result<ItemFnMut<'_>, ContextError>
where
N: ToFieldFunction,
F: InstanceFunction<A, Plain>,
F::Return: MaybeTypeOf,
A: FunctionArgs,
{
self.field_function(protocol, name, f)
}
/// Install a protocol function that interacts with the given index.
///
/// An index can either be a field inside a tuple, or a variant inside of an
/// enum as configured with [Module::enum_meta].
pub fn index_function<F, A>(
&mut self,
protocol: &'static Protocol,
index: usize,
f: F,
) -> Result<ItemFnMut<'_>, ContextError>
where
F: InstanceFunction<A, Plain>,
F::Return: MaybeTypeOf,
A: FunctionArgs,
{
let name = AssociatedName::index(protocol, index);
self.insert_associated_function(
AssociatedFunctionData::from_instance_function(name, f)?,
Docs::EMPTY,
None,
)
}
/// See [`Module::index_function`].
#[deprecated = "Use Module::index_function() instead"]
#[inline]
pub fn index_fn<F, A>(
&mut self,
protocol: &'static Protocol,
index: usize,
f: F,
) -> Result<ItemFnMut<'_>, ContextError>
where
F: InstanceFunction<A, Plain>,
F::Return: MaybeTypeOf,
A: FunctionArgs,
{
self.index_function(protocol, index, f)
}
/// Register a raw function which interacts directly with the virtual
/// machine.
///
/// This returns a [`ItemMut`], which is a handle that can be used to
/// associate more metadata with the inserted item.
///
/// # Examples
///
/// ```
/// use rune::Module;
/// use rune::runtime::{Output, Memory, ToValue, VmResult, InstAddress};
/// use rune::{docstring, vm_try};
///
/// fn sum(stack: &mut dyn Memory, addr: InstAddress, args: usize, out: Output) -> VmResult<()> {
/// let mut number = 0;
///
/// for value in vm_try!(stack.slice_at(addr, args)) {
/// number += vm_try!(value.as_integer::<i64>());
/// }
///
/// out.store(stack, number);
/// VmResult::Ok(())
/// }
///
/// let mut module = Module::default();
///
/// module.raw_function("sum", sum)
/// .build()?
/// .docs(docstring! {
/// /// Sum all numbers provided to the function.
/// })?;
///
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn raw_function<F, N>(&mut self, name: N, f: F) -> ModuleRawFunctionBuilder<'_, N>
where
F: 'static + Fn(&mut dyn Memory, InstAddress, usize, Output) -> VmResult<()> + Send + Sync,
{
ModuleRawFunctionBuilder {
module: self,
name,
handler: Arc::new(move |stack, addr, args, output| f(stack, addr, args, output)),
}
}
/// See [`Module::raw_function`].
#[deprecated = "Use `raw_function` builder instead"]
pub fn raw_fn<F, N>(&mut self, name: N, f: F) -> Result<ItemFnMut<'_>, ContextError>
where
F: 'static + Fn(&mut dyn Memory, InstAddress, usize, Output) -> VmResult<()> + Send + Sync,
N: IntoComponent,
{
self.raw_function(name, f).build()
}
fn function_inner(
&mut self,
data: FunctionData,
docs: Docs,
#[allow(unused)] deprecated: Option<Box<str>>,
) -> Result<ItemFnMut<'_>, ContextError> {
let item = self.item.join(&data.item)?;
let hash = Hash::type_hash(&item);
if !self.names.try_insert(Name::Item(hash))? {
return Err(ContextError::ConflictingFunctionName { item, hash });
}
self.items.try_push(ModuleItem {
item,
hash,
common: ModuleItemCommon { docs, deprecated },
kind: ModuleItemKind::Function(ModuleFunction {
handler: data.handler,
trait_hash: None,
doc: DocFunction {
#[cfg(feature = "doc")]
is_async: data.is_async,
#[cfg(feature = "doc")]
args: data.args,
#[cfg(feature = "doc")]
return_type: data.return_type,
#[cfg(feature = "doc")]
argument_types: data.argument_types,
},
}),
})?;
let last = self.items.last_mut().unwrap();
#[cfg(feature = "doc")]
let last_fn = match &mut last.kind {
ModuleItemKind::Function(f) => f,
_ => unreachable!(),
};
Ok(ItemFnMut {
docs: &mut last.common.docs,
#[cfg(feature = "doc")]
deprecated: &mut last.common.deprecated,
#[cfg(feature = "doc")]
is_async: &mut last_fn.doc.is_async,
#[cfg(feature = "doc")]
args: &mut last_fn.doc.args,
#[cfg(feature = "doc")]
return_type: &mut last_fn.doc.return_type,
#[cfg(feature = "doc")]
argument_types: &mut last_fn.doc.argument_types,
})
}
/// Install an associated function.
fn insert_associated_function(
&mut self,
data: AssociatedFunctionData,
docs: Docs,
#[allow(unused)] deprecated: Option<Box<str>>,
) -> Result<ItemFnMut<'_>, ContextError> {
self.insert_associated_name(&data.associated)?;
self.associated.try_push(ModuleAssociated {
container: data.associated.container,
container_type_info: data.associated.container_type_info,
name: data.associated.name,
common: ModuleItemCommon { docs, deprecated },
kind: ModuleAssociatedKind::Function(ModuleFunction {
handler: data.handler,
trait_hash: None,
doc: DocFunction {
#[cfg(feature = "doc")]
is_async: data.is_async,
#[cfg(feature = "doc")]
args: data.args,
#[cfg(feature = "doc")]
return_type: data.return_type,
#[cfg(feature = "doc")]
argument_types: data.argument_types,
},
}),
})?;
let last = self.associated.last_mut().unwrap();
#[cfg(feature = "doc")]
let last_fn = match &mut last.kind {
ModuleAssociatedKind::Function(f) => f,
_ => unreachable!(),
};
Ok(ItemFnMut {
docs: &mut last.common.docs,
#[cfg(feature = "doc")]
deprecated: &mut last.common.deprecated,
#[cfg(feature = "doc")]
is_async: &mut last_fn.doc.is_async,
#[cfg(feature = "doc")]
args: &mut last_fn.doc.args,
#[cfg(feature = "doc")]
return_type: &mut last_fn.doc.return_type,
#[cfg(feature = "doc")]
argument_types: &mut last_fn.doc.argument_types,
})
}
fn insert_associated_name(&mut self, associated: &Associated) -> Result<(), ContextError> {
if !self
.names
.try_insert(Name::Associated(associated.as_key()?))?
{
return Err(match &associated.name.kind {
meta::AssociatedKind::Protocol(protocol) => {
ContextError::ConflictingProtocolFunction {
type_info: associated.container_type_info.try_clone()?,
name: protocol.name.try_into()?,
}
}
meta::AssociatedKind::FieldFn(protocol, field) => {
ContextError::ConflictingFieldFunction {
type_info: associated.container_type_info.try_clone()?,
name: protocol.name.try_into()?,
field: field.as_ref().try_into()?,
}
}
meta::AssociatedKind::IndexFn(protocol, index) => {
ContextError::ConflictingIndexFunction {
type_info: associated.container_type_info.try_clone()?,
name: protocol.name.try_into()?,
index: *index,
}
}
meta::AssociatedKind::Instance(name) => ContextError::ConflictingInstanceFunction {
type_info: associated.container_type_info.try_clone()?,
name: name.as_ref().try_into()?,
},
});
}
Ok(())
}
/// Define a new trait.
pub fn define_trait(
&mut self,
item: impl IntoIterator<Item: IntoComponent>,
) -> Result<TraitMut<'_>, ContextError> {
let item = self.item.join(item)?;
let hash = Hash::type_hash(&item);
if !self.names.try_insert(Name::Item(hash))? {
return Err(ContextError::ConflictingTrait { item, hash });
}
self.traits.try_push(ModuleTrait {
item,
hash,
common: ModuleItemCommon::default(),
handler: None,
functions: Vec::new(),
})?;
let t = self.traits.last_mut().unwrap();
Ok(TraitMut {
docs: &mut t.common.docs,
#[cfg(feature = "doc")]
deprecated: &mut t.common.deprecated,
handler: &mut t.handler,
functions: &mut t.functions,
})
}
/// Implement the trait `trait_item` for the type `T`.
pub fn implement_trait<T>(&mut self, trait_item: &Item) -> Result<(), ContextError>
where
T: ?Sized + TypeOf + Named,
{
let hash = T::HASH;
let type_info = T::type_info();
let trait_hash = Hash::type_hash(trait_item);
if !self.names.try_insert(Name::TraitImpl(hash, trait_hash))? {
return Err(ContextError::ConflictingTraitImpl {
trait_item: trait_item.try_to_owned()?,
trait_hash,
item: T::ITEM.try_to_owned()?,
hash,
});
}
self.trait_impls.try_push(ModuleTraitImpl {
item: T::ITEM.try_to_owned()?,
hash,
type_info,
trait_item: trait_item.try_to_owned()?,
trait_hash,
})?;
Ok(())
}
/// Define a re-export.
pub fn reexport(
&mut self,
item: impl IntoIterator<Item: IntoComponent>,
to: &Item,
) -> Result<(), ContextError> {
let item = self.item.join(item)?;
let hash = Hash::type_hash(&item);
if !self.names.try_insert(Name::Item(hash))? {
return Err(ContextError::ConflictingReexport {
item,
hash,
to: to.try_to_owned()?,
});
}
self.reexports.try_push(ModuleReexport {
item,
hash,
to: to.try_to_owned()?,
})?;
Ok(())
}
}
impl AsRef<Module> for Module {
#[inline]
fn as_ref(&self) -> &Module {
self
}
}