aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2019-01-26 23:46:55 +0100
committertv <tv@krebsco.de>2019-01-26 23:46:55 +0100
commitbb4813de9bcd49a37f8e8871311e7201c6c7e29a (patch)
tree526f17adef215398b424fc1104aa011b7130c77e
parent0395a9d9815d7d82469f0064738bef80ac87dbe3 (diff)
Reaktor.Plugins.System: compile hPattern once
-rw-r--r--reaktor2.cabal1
-rw-r--r--src/Reaktor/Plugins/System.hs51
-rw-r--r--src/Reaktor/Plugins/System/Internal.hs7
3 files changed, 21 insertions, 38 deletions
diff --git a/reaktor2.cabal b/reaktor2.cabal
index 7a3ee0b..d9d3a39 100644
--- a/reaktor2.cabal
+++ b/reaktor2.cabal
@@ -22,7 +22,6 @@ executable reaktor
network,
network-simple,
network-simple-tls,
- pcre-heavy,
pcre-light,
process,
random,
diff --git a/src/Reaktor/Plugins/System.hs b/src/Reaktor/Plugins/System.hs
index 249909f..c6c0ef3 100644
--- a/src/Reaktor/Plugins/System.hs
+++ b/src/Reaktor/Plugins/System.hs
@@ -13,6 +13,7 @@ import Control.Exception
import qualified Data.HashMap.Lazy as M
import qualified Data.List as L
import qualified Data.Text.Extended as T
+import qualified Data.Text.Encoding as T
import qualified Data.Text.IO as T
import qualified Data.Vector as V
import Prelude.Extended
@@ -28,7 +29,6 @@ import System.Process
import System.Posix.Process (getProcessGroupIDOf)
import System.Posix.Signals (Signal,signalProcessGroup,killProcess)
import System.Posix.Types (ProcessGroupID)
-import qualified Text.Regex.PCRE.Heavy as RE
import qualified Text.Regex.PCRE.Light as RE
@@ -51,30 +51,24 @@ run1 Config{..} Actions{..} Hook{..} prefix msgtarget text = do
nick <- aGetNick
let
+ match =
+ case hPattern of
+ Just p -> \s ->
+ fmap (map T.decodeUtf8) $
+ RE.match p (T.encodeUtf8 s) [RE.exec_no_utf8_check]
+ Nothing -> const Nothing
+
isActivated =
case hActivate of
- Always -> Just ""
- Match ->
- case hPattern of
- Nothing -> Nothing
- Just pat ->
- let
- result = RE.scan patternRE text
- patternRE = RE.compile pat [RE.utf8]
- in
- if null result
- then Nothing
- else Just ""
+ Always -> pure ""
+ Match -> match text >> pure ""
Query ->
+ let me = nick <> ":" in
if
- | T.isPrefixOf (nick <> ":") text ->
- Just (nick <> ":")
- | T.isPrefixOf "*:" text ->
- Just "*:"
- | isQuery ->
- Just ""
- | otherwise ->
- Nothing
+ | isQuery -> pure ""
+ | T.isPrefixOf me text -> pure me
+ | T.isPrefixOf "*:" text -> pure "*:"
+ | otherwise -> mempty
audience = if isQuery then from else msgtarget
@@ -90,19 +84,8 @@ run1 Config{..} Actions{..} Hook{..} prefix msgtarget text = do
cmdline = T.dropWhile (==' ') $ T.drop (T.length trigger) text
resultPrefix = if isQuery then [] else [from <> ":"]
- parseCommandLine' pat s =
- if null result then [] else snd (head result)
- where
- result = RE.scan patternRE s
- patternRE = RE.compile pat [RE.utf8]
-
- captures =
- V.fromList $
- case hPattern of
- Nothing -> [] -- TODO everything?
- Just pat -> parseCommandLine' pat cmdline
-
- capture i = captures V.!? (i - 1)
+ captures = V.fromList $ fromMaybe [] (match cmdline)
+ capture i = captures V.!? i
name =
case hCommand of
diff --git a/src/Reaktor/Plugins/System/Internal.hs b/src/Reaktor/Plugins/System/Internal.hs
index 45b7329..aa60452 100644
--- a/src/Reaktor/Plugins/System/Internal.hs
+++ b/src/Reaktor/Plugins/System/Internal.hs
@@ -5,7 +5,8 @@ module Reaktor.Plugins.System.Internal where
import Prelude.Extended
import Data.Aeson
import Reaktor ()
-
+import Text.Regex.PCRE.Light (Regex)
+import qualified Text.Regex.PCRE.Light as RE
-- TODO this needs better names :)
@@ -46,7 +47,7 @@ instance FromJSON Config where
data Hook = Hook
{ hActivate :: Activate
- , hPattern :: Maybe ByteString
+ , hPattern :: Maybe Regex
, hCommand :: CaptureOr Command
, hArguments :: [CaptureOr Text]
, hWorkDir :: Maybe FilePath
@@ -60,7 +61,7 @@ instance FromJSON Hook where
Object v ->
Hook
<$> v .:? "activate" .!= Query
- <*> v .:? "pattern"
+ <*> (fmap (flip RE.compile [RE.utf8]) <$> v .:? "pattern")
<*> v .: "command"
<*> v .:? "arguments" .!= []
<*> v .:? "workdir"