Giter VIP home page Giter VIP logo

Comments (9)

antonmedv avatar antonmedv commented on August 11, 2024

The first panic is on the line:

		op := program.Bytecode[vm.ip]

https://github.com/antonmedv/expr/blob/cb1f3459dd4705b6cbaf43069925d5e2c782fd6b/vm/vm.go#L90C1-L90C32

This means that the instruction pointer points to a wrong address.

But this is strange, as a few lines above we have check:

for vm.ip < len(program.Bytecode) {
		if vm.debug {
			<-vm.step
		}

		op := program.Bytecode[vm.ip]

Very interesting.

Is it possible to add a wrapper with recover and log the executed expression?

from expr.

antonmedv avatar antonmedv commented on August 11, 2024

Also, could you make sure that you don't reuse VM in different threads?

from expr.

Bychin avatar Bychin commented on August 11, 2024

I added wrapper and caught the panic once again (same stacktrace).
Executed expression:

Data.Code == 'XXX' && Parameters.Date.Unix() < ToUnix('2024-01-01')

So, the environment is something like this:

type env struct {
	Data       *DataStruct
	Parameters *ParametersStruct
}

type DataStruct struct {
	Code string
}

type ParametersStruct struct {
	Date time.Time
}

func (e *env) ToUnix(rawDate string) int64 {
	t, err := time.Parse("2006-01-02", rawDate)
	if err != nil {
		panic("invalid rawDate")
	}

	return t.Unix()
}

And ToUnix function is marked as expr.ConstExpr (also there are expr.Optimize(true) and expr.AsBool() options).

I will keep my eye on it to prove that panics happen only for this expression.

I checked the code and seems highly unlikely that VM is being used in different threads.

from expr.

antonmedv avatar antonmedv commented on August 11, 2024

The code looks ok. Lets true to take a look at what program (already compiled) is executed during panic.

Please, log the program as JSON, and as program.Disassemble().

from expr.

Bychin avatar Bychin commented on August 11, 2024

Should getting the program as JSON be done as something like this json.Marshal(vm.Program.Source)?

from expr.

antonmedv avatar antonmedv commented on August 11, 2024

The whole program. Or some sort of other dump technics you can find out.

from expr.

antonmedv avatar antonmedv commented on August 11, 2024

@Bychin any news on the problem?

from expr.

Bychin avatar Bychin commented on August 11, 2024

@antonmedv so I wasn't able to reproduce the problems after a little change.

So previously I was using the VM like this:

type Evaluator struct {
	v *vm.VM
}

func (e *Evaluator) Evaluate() error {
	// reuse the same vm instance for performance gain
	v := e.v
	if v == nil {
		v = &vm.VM{}
	}

	... := v.Run(...)

	return nil
}

// WithReusableVM reuses the same vm instance for performance gain.
// It will make the engine not thread safe.
func (e *Evaluator) WithReusableVM() {
	e.v = &vm.VM{}
}

evaluator := &Evaluator{}
if reuseVM {
	evaluator.WithReusableVM() // <- this thing caused the problem
}
evaluator.Evaluate()

evaluator is used in a single thread, but as soon as I stopped reusing VM the problem was gone. I checked the code of v.Run method and I can see that the inner state of VM is cleared before the actual execution, so I don't know where to investigate next.

from expr.

antonmedv avatar antonmedv commented on August 11, 2024

I will close this issue as it not a problem any more. Feel free to create another issue if someone encounters a panic in vm.

from expr.

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.