Skip to content

teamlint/go-astra

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Astra

Fetch information about go source file easily.

Install

go get -u github.com/teamlint/go-astra

Description

Package astra use ast.File from standard pkg to collect information about source file. It can collect information about:

  • Imports
    • Docs
    • Packages
    • Aliases
  • Constants
    • Name
    • Docs
    • Types
  • Variables
    • Name
    • Docs
    • Types
    • Ignore variables which declared by function call!
  • Interfaces
    • Name
    • Docs
    • Functions
  • Structures
    • Docs
    • Fields (with tags)
    • Methods
  • Functions
    • Name
    • Docs
    • Arguments
    • Results
  • Methods (functions with receivers)
    • Name
    • Docs
    • Receiver
    • Arguments
    • Results
    • Linked structure

Usage example

package main

import (
	"encoding/json"
	"fmt"
	"go/ast"
	"go/parser"
	"go/token"
	"os"
	"path/filepath"

	"github.com/teamlint/go-astra"
)

func main() {
	currentDir, err := os.Getwd()
	if err != nil {
		panic(err)
	}
	path := filepath.Join(currentDir, "./test/service.go")
	file, err := astra.ParseFile(path)
	if err != nil {
		fmt.Println(err)
	}
	t, err := json.Marshal(file)
	if err != nil {
		fmt.Println(err)
	}
	fmt.Println(string(t))
}

Packages

 
 
 

Languages

  • Go 100.0%