]> piware.de Git - learn-rust.git/blobdiff - concepts/src/lib.rs
concepts: Rewrite Post without Option
[learn-rust.git] / concepts / src / lib.rs
index b7e5eb8f1df11116f8d94fd31fb1afe29491d087..bb15eeb814ea45d9aee64ed43497f586df33ba65 100644 (file)
@@ -108,3 +108,81 @@ impl Iterator for Counter5 {
         }
     }
 }
+
+pub struct Post {
+    state: Box<dyn State>,
+    content: String,
+}
+
+impl Post {
+    pub fn new() -> Post {
+        Post {
+            state: Box::new(Draft {}),
+            content: String::new(),
+        }
+    }
+
+    pub fn add_text(&mut self, text: &str) {
+        self.content.push_str(text);
+    }
+
+    pub fn content(&self) -> &str {
+        self.state.content(self)
+    }
+
+    pub fn request_review(&mut self) {
+        self.state = self.state.request_review();
+    }
+
+    pub fn approve(&mut self) {
+        self.state = self.state.approve();
+    }
+}
+
+trait State {
+    fn request_review(&self) -> Box<dyn State>;
+    fn approve(&self) -> Box<dyn State>;
+
+    #[allow(unused_variables)]
+    fn content<'a>(&self, post: &'a Post) -> &'a str {
+        ""
+    }
+}
+
+struct Draft {}
+impl State for Draft {
+    fn request_review(&self) -> Box<dyn State> {
+        Box::new(PendingReview {})
+    }
+
+    fn approve(&self) -> Box<dyn State> {
+        // don't change state
+        Box::new(Self {})
+    }
+}
+
+struct PendingReview {}
+impl State for PendingReview {
+    fn request_review(&self) -> Box<dyn State> {
+        Box::new(Self {})
+    }
+
+    fn approve(&self) -> Box<dyn State> {
+        Box::new(Published {})
+    }
+}
+
+struct Published {}
+impl State for Published {
+    fn request_review(&self) -> Box<dyn State> {
+        Box::new(Self {})
+    }
+
+    fn approve(&self) -> Box<dyn State> {
+        Box::new(Published {})
+    }
+
+    fn content<'a>(&self, post: &'a Post) -> &'a str {
+        &post.content
+    }
+}