X-Git-Url: https://piware.de/gitweb/?p=learn-rust.git;a=blobdiff_plain;f=concepts%2Fsrc%2Flib.rs;h=b0839ad391739cb186adcf2bb81c97484c5a3dfe;hp=b7e5eb8f1df11116f8d94fd31fb1afe29491d087;hb=1962a5412d16f34c738e9f81bb5271da043a7505;hpb=b653e9fe9d8492f2d4b5419721f7e00b392055f9 diff --git a/concepts/src/lib.rs b/concepts/src/lib.rs index b7e5eb8..b0839ad 100644 --- a/concepts/src/lib.rs +++ b/concepts/src/lib.rs @@ -108,3 +108,105 @@ impl Iterator for Counter5 { } } } + +pub struct Post { + state: Box, + 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(); + } + + pub fn reject(&mut self) { + self.state = self.state.reject(); + } +} + +trait State { + fn request_review(&self) -> Box; + fn approve(&mut self) -> Box; + fn reject(&self) -> Box; + + #[allow(unused_variables)] + fn content<'a>(&self, post: &'a Post) -> &'a str { + "" + } +} + +struct Draft {} +impl State for Draft { + fn request_review(&self) -> Box { + Box::new(PendingReview {acks: 0}) + } + + fn approve(&mut self) -> Box { + // don't change state + Box::new(Self {}) + } + + fn reject(&self) -> Box { + Box::new(Self {}) + } +} + +struct PendingReview { + acks: u32, +} + +impl State for PendingReview { + fn request_review(&self) -> Box { + Box::new(Self {acks: self.acks}) + } + + fn approve(&mut self) -> Box { + if self.acks >= 1 { + Box::new(Published {}) + } else { + Box::new(Self {acks: self.acks + 1}) + } + } + + fn reject(&self) -> Box { + Box::new(Draft {}) + } +} + +struct Published {} +impl State for Published { + fn request_review(&self) -> Box { + Box::new(Self {}) + } + + fn approve(&mut self) -> Box { + Box::new(Published {}) + } + + fn reject(&self) -> Box { + Box::new(Self {}) + } + + fn content<'a>(&self, post: &'a Post) -> &'a str { + &post.content + } +}