aboutsummaryrefslogtreecommitdiff
path: root/examples/basic/animals
diff options
context:
space:
mode:
Diffstat (limited to 'examples/basic/animals')
-rw-r--r--examples/basic/animals/cat.rs22
-rw-r--r--examples/basic/animals/cow.rs24
-rw-r--r--examples/basic/animals/dog.rs22
-rw-r--r--examples/basic/animals/human.rs49
-rw-r--r--examples/basic/animals/mod.rs4
5 files changed, 121 insertions, 0 deletions
diff --git a/examples/basic/animals/cat.rs b/examples/basic/animals/cat.rs
new file mode 100644
index 0000000..153ad4b
--- /dev/null
+++ b/examples/basic/animals/cat.rs
@@ -0,0 +1,22 @@
+use syrette::injectable;
+
+use crate::interfaces::cat::ICat;
+
+pub struct Cat {}
+
+#[injectable(ICat)]
+impl Cat
+{
+ pub fn new() -> Self
+ {
+ Self {}
+ }
+}
+
+impl ICat for Cat
+{
+ fn meow(&self)
+ {
+ println!("Meow!");
+ }
+}
diff --git a/examples/basic/animals/cow.rs b/examples/basic/animals/cow.rs
new file mode 100644
index 0000000..a75d750
--- /dev/null
+++ b/examples/basic/animals/cow.rs
@@ -0,0 +1,24 @@
+use crate::interfaces::cow::ICow;
+
+pub struct Cow
+{
+ moo_cnt: i32,
+}
+
+impl Cow
+{
+ pub fn new(moo_cnt: i32) -> Self
+ {
+ Self { moo_cnt }
+ }
+}
+
+impl ICow for Cow
+{
+ fn moo(&self)
+ {
+ for _ in 0..self.moo_cnt {
+ println!("Moo");
+ }
+ }
+}
diff --git a/examples/basic/animals/dog.rs b/examples/basic/animals/dog.rs
new file mode 100644
index 0000000..84959c0
--- /dev/null
+++ b/examples/basic/animals/dog.rs
@@ -0,0 +1,22 @@
+use syrette::injectable;
+
+use crate::interfaces::dog::IDog;
+
+pub struct Dog {}
+
+#[injectable(IDog)]
+impl Dog
+{
+ pub fn new() -> Self
+ {
+ Self {}
+ }
+}
+
+impl IDog for Dog
+{
+ fn woof(&self)
+ {
+ println!("Woof!");
+ }
+}
diff --git a/examples/basic/animals/human.rs b/examples/basic/animals/human.rs
new file mode 100644
index 0000000..5bd2f8f
--- /dev/null
+++ b/examples/basic/animals/human.rs
@@ -0,0 +1,49 @@
+use syrette::injectable;
+use syrette::ptr::{FactoryPtr, InterfacePtr};
+
+use crate::interfaces::cat::ICat;
+use crate::interfaces::cow::{CowFactory, ICow};
+use crate::interfaces::dog::IDog;
+use crate::interfaces::human::IHuman;
+
+pub struct Human
+{
+ dog: InterfacePtr<dyn IDog>,
+ cat: InterfacePtr<dyn ICat>,
+ cow_factory: FactoryPtr<CowFactory>,
+}
+
+#[injectable(IHuman)]
+impl Human
+{
+ pub fn new(
+ dog: InterfacePtr<dyn IDog>,
+ cat: InterfacePtr<dyn ICat>,
+ cow_factory: FactoryPtr<CowFactory>,
+ ) -> Self
+ {
+ Self {
+ dog,
+ cat,
+ cow_factory,
+ }
+ }
+}
+
+impl IHuman for Human
+{
+ fn make_pets_make_sounds(&self)
+ {
+ println!("Hi doggy!");
+
+ self.dog.woof();
+
+ println!("Hi kitty!");
+
+ self.cat.meow();
+
+ let cow: Box<dyn ICow> = (self.cow_factory)(3);
+
+ cow.moo();
+ }
+}
diff --git a/examples/basic/animals/mod.rs b/examples/basic/animals/mod.rs
new file mode 100644
index 0000000..6511d17
--- /dev/null
+++ b/examples/basic/animals/mod.rs
@@ -0,0 +1,4 @@
+pub mod cat;
+pub mod cow;
+pub mod dog;
+pub mod human;