Commit ebe4e0a3 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FACTO+RENAME] RandomText module.

parent e001b112
{-|
Module : RandomText
Description : Referential random of texts
Copyright : (c) CNRS / Alexandre Delanoe, 2017
License : AGPL + CECILL v3
Maintainer : alexandre.delanoe@iscpif.fr
Stability : experimental
Portability : POSIX
How semantic emerge from contextualized randomness can be experimented
with these simple functions;
randomSentences: randomizes sentences in a paragraph.
randomWords : randomizes words in a sentence.
randomChars : randomizes chars in a word.
TODO: add some tests as examples.
-}
module RandomText where module RandomText where
import Prelude import Prelude
import Control.Monad.Eff (Eff(..)) import Control.Monad.Eff (Eff(..))
import Control.Monad.Eff.Random (RANDOM(..), randomInt) import Control.Monad.Eff.Random (RANDOM(..), randomInt)
import Data.Array (length, (!!), head, tail, take, takeEnd, drop, dropEnd)
import Data.Maybe (Maybe(Nothing, Just), fromJust) import Data.Maybe (Maybe(Nothing, Just), fromJust)
import Data.String (toCharArray, fromCharArray) import Data.Array ( length, (!!), filter, foldl
import Data.Tuple (Tuple(..)) , head, tail
, take, takeEnd
, drop, dropEnd
)
import Data.String ( toCharArray, fromCharArray
, split, Pattern(..)
)
import Data.Tuple.Nested ((/\)) import Data.Tuple.Nested ((/\))
import Partial (crash) import Partial (crash)
import Partial.Unsafe (unsafePartial) import Partial.Unsafe (unsafePartial)
import Unsafe.Coerce (unsafeCoerce) import Unsafe.Coerce (unsafeCoerce)
-------------------------------------------------------------------
randomSentences :: forall a. String -> Eff ( random :: RANDOM | a ) String
randomSentences ss = case (length (sentences ss)) >= 5 of
true -> foldl (\a b -> a <> "." <> b) "" <$> randomPart (sentences ss)
_ -> pure ss
data RanR = RanR { l :: Array Char, r :: Array Char}
instance showRanR :: Show RanR where randomWords :: forall a. String -> Eff ( random :: RANDOM | a ) String
show (RanR {l:l', r:r'}) = show $ (show l') /\ (show r') randomWords ws = case (length (words ws)) >= 5 of
true -> foldl (\a b -> a <> " " <> b) "" <$> randomPart (words ws)
_ -> pure ws
rando (RanR {l:x,r:[]}) = pure $ RanR {l:x,r:[]} randomChars :: forall a. String -> Eff ( random :: RANDOM | a ) String
rando (RanR {l:x,r:xs}) = do randomChars word = case (length (toCharArray word)) >= 5 of
Ran {l:x',r:xs'} <- randomIt xs true -> fromCharArray <$> randomPart (toCharArray word)
rando (RanR {l:(x <> [x']), r: xs'}) _ -> pure word
-------------------------------------------------------------------
words :: String -> Array String
words sentence = filter ((/=) "") $ split (Pattern " ") sentence
remove :: forall t5. Int -> Array t5 -> Array t5 sentences :: String -> Array String
remove n [] = [] sentences paragraph = filter ((/=) "") $ split (Pattern ".") paragraph
remove n xs = unsafePartial $ case n of -------------------------------------------------------------------
0 -> fromJust $ tail xs
_ -> (take n xs) <> (drop (n+1) xs)
data Ran = Ran { l :: Char, r :: Array Char} data RandomWheel a = RandomWheel { before :: Array a
, during :: a
, after :: Array a
}
instance showRan :: Show Ran where randomPart :: forall a b. Array b -> Eff ( random :: RANDOM | a ) (Array b)
show (Ran {l:l', r:r'}) = show $ (show l') /\ (show r') randomPart array = randomArrayPoly middle >>= \(middle') -> pure ( start <> middle' <> end)
where
start = take 2 array
middle = dropEnd 2 $ drop 2 array
end = takeEnd 2 array
randomIt :: forall t46. Array Char -> Eff ( random :: RANDOM | t46 ) Ran
randomIt ar = unsafePartial $ do
-- let ar' = toCharArray ar
n <- randomInt 0 (length ar - 1)
let maybeChar = (ar !! n ) randomArrayPoly :: forall a b. Array a -> Eff ( random :: RANDOM | b ) (Array a)
let rest = remove n ar randomArrayPoly wheel = case head wheel of
Nothing -> pure []
Just wheel' -> randomWheel (RandomWheel { before:wheel, during:wheel', after:[]})
>>= \(RandomWheel rand) -> (pure rand.after)
case maybeChar of randomWheel :: forall a b. RandomWheel b -> Eff ( random :: RANDOM | a ) (RandomWheel b)
Nothing -> randomWheel (RandomWheel {before:[], during:d, after:a}) =
crash "it should not happen" pure (RandomWheel {before:[], during:d, after:a})
Just char ->
pure $ Ran {l : char, r : rest}
randomize :: forall t98. String -> Eff ( random :: RANDOM | t98) String randomWheel (RandomWheel {before:b, during:d, after:a}) = do
randomize string = do RandomWheel {before:b', during:d', after:a'} <- randomArray b
RanR rr <- rando (RanR {l:[], r:(toCharArray string)}) randomWheel $ RandomWheel {before:b', during:d', after:(a <> [d'])}
pure $ fromCharArray (rr.l)
randomize' :: forall t98. (Array Char) -> Eff ( random :: RANDOM | t98) (Array Char) randomArray :: forall a b. Array b -> Eff ( random :: RANDOM | a ) (RandomWheel b)
randomize' string = do randomArray array = unsafePartial $ do
RanR rr <- rando (RanR {l:[], r:string}) n <- randomInt 0 (length array - 1)
pure rr.l
let maybeDuring = (array !! n)
randomText :: forall t114. String -> Eff( random :: RANDOM| t114) String case maybeDuring of
randomText txt = randomize' middle >>= \middle' -> pure $ fromCharArray ( start <> middle' <> end) Nothing ->
where crash "[ERROR] It should never happen."
txt' = toCharArray txt Just during ->
start = take 2 txt' pure $ RandomWheel { before : remove n array
middle = dropEnd 2 $ drop 2 txt' , during : during
end = takeEnd 2 txt' , after : []
}
testText :: forall t114. String -> Eff( random :: RANDOM| t114) String
testText txt = case (length (toCharArray txt)) >= 5 of
true -> randomText txt remove :: forall a. Int -> Array a -> Array a
_ -> pure txt remove n [] = []
remove n xs = unsafePartial $ case n of
0 -> fromJust $ tail xs
_ -> (take n xs) <> (drop (n+1) xs)
-------------------------------------------------------------------
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment