Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

x/tools/cmd/goyacc: Add flag for outputting token translation table to C header #19985

Closed
rob-deutsch opened this issue Apr 15, 2017 · 2 comments

Comments

@rob-deutsch
Copy link

rob-deutsch commented Apr 15, 2017

Short summary:

Add a flag (e.g. "-h") to goyacc which will cause a C header file to be generated with a list of all the tokens and their associated number in the form of "#define [token name in caps] [associated number]".

This will more easily allow people to integrate Lex as a scanner into their Go programs to feed goyacc, in the same manner that Yacc users integrate Lex into their C programs.

Full explanation:

Background

The Goyacc package provides a convenient way to quickly build parsers in Go - but the user has to provide a parser.

In general, a quick and easy way to create a parser is with Lex. Outside of the "Go world", Lex and Yacc are often used in tandem.

The Problem

It is relatively easy to "tie into" Lex from Go because Lex just outputs a C file that can be integrated into a Go program using cgo. However, there is one critical piece missing: Lex and Yacc (and Goyacc) usually cooperate by passing integers representing tokens identified in the text, and there is no way to do this with Lex/Goyacc. The problem is that there is no way to synchronise the token/integer definitions between Lex/Goyacc.

The Proposed Solution

Common practice is for Yacc to provide a C header file that Lex can reference which defines all of the tokens. If often looks like this:

#define FIRST_TOKEN 73827
#define SECOND_TOKEN 73828

Goyacc associates a number with each token in the Go source code that it generates, but there is no way to easily "tell" Lex what all these numbers are. Goyacc should have the ability to output a header file like the above.

Prototype

I have prototyped this functionality on my local machine, and it works flawlessly.

@ALTree ALTree added this to the Proposal milestone Apr 15, 2017
@cznic
Copy link
Contributor

cznic commented Apr 15, 2017

Shameless plug: There exists golex. I'm using it for my projects (example). Best served perhaps with alternative goyacc.

@bradfitz bradfitz changed the title goyacc: Add flag for outputting token translation table to C header x/tools/cmd/goyacc: Add flag for outputting token translation table to C header Apr 15, 2017
@bradfitz
Copy link
Contributor

The Go project isn't interested in maintaining a general purpose yacc tool. Or at least we don't have time for it. It existed previously as a necessity but as of Go 1.8 we've removed it from the core (https://golang.org/doc/go1.8#tool_yacc). We only kept it in the x/tools repo just in case somebody depended on it. I don't think we want to add any features to it.

I'd also suggest https://github.com/cznic/goyacc or another community-maintained yacc.

@golang golang locked and limited conversation to collaborators Apr 15, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

5 participants