stan-0.0.0.0: src/Stan/Analysis/Analyser.hs
{-# LANGUAGE BangPatterns #-}
{- |
Copyright: (c) 2020 Kowainik
SPDX-License-Identifier: MPL-2.0
Maintainer: Kowainik <xrom.xkov@gmail.com>
Analysing functions by 'InspectionAnalysis' for the corresponding
'Inspection'.
-}
module Stan.Analysis.Analyser
( analysisByInspection
) where
import Extensions (ExtensionsResult)
import GHC.LanguageExtensions.Type (Extension (Strict, StrictData))
import Slist (Slist, slist)
import Stan.Core.Id (Id)
import Stan.Core.List (nonRepeatingPairs)
import Stan.FileInfo (isExtensionDisabled)
import Stan.Ghc.Compat (RealSrcSpan, isSymOcc, nameOccName, occNameString)
import Stan.Hie (eqAst)
import Stan.Hie.Compat (HieAST (..), HieASTs (..), HieFile (..), Identifier, NodeInfo (..),
TypeIndex)
import Stan.Hie.MatchAst (hieMatchPatternAst)
import Stan.Inspection (Inspection (..), InspectionAnalysis (..))
import Stan.NameMeta (NameMeta, ghcPrimNameFrom)
import Stan.Observation (Observations, mkObservation)
import Stan.Pattern.Ast (Literal (..), PatternAst (..), anyNamesToPatternAst, case', constructor,
dataDecl, fixity, fun, guardBranch, lambdaCase, lazyField, literalPat,
opApp, patternMatchArrow, patternMatchBranch, patternMatch_, rhs, tuple,
typeSig)
import Stan.Pattern.Edsl (PatternBool (..))
import qualified Data.HashMap.Strict as HM
import qualified Data.Map.Strict as Map
import qualified Data.Set as Set
import qualified Slist as S
{- | Create analysing function for 'Inspection' by pattern-matching
over 'InspectionAnalysis'.
-}
analysisByInspection
:: ExtensionsResult
-> Inspection
-> HieFile
-> Observations
analysisByInspection exts Inspection{..} = case inspectionAnalysis of
FindAst patAst -> analyseAst inspectionId patAst
Infix -> analyseInfix inspectionId
LazyField -> memptyIfFalse
(isExtensionDisabled StrictData exts && isExtensionDisabled Strict exts)
(analyseLazyFields inspectionId)
BigTuples -> analyseBigTuples inspectionId
PatternMatchOn_ -> analysePatternMatch_ inspectionId
UseCompare -> analyseCompare inspectionId
{- | Check for occurrences of the specified function given via 'NameMeta'.
-}
analyseAst
:: Id Inspection
-> PatternAst
-> HieFile
-> Observations
analyseAst insId patAst hie =
mkObservation insId hie <$> analyseAstWith (createMatch patAst hie) hie
{- | Check for big tuples (size >= 4) in the following places:
* Type signatures: foo :: (Int, Int, Int, Int)
* Literals: (True, 0, [], Nothing)
-}
analyseBigTuples
:: Id Inspection
-> HieFile
-> Observations
analyseBigTuples insId hie =
S.map (mkObservation insId hie . nodeSpan)
$ S.filter isBigTuple
$ analyseAstWith (createMatchAst tuple hie) hie
where
isBigTuple :: HieAST TypeIndex -> Bool
isBigTuple Node{..} = case nodeChildren of
_:_:_:_:_ -> True
_lessThan4 -> False
{- | Find usages of multiple comparison operators and suggest using
'compare'. Currently, handles the following cases:
* Guards
The algorithm is to find all guards, filter them by usage of
comparison operators and find matches.
-}
analyseCompare
:: Id Inspection
-> HieFile
-> Observations
analyseCompare insId hie =
mkObservation insId hie <$> analyseAstWith matchComparisonGuards hie
where
matchComparisonGuards :: HieAST TypeIndex -> Slist RealSrcSpan
matchComparisonGuards node = memptyIfFalse
(hieMatchPatternAst hie node fun)
$ let guards = mapMaybe extractComparisonGuard (nodeChildren node)
in memptyIfFalse (hasManyCompares guards) (S.one $ nodeSpan node)
{- Extract left argument, name of a comparison operator and right
argument from a guard.
-}
extractComparisonGuard
:: HieAST TypeIndex
-> Maybe (HieAST TypeIndex, HieAST TypeIndex)
extractComparisonGuard node = do
-- guard starts with GRHS annotation
guard $ hieMatchPatternAst hie node rhs
-- guard predicate is a first son
stmt:_ <- Just $ nodeChildren node
-- check if it's a guard
guard $ hieMatchPatternAst hie stmt guardBranch
-- check if it's an operator
guard $ hieMatchPatternAst hie stmt $ opApp (?) opsPat (?)
-- extract comparison
x:_opAst:y:_ <- Just $ nodeChildren stmt
pure (x, y)
-- pattern for any comparison operator
opsPat :: PatternAst
opsPat = anyNamesToPatternAst $ le :| [leq, eq, ge, geq]
le, leq, eq, ge, geq :: NameMeta
le = opName "<"
leq = opName "<="
eq = opName "=="
ge = opName ">"
geq = opName ">="
opName :: Text -> NameMeta
opName = (`ghcPrimNameFrom` "GHC.Classes")
-- return True if any two pairs perform comparison of similar things
hasManyCompares :: [(HieAST TypeIndex, HieAST TypeIndex)] -> Bool
hasManyCompares = any (uncurry matchingComparions) . nonRepeatingPairs
matchingComparions
:: (HieAST TypeIndex, HieAST TypeIndex)
-> (HieAST TypeIndex, HieAST TypeIndex)
-> Bool
matchingComparions (a, b) (x, y) =
(eqAst hie a x && eqAst hie b y) || (eqAst hie a y && eqAst hie b x)
{- | Check for occurrences lazy fields in all constructors. Ignores
@newtype@s. Currently HIE Ast doesn't have information whether the
data type is @newtype@ or not. So the algorithm ignores all data types
with a single constructor and single field inside that constructor.
-}
analyseLazyFields
:: Id Inspection
-> HieFile
-> Observations
analyseLazyFields insId hie =
mkObservation insId hie <$> analyseAstWith matchLazyField hie
where
matchLazyField :: HieAST TypeIndex -> Slist RealSrcSpan
matchLazyField node = memptyIfFalse
-- return empty list if it's not a data type
(hieMatchPatternAst hie node dataDecl)
-- get list of all constructors
$ let constructors = filter
(\n -> hieMatchPatternAst hie n constructor)
(nodeChildren node)
in case constructors of
-- no constructors = not observations
[] -> mempty
-- single constructor
[c] -> S.concatMap matchField $ extractFields False c
-- multiple constructors = analyse everything
cs -> S.concatMap (S.concatMap matchField . extractFields True) cs
-- Extract fields as AST nodes. Return empty list if only one field
-- (as a workaround for the @newtype@ problem)
--
-- record constructors have 2 children:
-- 1. Constructor name.
-- 2. Dummy child with all fields as childrens
-- plain constructors have constructor name and children in the same list
extractFields :: Bool -> HieAST TypeIndex -> [HieAST TypeIndex]
extractFields hasManyCtors ctor = case drop 1 $ nodeChildren ctor of
[] -> [] -- no fields
[n] -> -- single field, maybe dummy record node
if isDummyRecordNode n
then case nodeChildren n of
[] -> []
[field] -> [field | hasManyCtors]
fields -> fields
else [n | hasManyCtors]
fields -> fields -- plain constructor
where
-- simple check for the dummy AST node
isDummyRecordNode :: HieAST TypeIndex -> Bool
isDummyRecordNode = Set.null . nodeAnnotations . nodeInfo
-- matches record fields non-recursively
matchField :: HieAST TypeIndex -> Slist RealSrcSpan
matchField = createMatch lazyField hie
{- | Check for occurrences of pattern matching on @_@ for sum types (except
literals).
-}
analysePatternMatch_ :: Id Inspection -> HieFile -> Observations
analysePatternMatch_ insId hie =
mkObservation insId hie <$> analyseAstWith matchPatternMatch hie
where
matchPatternMatch :: HieAST TypeIndex -> Slist RealSrcSpan
matchPatternMatch node = memptyIfFalse
-- return empty list if it's not a case or lambda case
(hieMatchPatternAst hie node $ lambdaCase ||| case')
-- get list of all case branches
$ case nodeChildren node of
-- no branches = not observations
[] -> mempty
-- lambda case, first kid is pattern matching
[pm] -> analyseBranches pm
-- case, first kid is @case exp of@, the second is pattern matching
_:pm:_ -> analyseBranches pm
{- Check the pattern matching child on some particular expressions.
-}
analyseBranches :: HieAST TypeIndex -> Slist RealSrcSpan
analyseBranches pm = case nodeChildren pm of
-- if there is no children = no observations
[] -> mempty
-- we need to check first and all other children separately
-- see 'isFirstPatternMatchBranchOk' comment to understand the first
-- child's rules.
c:cs -> memptyIfFalse (isFirstPatternMatchBranchOk c) $
{- if the first child satisfies rules of the first pattern matching
branch, then we need to find the child with pattern matching on @_@.
If there is no such expression = all is good.
-}
case find (\x -> hieMatchPatternAst hie x (patternMatch_ (?))) cs of
Nothing -> mempty
Just e -> S.one (nodeSpan e)
{- The first pattern matching branch should not:
1. Be empty (makes no sense)
2. Be a literal pattern matching (e.g. on 'Int's or 'String's)
In all other cases we can continue our matching checks with other children.
-}
isFirstPatternMatchBranchOk :: HieAST TypeIndex -> Bool
isFirstPatternMatchBranchOk c = hieMatchPatternAst hie c patternMatchBranch &&
case takeWhile isNotMatchArrow $ nodeChildren c of
[] -> False
[x] -> hieMatchPatternAst hie x notLiteral
_:_ -> True
where
isNotMatchArrow :: HieAST TypeIndex -> Bool
isNotMatchArrow n = hieMatchPatternAst hie n $ neg $ patternMatchArrow (?)
notLiteral :: PatternAst
notLiteral = neg
-- general literal expression
( PatternAstConstant AnyLiteral
-- since GHC-8.10 expression for literal in pattern matching
||| literalPat
)
{- | Analyse HIE AST to find all operators which lack explicit fixity
declaration.
The algorithm is the following:
1. Traverse AST and discover all top-level operators and @infix@
declarations in a single pass.
2. Compare two resulting sets to find out operators without @infix@
declaration.
-}
analyseInfix
:: Id Inspection
-> HieFile
-> Observations
analyseInfix insId hie =
let opDecls = analyseAstWith (matchInfix <> matchOperator) hie
(fixities, topOperators) = partitionDecls opDecls
operatorsWithoutFixity = HM.difference topOperators fixities
in mkObservation insId hie <$> slist (toList operatorsWithoutFixity)
where
-- returns list of operator names defined in a single fixity declaration:
-- infix 5 ***, +++, ???
matchInfix :: HieAST TypeIndex -> Slist OperatorDecl
matchInfix node@Node{..} = memptyIfFalse
(hieMatchPatternAst hie node fixity)
(S.concatMap nodeIds nodeChildren)
-- singleton or empty list with the top-level operator definition
matchOperator :: HieAST TypeIndex -> Slist OperatorDecl
matchOperator node@Node{..} = memptyIfFalse
(hieMatchPatternAst hie node typeSig)
(maybeToMonoid $ viaNonEmpty (extractOperatorName . head) nodeChildren)
-- first child of a parent is a name of a function/operator
-- return AST node identifier names as a sized list of texts
nodeIds :: HieAST TypeIndex -> Slist OperatorDecl
nodeIds =
S.concatMap identifierName
. Map.keys
. nodeIdentifiers
. nodeInfo
identifierName :: Identifier -> Slist OperatorDecl
identifierName = \case
Left _ -> mempty
Right name -> S.one $ Fixity $ toText $ occNameString $ nameOccName name
extractOperatorName :: HieAST TypeIndex -> Slist OperatorDecl
extractOperatorName Node{..} =
S.concatMap (topLevelOperatorName nodeSpan)
$ Map.keys
$ nodeIdentifiers nodeInfo
topLevelOperatorName :: RealSrcSpan -> Identifier -> Slist OperatorDecl
topLevelOperatorName srcSpan = \case
Left _ -> mempty
Right name ->
let occName = nameOccName name
in memptyIfFalse
(isSymOcc occName) -- check if operator
(S.one $ Operator (toText $ occNameString occName) srcSpan)
-- | Either top-level operator or fixity declaration
data OperatorDecl
= Fixity !Text
-- | Operator name with its position to display later
| Operator !Text !RealSrcSpan
{- | Partition a foldable of operator declarations into two maps:
1. Fixity declarations (mapped to @()@).
2. Top-level operator names (mapped to their source positions.
'Map' is used to be able to use the nice @merge@ function.
-}
partitionDecls
:: Foldable f
=> f OperatorDecl
-> (HashMap Text (), HashMap Text RealSrcSpan)
partitionDecls = foldl' insertDecl mempty
where
insertDecl
:: (HashMap Text (), HashMap Text RealSrcSpan)
-> OperatorDecl
-> (HashMap Text (), HashMap Text RealSrcSpan)
insertDecl (!fixities, !topOperators) = \case
Fixity name -> (HM.insert name () fixities, topOperators)
Operator name srcSpan -> (fixities, HM.insert name srcSpan topOperators)
{- | Analyses the whole AST starting from the very top.
-}
analyseAstWith
:: forall a
. (HieAST TypeIndex -> Slist a)
-- ^ Function to match AST node to some arbitrary type and return a
-- sized list of matched elements
-> HieFile
-> Slist a
analyseAstWith match = findNodes . hie_asts
where
findNodes :: HieASTs TypeIndex -> Slist a
findNodes =
S.concatMap (matchAstWith match)
. Map.elems
. getAsts
{- | Recursively match AST nodes starting from a given AST.
-}
matchAstWith
:: forall a
. (HieAST TypeIndex -> Slist a)
-- ^ Function to match AST node to some arbitrary type and return a
-- sized list of matched elements
-> HieAST TypeIndex
-> Slist a
matchAstWith match = matchAst
where
matchAst :: HieAST TypeIndex -> Slist a
matchAst node@Node{..} =
match node <> S.concatMap matchAst nodeChildren
-- | Like 'createMatchAst' but returns source spans of AST nodes.
createMatch :: PatternAst -> HieFile -> (HieAST TypeIndex -> Slist RealSrcSpan)
createMatch patAst hie = fmap nodeSpan . createMatchAst patAst hie
{- | Create a non-recursive matching function for 'PatternAst' that
returns sized list of nodes that match this pattern.
* If the pattern matches 'Node', return it
* Otherwise return empty list
-}
createMatchAst
:: PatternAst
-> HieFile
-> (HieAST TypeIndex -> Slist (HieAST TypeIndex))
createMatchAst patAst hie node =
memptyIfFalse (hieMatchPatternAst hie node patAst) (S.one node)