Browser docs

Execute Around

Intent

Execute Around idiom frees the user from certain actions that should always be executed before and after the business method. A good example of this is resource allocation and deallocation leaving the user to specify only what to do with the resource.

Explanation

Real-world example

A class needs to be provided for writing text strings to files. To make it easy for the user, the service class opens and closes the file automatically. The user only has to specify what is written into which file.

In plain words

Execute Around idiom handles boilerplate code before and after business method.

Stack Overflow says

Basically it’s the pattern where you write a method to do things which are always required, e.g. resource allocation and clean-up, and make the caller pass in “what we want to do with the resource”.

Programmatic Example

SimpleFileWriter class implements the Execute Around idiom. It takes FileWriterAction as a constructor argument allowing the user to specify what gets written into the file.

 1@FunctionalInterface
 2public interface FileWriterAction {
 3  void writeFile(FileWriter writer) throws IOException;
 4}
 5
 6@Slf4j
 7public class SimpleFileWriter {
 8    public SimpleFileWriter(String filename, FileWriterAction action) throws IOException {
 9        LOGGER.info("Opening the file");
10        try (var writer = new FileWriter(filename)) {
11            LOGGER.info("Executing the action");
12            action.writeFile(writer);
13            LOGGER.info("Closing the file");
14        }
15    }
16}

The following code demonstrates how SimpleFileWriter is used. Scanner is used to print the file contents after the writing finishes.

1FileWriterAction writeHello = writer -> {
2    writer.write("Gandalf was here");
3};
4new SimpleFileWriter("testfile.txt", writeHello);
5
6var scanner = new Scanner(new File("testfile.txt"));
7while (scanner.hasNextLine()) {
8LOGGER.info(scanner.nextLine());
9}

Here’s the console output.

21:18:07.185 [main] INFO com.iluwatar.execute.around.SimpleFileWriter - Opening the file
21:18:07.188 [main] INFO com.iluwatar.execute.around.SimpleFileWriter - Executing the action
21:18:07.189 [main] INFO com.iluwatar.execute.around.SimpleFileWriter - Closing the file
21:18:07.199 [main] INFO com.iluwatar.execute.around.App - Gandalf was here

Class diagram

alt text

Applicability

Use the Execute Around idiom when

  • An API requires methods to be called in pairs such as open/close or allocate/deallocate.

Credits