haskell-stack-trace-plugin/Readme.md

115 lines
2.6 KiB
Markdown
Raw Normal View History

2018-12-07 09:07:07 +03:00
# haskell-stack-trace-plugin
2020-01-18 07:08:30 +03:00
![](https://github.com/waddlaw/haskell-stack-trace-plugin/workflows/cabal/badge.svg)
2018-12-07 09:36:02 +03:00
[![Hackage](https://img.shields.io/hackage/v/haskell-stack-trace-plugin.svg)](https://hackage.haskell.org/package/haskell-stack-trace-plugin)
2018-12-07 09:07:07 +03:00
This plugin allow implicitly add `HasCallStack` class to every top-level function for all module. Hence, we can to get completely continuous call stack.
2021-05-25 06:29:02 +03:00
1. (implicitly) Import [GHC.Stack](https://hackage.haskell.org/package/base/docs/GHC-Stack.html) for all modules.
2. Add [HasCallStack](https://hackage.haskell.org/package/base/docs/GHC-Stack.html#t:HasCallStack) constraint for all top-level functions.
3. Other supported syntaxes
- [x] `where` clause
2018-12-07 09:07:07 +03:00
Requirement: (8.6 <= on GHC)
## Synopsis
```haskell
module Main where
import Data.Maybe (fromJust)
main :: IO ()
main = print f1
f1 :: Int
f1 = f2
f2 :: Int
f2 = f3
-- HsQualTy
f3 :: HasCallStack => Int
f3 = f4 0
-- HsQualTy
f4 :: Show a => a -> Int
f4 n = f5 (show n) 0
2018-12-07 09:07:07 +03:00
-- HsFunTy
f5 :: String -> Int -> Int
2018-12-07 09:07:07 +03:00
f5 _ _ = head f6
-- HsListTy
f6 :: [Int]
f6 = [fst f7]
-- HsTupleTy
f7 :: (Int, Int)
f7 = (fromJust f8, fromJust f8)
-- HsAppTy
f8 :: Maybe Int
2021-05-25 05:24:13 +03:00
f8 = Just f9
f9 :: Int
f9 = f10
where
f10 :: Int
f10 = fError
2018-12-07 09:07:07 +03:00
-- HsTyVar
fError :: Int
fError = error "fError"
```
This example get error:
```shell
2021-05-25 05:24:13 +03:00
$ cabal build
2018-12-07 09:07:07 +03:00
example/Main.hs:15:7: error:
Not in scope: type constructor or class HasCallStack
|
15 | f3 :: HasCallStack => Int
| ^^^^^^^^^^^^
```
Yes, add `import GHC.Stack` to above example.
Fix and rebuild!
```shell
2021-05-21 10:22:52 +03:00
$ cabal run example -v0
2018-12-07 09:07:07 +03:00
example: fError
CallStack (from HasCallStack):
2021-05-25 05:24:13 +03:00
error, called at example/Main.hs:47:10 in main:Main
2018-12-07 09:07:07 +03:00
```
Hmm, it is not useful. But, you will to be happy when enable this plugin.
```cabal
ghc-options:
-fplugin=StackTrace.Plugin
```
```shell
2021-05-21 10:22:52 +03:00
$ cabal run example -v0
2018-12-07 09:07:07 +03:00
example: fError
CallStack (from HasCallStack):
2021-05-25 05:24:13 +03:00
error, called at example/Main.hs:47:10 in main:Main
fError, called at example/Main.hs:43:11 in main:Main
f10, called at example/Main.hs:40:6 in main:Main
f9, called at example/Main.hs:37:11 in main:Main
2021-05-21 10:22:52 +03:00
f8, called at example/Main.hs:33:16 in main:Main
f7, called at example/Main.hs:29:11 in main:Main
f6, called at example/Main.hs:25:15 in main:Main
f5, called at example/Main.hs:21:8 in main:Main
f4, called at example/Main.hs:17:6 in main:Main
f3, called at example/Main.hs:13:6 in main:Main
f2, called at example/Main.hs:10:6 in main:Main
f1, called at example/Main.hs:7:14 in main:Main
main, called at example/Main.hs:7:1 in main:Main
2018-12-07 09:07:07 +03:00
```
2020-01-18 07:29:39 +03:00
Great!!!