Home >Web Front-end >JS Tutorial >Implementing Golang defer concept into Javascript

Implementing Golang defer concept into Javascript

DDD
DDDOriginal
2024-12-19 14:23:09978browse

Implementing Golang defer concept into Javascript

In Go, a defer statement defers the execution of a function until the surrounding function returns. Here's a simple example:

package main

import "fmt"


func main() {
    fmt.Println("start")
    defer fmt.Println("defer 1")
    defer fmt.Println("defer 2")
    fmt.Println("end")
}

In this example, the main function executes normally, but all deferred functions are executed in reverse order when the function exits. SO the output will be :

start
end
defer 2
defer 1

Now, adding defer keyword to JavaScript requires a lot of work. But that’s what I love about JS—it’s so versatile that you can implement features from other programming languages without needing to touch the compiler.

But first, why would we need this?

There are many useful use cases for a defer-like functionality in programming, such as:

  • Resource cleanup: Clean up resources like file handles.
  • Transactional operations: Roll back changes in case of an error, like reverting a database or state update.
  • Logging: Add logging at the end of an operation.
  • UI state management: Reset state after a process.

And the list goes on...

Now, let’s dive into the fun part: our implementation of defer in JavaScript.

class Deferer {
  static stack = [];
  static wrapped = false;
  static defer(fn) {
    this.stack.push(fn);
    if (!this.wrapped) {
        throw new Error("can't call defer wihtout wrapping the function with Deferer.wrapper")
    }
  }

  static execute() {
    while (this.stack.length > 0) {
      const fn = this.stack.pop();
      try {
        fn();
      } catch (err) {
        throw new Error('Error in deferred function:', err);
      } 
    }
    this.wrapped = false;
  }

  static wrapper = (cp) => (...args) => {
        if(this.wrapped) throw new Error("nested deferers are not supported");
        this.wrapped = true;
        try {
         const v = cp(...args)
         this.execute()
         return v;
        } finally {
          this.wrapped = false;
        }

  }

}

const myDeferedFunction =Deferer.wrapper((a, b, c) => {
  console.log("Start of function", a, b, c);

  Deferer.defer(() => console.log("Deferred: Function 1"));
  Deferer.defer(() => console.log("Deferred: Function 2"));

  console.log("End of function", a, b, c);
});

myDeferedFunction(8,8,8)

Output:

Start of function 8 8 8
End of function 8 8 8
Deferred: Function 2
Deferred: Function 1

As expected, the deferred functions execute after the main function has completed, in reverse order.

Thanks,

Ahmed

The above is the detailed content of Implementing Golang defer concept into Javascript. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn