mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-04 18:29:42 +01:00
bff8fb7c7e
`protobuf-wire` was open sourced as `proto3-suite` (with a corresponding module rename) so this change updates the dependency and import lists
26 lines
1 KiB
Haskell
26 lines
1 KiB
Haskell
{-# LANGUAGE DataKinds #-}
|
|
{-# LANGUAGE DeriveGeneric #-}
|
|
{-# LANGUAGE LambdaCase #-}
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
{-# LANGUAGE TypeOperators #-}
|
|
|
|
import Data.Monoid ((<>))
|
|
import Filesystem.Path.CurrentOS (encodeString)
|
|
import Options.Generic
|
|
import Proto3.Suite.DotProto.Generate
|
|
import Prelude hiding (FilePath)
|
|
import Turtle (FilePath)
|
|
|
|
data Args = Args
|
|
{ proto :: FilePath <?> "Path to input .proto file"
|
|
} deriving (Generic, Show)
|
|
instance ParseRecord Args
|
|
|
|
main :: IO ()
|
|
main = do
|
|
protoPath <- encodeString . unHelpful . proto <$> getRecord "Dumps a compiled .proto file to stdout"
|
|
readDotProtoWithContext protoPath >>= \case
|
|
Left err -> fail (show err)
|
|
Right (dp, ctx) -> case renderHsModuleForDotProto dp ctx of
|
|
Left err -> fail ("Error compiling " <> protoPath <> ": " <> show err)
|
|
Right src -> putStrLn src
|