phino-0.0.100: src/Filter.hs
-- SPDX-FileCopyrightText: Copyright (c) 2025 Objectionary.com
-- SPDX-License-Identifier: MIT
module Filter (include, exclude) where
import AST
import Misc
import Rewriter
exclude' :: Expression -> [Expression] -> Expression
exclude' expr [] = expr
exclude' expr@(ExFormation _) (fqn : remaining) = case fqnToAttrs fqn of
Just fqn' -> exclude' (excludedFormation expr fqn') remaining
_ -> expr
where
excludedFormation :: Expression -> [Attribute] -> Expression
excludedFormation (ExFormation bindings) [at] = ExFormation [bd | bd <- bindings, attributeFromBinding bd /= Just at]
excludedFormation (ExFormation bindings) atts = ExFormation (excludedBindings bindings atts)
where
excludedBindings :: [Binding] -> [Attribute] -> [Binding]
excludedBindings [] _ = []
excludedBindings (bd@(BiTau at' form@(ExFormation _)) : bs) as@(at'' : rs)
| at' == at'' = BiTau at' (excludedFormation form rs) : bs
| otherwise = bd : excludedBindings bs as
excludedBindings (bd : bs) as = bd : excludedBindings bs as
excludedFormation e _ = e
exclude' expr _ = expr
exclude :: [Rewritten] -> [Expression] -> [Rewritten]
exclude [] _ = []
exclude rs [] = rs
exclude ((expr, maybeRule) : rest) exprs = (exclude' expr exprs, maybeRule) : exclude rest exprs
include' :: Expression -> Expression -> Expression
include' ex@(ExFormation _) fqn =
let def = ExFormation [BiVoid AtRho]
in case fqnToAttrs fqn of
Just fqn' -> case includedFormation ex fqn' of
Just e -> e
_ -> def
_ -> def
where
includedFormation :: Expression -> [Attribute] -> Maybe Expression
includedFormation (ExFormation bindings) [at] =
let bs = [bd | bd <- bindings, attributeFromBinding bd == Just at]
in if null bs then Nothing else Just (ExFormation (withVoidRho bs))
includedFormation (ExFormation bindings) atts = includedBindings bindings atts >>= (Just . ExFormation . (: [BiVoid AtRho]))
where
includedBindings :: [Binding] -> [Attribute] -> Maybe Binding
includedBindings ((BiTau at' form@(ExFormation _)) : bs) as@(at'' : rs)
| at' == at'' = includedFormation form rs >>= Just . BiTau at'
| otherwise = includedBindings bs as
includedBindings _ _ = Nothing
includedFormation _ _ = Nothing
include' _ _ = ExFormation [BiVoid AtRho]
include :: [Rewritten] -> [Expression] -> [Rewritten]
include [] _ = []
include rs [] = rs
include ((expr, maybeRule) : rest) (fqn : _) = (include' expr fqn, maybeRule) : include rest [fqn]