Giter Club home page Giter Club logo

Comments (12)

wader avatar wader commented on August 18, 2024 1

@itchyny Thanks!

from gojq.

itchyny avatar itchyny commented on August 18, 2024

I'm working on this in #46, and you will be able to define your internal function as follows. Any thoughts?

package main

import (
	"fmt"
	"log"

	"github.com/itchyny/gojq"
)

var compilerOptions = []gojq.CompilerOption{
	// gojq.WithFunction({function name}, {arity (argument count)}, {function})
	gojq.WithFunction("f", 0, func(x interface{}, _ []interface{}) interface{} {
		if x, ok := x.(int); ok {
			return x * 2
		}
		return fmt.Errorf("f cannot be applied to: %v", x)
	}),
	gojq.WithFunction("g", 1, func(x interface{}, xs []interface{}) interface{} {
		if x, ok := x.(int); ok {
			if y, ok := xs[0].(int); ok {
				return x + y
			}
		}
		return fmt.Errorf("g cannot be applied to: %v, %v", x, xs)
	}),
}

func main() {
	query, err := gojq.Parse(".[] | f | g(3)")
	if err != nil {
		log.Fatalln(err)
	}
	code, err := gojq.Compile(query, compilerOptions...)
	if err != nil {
		log.Fatalln(err)
	}
	iter := code.Run([]interface{}{1, 2, 3, 4, 5})
	for {
		v, ok := iter.Next()
		if !ok {
			break
		}
		fmt.Printf("%v\n", v)
	}
}

from gojq.

wader avatar wader commented on August 18, 2024

Added some comments in the PR. API looks good to me.

from gojq.

wader avatar wader commented on August 18, 2024

I do support optional arguments in my hack, but now when i think about it that might be bad and the correct way would be to use multiple WithFunction with different artity and then maybe share go code between them?

from gojq.

wader avatar wader commented on August 18, 2024

Rebased and fixed my things on top of your branch, seems to work fine 👍

from gojq.

itchyny avatar itchyny commented on August 18, 2024

I do support optional arguments in my hack, but now when i think about it that might be bad and the correct way would be to use multiple WithFunction with different artity and then maybe share go code between them?

That's exactly what I was concerned. And supporting same function name with different arities introduces a bit hacky code. I'm wondering making the second argument of WithFunction to []int, the list of acceptable arities.

from gojq.

itchyny avatar itchyny commented on August 18, 2024

When I give up supporting adding the functions with the same name, the code would be clean. For example, using gojq.WithFunction("f", []int{0, 1}, F) and gojq.WithFunction("f", []int{2, 3}, G). Supporting all the f/0 to f/3 is difficult.

from gojq.

wader avatar wader commented on August 18, 2024

I think in most cases you want min/max arg count range? gojq.WithFunction("f", [2]int{0, 1}, F) or gojq.WithFunction("f", 0, 1, F)? not very pretty.

I guess you don't want to support varargs?

Sorry could you clarify what you mean by "Supporting all the f/0 to f/3 is difficult."? hard to do in the gojq implementation or hard to write custom functions that behave well?

from gojq.

itchyny avatar itchyny commented on August 18, 2024

I think in most cases you want min/max arg count range? gojq.WithFunction("f", [2]int{0, 1}, F) or gojq.WithFunction("f", 0, 1, F)? not very pretty.

I like the idea of giving both min/max arity. It will cover the use case without duplicating the function implementation with the same name.

Sorry could you clarify what you mean by "Supporting all the f/0 to f/3 is difficult."? hard to do in the gojq implementation or hard to write custom functions that behave well?

I was thinking of overwriting the former definition by the latter when the function name conflicts. But I can implement the case by the same way I used to do within the previous implementation accepting single arity. So user don't need to worry about this (see this test for sample).

Thanks for your valuable feedback, I will merge the branch in a few days.

from gojq.

wader avatar wader commented on August 18, 2024

Nice! glad I can help. And thank you for gojq, very useful and i've learned a lot while reading the code.

Did you see my comment about passing along customFuncs to def and modules? #46 (comment)

from gojq.

itchyny avatar itchyny commented on August 18, 2024

Did you see my comment about passing along customFuncs to def and modules?

Yes, I was to push my changes after writing tests.

from gojq.

wader avatar wader commented on August 18, 2024

@itchyny 👍

from gojq.

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.