Memento Design Pattern

52 篇文章 0 订阅
17 篇文章 0 订阅

Memento pattern is one of the behavioral design pattern. Memento design pattern is used when we want to save the state of an object so that we can restore later on. Memento pattern is used to implement this in such a way that the saved state data of the object is not accessible outside of the object, this protects the integrity of saved state data.

Memento pattern is implemented with two objects – Originator and Caretaker. Originator is the object whose state needs to be saved and restored and it uses aninner class to save the state of Object. The inner class is called Memento and its private, so that it can’t be accessed from other objects.

Caretaker is the helper class that is responsible for storing and restoring the Originator’s state through Memento object. Since Memento is private to Originator, Caretaker can’t access it and it’s stored as a Object within the caretaker.

One of the best real life example is the text editors where we can save it’s data anytime and use undo to restore it to previous saved state. We will implement the same feature and provide a utility where we can write and save contents to a File anytime and we can restore it to last saved state. For simplicity, I will not use any IO operations to write data into file.

Originator Class

01 package com.journaldev.design.memento;
02 
03 public class FileWriterUtil {
04 
05     private String fileName;
06     private StringBuilder content;
07 
08     public FileWriterUtil(String file){
09         this.fileName=file;
10         this.content=new StringBuilder();
11     }
12 
13     @Override
14     public String toString(){
15         return this.content.toString();
16     }
17 
18     public void write(String str){
19         content.append(str);
20     }
21 
22     public Memento save(){
23         return new Memento(this.fileName,this.content);
24     }
25 
26     public void undoToLastSave(Object obj){
27         Memento memento = (Memento) obj;
28         this.fileName= memento.fileName;
29         this.content=memento.content;
30     }
31 
32     private class Memento{
33         private String fileName;
34         private StringBuilder content;
35 
36         public Memento(String file, StringBuilder content){
37             this.fileName=file;
38             //notice the deep copy so that Memento and FileWriterUtil content variables don't refer to same object
39             this.content=new StringBuilder(content);
40         }
41     }
42}

Notice the Memento inner class and implementation of save and undo methods. Now we can continue to implement Caretaker class.

Caretaker Class

01 package com.journaldev.design.memento;
02 
03 public class FileWriterCaretaker {
04 
05     private Object obj;
06 
07     public void save(FileWriterUtil fileWriter){
08         this.obj=fileWriter.save();
09     }
10 
11     public void undo(FileWriterUtil fileWriter){
12         fileWriter.undoToLastSave(obj);
13     }
14}

Notice that caretaker object contains the saved state in the form of Object, so it can’t alter its data and also it has no knowledge of it’s structure.

Memento Test Class

Lets write a simple test program that will use our memento implementation.

01 package com.journaldev.design.memento;
02 
03 public class FileWriterClient {
04 
05     public static void main(String[] args) {
06 
07         FileWriterCaretaker caretaker = new FileWriterCaretaker();
08 
09         FileWriterUtil fileWriter = new FileWriterUtil("data.txt");
10         fileWriter.write("First Set of Data\n");
11         System.out.println(fileWriter+"\n\n");
12 
13         // lets save the file
14         caretaker.save(fileWriter);
15         //now write something else
16         fileWriter.write("Second Set of Data\n");
17 
18         //checking file contents
19         System.out.println(fileWriter+"\n\n");
20 
21         //lets undo to last save
22         caretaker.undo(fileWriter);
23 
24         //checking file content again
25         System.out.println(fileWriter+"\n\n");
26 
27     }
28 
29}

Output of above program is:

1First Set of Data
2 
3First Set of Data
4Second Set of Data
5 
6First Set of Data

The pattern is simple and easy to implement, one of the thing needs to take care is that Memento class should be accessible only to the Originator object. Also in client application, we should use caretaker object for saving and restoring the originator state.

Also if Originator object has properties that are not immutable, we should use deep copy or cloning to avoid data integrity issue like I have used in above example. We can use Serialization to achieve memento pattern implementation that is more generic rather than Memento pattern where every object needs to have it’s own Memento class implementation.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值