2019-10-02 00:01:50 +03:00
|
|
|
{-# LANGUAGE TypeApplications #-}
|
2019-10-10 21:59:56 +03:00
|
|
|
module Main (main) where
|
2019-10-01 18:25:14 +03:00
|
|
|
|
2019-10-02 00:03:02 +03:00
|
|
|
import System.Environment
|
2019-10-02 00:03:37 +03:00
|
|
|
import TreeSitter.Unmarshal
|
|
|
|
import TreeSitter.Python.AST
|
|
|
|
import TreeSitter.Python
|
2019-10-02 00:03:18 +03:00
|
|
|
import Source.Range
|
|
|
|
import Source.Span
|
2019-10-10 21:09:35 +03:00
|
|
|
import Data.ByteString.Char8
|
|
|
|
import Data.ByteString (pack, readFile, ByteString)
|
2019-10-02 01:36:00 +03:00
|
|
|
import System.IO (FilePath)
|
2019-10-02 21:34:58 +03:00
|
|
|
import Options.Applicative hiding (style)
|
|
|
|
import Data.Semigroup ((<>))
|
2019-10-19 00:19:11 +03:00
|
|
|
import Text.Pretty.Simple (pPrint, pPrintNoColor)
|
2019-10-01 18:25:14 +03:00
|
|
|
|
2019-10-10 20:14:15 +03:00
|
|
|
data SemanticAST = SemanticAST
|
2019-10-17 01:18:11 +03:00
|
|
|
{ format :: Format
|
2019-10-18 20:43:54 +03:00
|
|
|
, color :: Bool
|
2019-10-17 01:18:11 +03:00
|
|
|
, source :: Either FilePath Prelude.String
|
2019-10-16 22:15:55 +03:00
|
|
|
}
|
2019-10-10 20:14:15 +03:00
|
|
|
|
|
|
|
parseAST :: Parser SemanticAST
|
|
|
|
parseAST = SemanticAST
|
2019-10-16 21:17:07 +03:00
|
|
|
<$> option auto
|
|
|
|
( long "format"
|
|
|
|
<> help "Specify desired output: show, json, sexpression" )
|
2019-10-18 20:43:54 +03:00
|
|
|
<*> switch
|
|
|
|
( long "color"
|
|
|
|
<> help "Print with color: --color"
|
|
|
|
)
|
2019-10-16 21:17:07 +03:00
|
|
|
<*> (Left <$> strOption
|
|
|
|
( long "sourceFile"
|
|
|
|
<> metavar "FILEPATH"
|
|
|
|
<> help "Specify filepath containing source code to parse" )
|
|
|
|
<|> Right <$> strOption
|
|
|
|
( long "sourceString"
|
|
|
|
<> metavar "STRING"
|
|
|
|
<> help "Specify source input to parse"
|
|
|
|
))
|
2019-10-10 20:14:15 +03:00
|
|
|
|
2019-10-04 01:11:28 +03:00
|
|
|
main :: IO ()
|
|
|
|
main = generateAST =<< execParser opts
|
|
|
|
|
2019-10-10 20:14:15 +03:00
|
|
|
generateAST :: SemanticAST -> IO ()
|
2019-10-18 20:43:54 +03:00
|
|
|
generateAST (SemanticAST format _ source) = do
|
2019-10-16 22:15:03 +03:00
|
|
|
bytestring <- case source of
|
2019-10-15 20:27:54 +03:00
|
|
|
Left filePath -> do
|
2019-10-16 22:15:03 +03:00
|
|
|
Data.ByteString.readFile filePath
|
2019-10-15 20:27:54 +03:00
|
|
|
Right source -> do
|
2019-10-18 00:31:04 +03:00
|
|
|
pure $ Data.ByteString.Char8.pack source
|
2019-10-18 18:14:56 +03:00
|
|
|
ast <- parseByteString @TreeSitter.Python.AST.Module @(Range, Span) tree_sitter_python bytestring
|
|
|
|
case format of
|
|
|
|
Show -> print ast
|
2019-10-18 18:23:37 +03:00
|
|
|
Pretty -> pPrint ast
|
2019-10-10 20:14:15 +03:00
|
|
|
|
2019-10-04 01:11:28 +03:00
|
|
|
opts :: ParserInfo SemanticAST
|
|
|
|
opts = info (parseAST <**> helper)
|
|
|
|
( fullDesc
|
2019-10-10 20:14:15 +03:00
|
|
|
<> progDesc "Parse source code and produce an AST"
|
|
|
|
<> header "semantic-ast is a package used to parse source code" )
|
2019-10-04 01:56:58 +03:00
|
|
|
|
2019-10-04 01:12:04 +03:00
|
|
|
-- TODO: Define formats for json, sexpression, etc.
|
2019-10-18 18:23:23 +03:00
|
|
|
data Format = Show | Pretty
|
2019-10-10 20:13:51 +03:00
|
|
|
deriving (Read)
|
2019-10-18 20:43:54 +03:00
|
|
|
|
|
|
|
-- CLI feature request -> implementation
|
|
|
|
-- add a boolean flag that represents "print with color" or not
|
|
|
|
-- `semantic-ast --format=Pretty --no-color` won't show those pretty colors
|
|
|
|
-- adding a boolean field to represent whether color is on or not
|
|
|
|
-- and use an appropriate construct in optparse-applicative to indicate that `--color` means True
|
|
|
|
-- and -- no-color means false, and not provided means True
|
|
|
|
|
|
|
|
-- The difference between auto and string option
|