Git Product home page Git Product logo

Comments (5)

cosmos72 avatar cosmos72 commented on May 22, 2024

It sounds interesting, thanks.

I will have a look as soon as I have a little time

from gomacro.

kortschak avatar kortschak commented on May 22, 2024

I have the basics for this that I can donate. I had a look through what you have for reading lines, and I'm not entirely sure how it all works, so it's probably better if I give you the terminal code and you plug that in, unless you want to do it all your self.

from gomacro.

kortschak avatar kortschak commented on May 22, 2024

Here is a write up in case you want to pick up what I have (it is derived from code I originally wrote for cayley's REPL, but I am only pasting here what I have free rights to as their author).

Relevant imports:

import (
	"fmt"
	"os"
	"os/signal"

	"github.com/peterh/liner"
)

The initialisation of a terminal is done at the outset of the REPL shell with this snippet that handles history and signals (user warnings can be elided).

term, err := terminal(history)
if os.IsNotExist(err) {
	fmt.Printf("creating new history file: %q\n", history)
}
defer persist(term, history)

This is matched by an appropriate term.Close() when needed, or by the signal handler that is set up in terminal below. Since history is written in the deferred persist call, you can then either return from main or os.Exit and explicitly call persist - the former feels nicer to me.

Then your REPL loop executes the following snippet to get lines. Handle the lines however you want after that. Since you change prompt depending on context, just update prompt variable here for the relevant prompt glyphs for your state.

line, err := term.Prompt(prompt)
if err != nil {
	if err == io.EOF {
		fmt.Println()
		return nil
	}
	return err
}
term.AppendHistory(line)

The machinery:

func terminal(path string) (*liner.State, error) {
	term := liner.NewLiner()

	go func() {
		c := make(chan os.Signal, 1)
		signal.Notify(c, os.Interrupt, os.Kill)
		<-c

		err := persist(term, history)
		if err != nil {
			fmt.Fprintf(os.Stderr, "failed to properly clean up terminal: %v\n", err)
			os.Exit(1)
		}

		os.Exit(0)
	}()

	f, err := os.Open(path)
	if err != nil {
		return term, err
	}
	defer f.Close()
	_, err = term.ReadHistory(f)
	return term, err
}

func persist(term *liner.State, path string) error {
	f, err := os.OpenFile(path, os.O_RDWR|os.O_APPEND|os.O_CREATE, 0666)
	if err != nil {
		return fmt.Errorf("could not open %q to append history: %v", path, err)
	}
	defer f.Close()
	_, err = term.WriteHistory(f)
	if err != nil {
		return fmt.Errorf("could not write history to %q: %v", path, err)
	}
	return term.Close()
}

from gomacro.

cosmos72 avatar cosmos72 commented on May 22, 2024

Sorry for the late answer.
Thanks, I will test it :)

from gomacro.

cosmos72 avatar cosmos72 commented on May 22, 2024

Added in commit e224935
Thanks for the patience!

from gomacro.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.