22019287da
Multiple schema-files are now supported as of #134, but the support was a bit different from how we did multiple operation-files. Before anyone starts to depend on the ways the syntaxes differ, let's just make them the same. Since it's easy, I also added support for having just a single operations-file. I also realized while writing this that the type-change is technically breaking (if you call from Go), so documented it as such. I think this is unlikely to affect many people. Test plan: make check
188 lines
5.0 KiB
Go
188 lines
5.0 KiB
Go
package generate
|
|
|
|
import (
|
|
"fmt"
|
|
goAst "go/ast"
|
|
goParser "go/parser"
|
|
goToken "go/token"
|
|
"io/ioutil"
|
|
"path/filepath"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/vektah/gqlparser/v2"
|
|
"github.com/vektah/gqlparser/v2/ast"
|
|
"github.com/vektah/gqlparser/v2/parser"
|
|
"github.com/vektah/gqlparser/v2/validator"
|
|
)
|
|
|
|
func getSchema(globs StringList) (*ast.Schema, error) {
|
|
filenames, err := expandFilenames(globs)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
sources := make([]*ast.Source, len(filenames))
|
|
for i, filename := range filenames {
|
|
text, err := ioutil.ReadFile(filename)
|
|
if err != nil {
|
|
return nil, errorf(nil, "unreadable schema file %v: %v", filename, err)
|
|
}
|
|
sources[i] = &ast.Source{Name: filename, Input: string(text)}
|
|
}
|
|
|
|
schema, graphqlError := gqlparser.LoadSchema(sources...)
|
|
if graphqlError != nil {
|
|
return nil, errorf(nil, "invalid schema: %v", graphqlError)
|
|
}
|
|
|
|
return schema, nil
|
|
}
|
|
|
|
func getAndValidateQueries(basedir string, filenames StringList, schema *ast.Schema) (*ast.QueryDocument, error) {
|
|
queryDoc, err := getQueries(basedir, filenames)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Cf. gqlparser.LoadQuery
|
|
graphqlErrors := validator.Validate(schema, queryDoc)
|
|
if graphqlErrors != nil {
|
|
return nil, errorf(nil, "query-spec does not match schema: %v", graphqlErrors)
|
|
}
|
|
|
|
return queryDoc, nil
|
|
}
|
|
|
|
func expandFilenames(globs []string) ([]string, error) {
|
|
uniqFilenames := make(map[string]bool, len(globs))
|
|
for _, glob := range globs {
|
|
matches, err := filepath.Glob(glob)
|
|
if err != nil {
|
|
return nil, errorf(nil, "can't expand file-glob %v: %v", glob, err)
|
|
}
|
|
for _, match := range matches {
|
|
uniqFilenames[match] = true
|
|
}
|
|
}
|
|
filenames := make([]string, 0, len(uniqFilenames))
|
|
for filename := range uniqFilenames {
|
|
filenames = append(filenames, filename)
|
|
}
|
|
return filenames, nil
|
|
}
|
|
|
|
func getQueries(basedir string, globs StringList) (*ast.QueryDocument, error) {
|
|
// We merge all the queries into a single query-document, since operations
|
|
// in one might reference fragments in another.
|
|
//
|
|
// TODO(benkraft): It might be better to merge just within a filename, so
|
|
// that fragment-names don't need to be unique across files. (Although
|
|
// then we may have other problems; and query-names still need to be.)
|
|
mergedQueryDoc := new(ast.QueryDocument)
|
|
addQueryDoc := func(queryDoc *ast.QueryDocument) {
|
|
mergedQueryDoc.Operations = append(mergedQueryDoc.Operations, queryDoc.Operations...)
|
|
mergedQueryDoc.Fragments = append(mergedQueryDoc.Fragments, queryDoc.Fragments...)
|
|
}
|
|
|
|
filenames, err := expandFilenames(globs)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, filename := range filenames {
|
|
text, err := ioutil.ReadFile(filename)
|
|
if err != nil {
|
|
return nil, errorf(nil, "unreadable query-spec file %v: %v", filename, err)
|
|
}
|
|
|
|
switch filepath.Ext(filename) {
|
|
case ".graphql":
|
|
queryDoc, err := getQueriesFromString(string(text), basedir, filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
addQueryDoc(queryDoc)
|
|
|
|
case ".go":
|
|
queryDocs, err := getQueriesFromGo(string(text), basedir, filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, queryDoc := range queryDocs {
|
|
addQueryDoc(queryDoc)
|
|
}
|
|
|
|
default:
|
|
return nil, errorf(nil, "unknown file type: %v", filename)
|
|
}
|
|
}
|
|
|
|
return mergedQueryDoc, nil
|
|
}
|
|
|
|
func getQueriesFromString(text string, basedir, filename string) (*ast.QueryDocument, error) {
|
|
// make path relative to the config-directory
|
|
relname, err := filepath.Rel(basedir, filename)
|
|
if err == nil {
|
|
filename = relname
|
|
}
|
|
|
|
// Cf. gqlparser.LoadQuery
|
|
document, graphqlError := parser.ParseQuery(
|
|
&ast.Source{Name: filename, Input: text})
|
|
if graphqlError != nil { // ParseQuery returns type *graphql.Error, yuck
|
|
return nil, errorf(nil, "invalid query-spec file %v: %v", filename, graphqlError)
|
|
}
|
|
|
|
return document, nil
|
|
}
|
|
|
|
func getQueriesFromGo(text string, basedir, filename string) ([]*ast.QueryDocument, error) {
|
|
fset := goToken.NewFileSet()
|
|
f, err := goParser.ParseFile(fset, filename, text, 0)
|
|
if err != nil {
|
|
return nil, errorf(nil, "invalid Go file %v: %v", filename, err)
|
|
}
|
|
|
|
var retval []*ast.QueryDocument
|
|
goAst.Inspect(f, func(node goAst.Node) bool {
|
|
if err != nil {
|
|
return false // don't bother to recurse if something already failed
|
|
}
|
|
|
|
basicLit, ok := node.(*goAst.BasicLit)
|
|
if !ok || basicLit.Kind != goToken.STRING {
|
|
return true // recurse
|
|
}
|
|
|
|
var value string
|
|
value, err = strconv.Unquote(basicLit.Value)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
|
|
if !strings.HasPrefix(strings.TrimSpace(value), "# @genqlient") {
|
|
return true
|
|
}
|
|
|
|
// We put the filename as <real filename>:<line>, which errors.go knows
|
|
// how to parse back out (since it's what gqlparser will give to us in
|
|
// our errors).
|
|
pos := fset.Position(basicLit.Pos())
|
|
fakeFilename := fmt.Sprintf("%v:%v", pos.Filename, pos.Line)
|
|
var query *ast.QueryDocument
|
|
query, err = getQueriesFromString(value, basedir, fakeFilename)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
retval = append(retval, query)
|
|
|
|
return true
|
|
})
|
|
|
|
return retval, err
|
|
}
|