{-# LANGUAGE BangPatterns #-} {-# LANGUAGE CPP #-} {-# LANGUAGE MagicHash #-} {-# LANGUAGE MultiWayIf #-} {-# LANGUAGE PackageImports #-} {-# LANGUAGE RankNTypes #-} {-# LANGUAGE TupleSections #-} {-# LANGUAGE UnboxedTuples #-} {-# LANGUAGE ViewPatterns #-} -- | -- Module : Data.ByteString.Short.Word16 -- Copyright : © 2021 Julian Ospald -- License : MIT -- -- Maintainer : Julian Ospald -- Stability : experimental -- Portability : portable -- -- ShortByteStrings encoded as UTF16-LE, suitable for windows FFI calls. -- -- Word16s are *always* in BE encoding (both input and output), so e.g. 'pack' -- takes a list of BE encoded @[Word16]@ and produces a UTF16-LE encoded ShortByteString. -- -- Likewise, 'unpack' takes a UTF16-LE encoded ShortByteString and produces a list of BE encoded @[Word16]@. -- -- Indices and lengths are always in respect to Word16, not Word8. -- -- All functions will error out if the input string is not a valid UTF16 stream (uneven number of bytes). -- So use this module with caution. module Data.ByteString.Short.Word16 ( -- * Types ShortByteString, -- * Introducing and eliminating 'ShortByteString's empty, singleton, pack, unpack, fromShort, toShort, -- * Basic interface snoc, cons, append, last, tail, head, init, null, length, -- * Transforming ShortByteStrings map, reverse, intercalate, -- * Reducing 'ShortByteString's (folds) foldl, foldl', foldl1, foldl1', foldr, foldr', foldr1, foldr1', -- ** Special folds all, any, concat, -- ** Generating and unfolding ByteStrings replicate, unfoldr, unfoldrN, -- * Substrings -- ** Breaking strings take, takeEnd, takeWhile, takeWhileEnd, drop, dropEnd, dropWhile, dropWhileEnd, breakEnd, break, span, spanEnd, splitAt, split, splitWith, stripSuffix, stripPrefix, -- * Predicates isInfixOf, isPrefixOf, isSuffixOf, -- * Searching ShortByteStrings -- ** Searching by equality elem, -- ** Searching with a predicate find, filter, partition, -- * Indexing ShortByteStrings index, indexMaybe, (!?), elemIndex, elemIndices, count, findIndex, findIndices, -- * Low level conversions -- ** Packing 'CString's and pointers packCWString, packCWStringLen, newCWString, -- ** Using ShortByteStrings as 'CString's useAsCWString, useAsCWStringLen ) where import Data.ByteString.Short ( append, intercalate, isInfixOf, isPrefixOf, isSuffixOf, stripSuffix, stripPrefix, fromShort, toShort, concat ) import Data.ByteString.Short.Internal import Data.Word16 #if !MIN_VERSION_base(4,13,0) import Data.Monoid ((<>)) #endif import Data.Bifunctor ( first, bimap ) import Prelude hiding ( all , any , reverse , break , concat , drop , dropWhile , elem , filter , foldl , foldl1 , foldr , foldr1 , head , init , last , length , map , null , replicate , span , splitAt , tail , take , takeWhile ) import GHC.List (errorEmptyList) import qualified Data.Foldable as Foldable import Data.ByteString.Short ( ShortByteString , empty , null ) import GHC.Exts import GHC.ST ( ST ) import qualified "bytestring" Data.ByteString.Short.Internal as BS import qualified Data.List as List -- ----------------------------------------------------------------------------- -- Introducing and eliminating 'ShortByteString's -- | /O(1)/ Convert a 'Word16' into a 'ShortByteString' singleton :: Word16 -> ShortByteString singleton = \w -> create 2 (\mba -> writeWord16Array mba 0 w) {-# INLINE [1] singleton #-} -- | /O(n)/. Convert a list into a 'ShortByteString' pack :: [Word16] -> ShortByteString pack = packWord16 -- | /O(n)/. Convert a 'ShortByteString' into a list. unpack :: ShortByteString -> [Word16] unpack = unpackWord16 . assertEven -- --------------------------------------------------------------------- -- Basic interface -- | This is the number of 'Word16', not 'Word8'. length :: ShortByteString -> Int length = (`div` 2) . BS.length . assertEven infixr 5 `cons` --same as list (:) infixl 5 `snoc` -- | /O(n)/ Append a Word16 to the end of a 'ShortByteString' -- -- Note: copies the entire byte array snoc :: ShortByteString -> Word16 -> ShortByteString snoc = \(assertEven -> sbs) c -> let l = BS.length sbs nl = l + 2 in create nl $ \mba -> do copyByteArray (asBA sbs) 0 mba 0 l writeWord16Array mba l c {-# INLINE snoc #-} -- | /O(n)/ 'cons' is analogous to (:) for lists. -- -- Note: copies the entire byte array cons :: Word16 -> ShortByteString -> ShortByteString cons c = \(assertEven -> sbs) -> let l = BS.length sbs nl = l + 2 in create nl $ \mba -> do writeWord16Array mba 0 c copyByteArray (asBA sbs) 0 mba 2 l {-# INLINE cons #-} -- | /O(1)/ Extract the last element of a ShortByteString, which must be finite and at least one Word16. -- An exception will be thrown in the case of an empty ShortByteString. last :: ShortByteString -> Word16 last = \(assertEven -> sbs) -> indexWord16Array (asBA sbs) (BS.length sbs - 2) {-# INLINE last #-} -- | /O(n)/ Extract the elements after the head of a ShortByteString, which must at least one Word16. -- An exception will be thrown in the case of an empty ShortByteString. -- -- Note: copies the entire byte array tail :: ShortByteString -> ShortByteString tail = \(assertEven -> sbs) -> let l = BS.length sbs nl = l - 2 in if | l <= 0 -> sbs | l <= 2 -> empty | otherwise -> create nl $ \mba -> copyByteArray (asBA sbs) 2 mba 0 nl {-# INLINE tail #-} -- | /O(1)/ Extract the first element of a ShortByteString, which must be at least one Word16. -- An exception will be thrown in the case of an empty ShortByteString. head :: ShortByteString -> Word16 head = \(assertEven -> sbs) -> indexWord16Array (asBA sbs) 0 {-# INLINE head #-} -- | /O(n)/ Return all the elements of a 'ShortByteString' except the last one. -- An exception will be thrown in the case of an empty ShortByteString. -- -- Note: copies the entire byte array init :: ShortByteString -> ShortByteString init = \(assertEven -> sbs) -> let l = BS.length sbs nl = l - 2 in if | l <= 0 -> sbs | l <= 2 -> empty | otherwise -> create nl $ \mba -> copyByteArray (asBA sbs) 0 mba 0 nl {-# INLINE init #-} -- --------------------------------------------------------------------- -- Transformations -- | /O(n)/ 'map' @f xs@ is the ShortByteString obtained by applying @f@ to each -- element of @xs@. map :: (Word16 -> Word16) -> ShortByteString -> ShortByteString map f = \(assertEven -> sbs) -> let l = BS.length sbs ba = asBA sbs in create l (\mba -> go ba mba 0 l) where go :: BA -> MBA s -> Int -> Int -> ST s () go !ba !mba !i !l | i >= l = return () | otherwise = do let w = indexWord16Array ba i writeWord16Array mba i (f w) go ba mba (i+2) l -- | /O(n)/ 'reverse' @xs@ efficiently returns the elements of @xs@ in reverse order. reverse :: ShortByteString -> ShortByteString reverse = \(assertEven -> sbs) -> let l = BS.length sbs ba = asBA sbs in create l (\mba -> go ba mba 0 l) where go :: BA -> MBA s -> Int -> Int -> ST s () go !ba !mba !i !l | i >= l = return () | otherwise = do let w = indexWord16Array ba i writeWord16Array mba (l - 2 - i) w go ba mba (i+2) l -- --------------------------------------------------------------------- -- Special folds -- | /O(n)/ Applied to a predicate and a 'ShortByteString', 'all' determines -- if all elements of the 'ShortByteString' satisfy the predicate. all :: (Word16 -> Bool) -> ShortByteString -> Bool all k = \(assertEven -> sbs) -> let l = BS.length sbs ba = asBA sbs w = indexWord16Array ba go !n | n >= l = True | otherwise = k (w n) && go (n + 2) in go 0 -- | /O(n)/ Applied to a predicate and a ByteString, 'any' determines if -- any element of the 'ByteString' satisfies the predicate. any :: (Word16 -> Bool) -> ShortByteString -> Bool any k = \(assertEven -> sbs) -> let l = BS.length sbs ba = asBA sbs w = indexWord16Array ba go !n | n >= l = False | otherwise = k (w n) || go (n + 2) in go 0 {-# INLINE [1] any #-} -- --------------------------------------------------------------------- -- Unfolds and replicates -- | /O(n)/ 'replicate' @n x@ is a ByteString of length @n@ with @x@ -- the value of every element. The following holds: -- -- > replicate w c = unfoldr w (\u -> Just (u,u)) c replicate :: Int -> Word16 -> ShortByteString replicate w c | w <= 0 = empty | otherwise = create (w * 2) (\mba -> go mba 0) where go mba ix | ix < 0 || ix >= w * 2 = pure () | otherwise = writeWord16Array mba ix c >> go mba (ix + 2) {-# INLINE replicate #-} -- | /O(n)/, where /n/ is the length of the result. The 'unfoldr' -- function is analogous to the List \'unfoldr\'. 'unfoldr' builds a -- ShortByteString from a seed value. The function takes the element and -- returns 'Nothing' if it is done producing the ShortByteString or returns -- 'Just' @(a,b)@, in which case, @a@ is the next byte in the string, -- and @b@ is the seed value for further production. -- -- This function is not efficient/safe. It will build a list of @[Word16]@ -- and run the generator until it returns `Nothing`, otherwise recurse infinitely, -- then finally create a 'ShortByteString'. -- -- Examples: -- -- > unfoldr (\x -> if x <= 5 then Just (x, x + 1) else Nothing) 0 -- > == pack [0, 1, 2, 3, 4, 5] -- unfoldr :: (a -> Maybe (Word16, a)) -> a -> ShortByteString unfoldr f x0 = packWord16Rev $ go x0 mempty where go x words' = case f x of Nothing -> words' Just (w, x') -> go x' (w:words') {-# INLINE unfoldr #-} -- | /O(n)/ Like 'unfoldr', 'unfoldrN' builds a ShortByteString from a seed -- value. However, the length of the result is limited by the first -- argument to 'unfoldrN'. This function is more efficient than 'unfoldr' -- when the maximum length of the result is known. -- -- This function is not efficient. It will build a full list of @[Word8]@ -- before creating a 'ShortByteString'. -- -- The following equation relates 'unfoldrN' and 'unfoldr': -- -- > fst (unfoldrN n f s) == take n (unfoldr f s) -- unfoldrN :: Int -> (a -> Maybe (Word16, a)) -> a -> (ShortByteString, Maybe a) unfoldrN i f x0 = first packWord16Rev $ go (i - 1) x0 mempty where go i' x words' | i' < 0 = (words', Just x) | otherwise = case f x of Nothing -> (words', Nothing) Just (w, x') -> go (i' - 1) x' (w:words') {-# INLINE unfoldrN #-} -- -------------------------------------------------------------------- -- Predicates -- --------------------------------------------------------------------- -- Substrings -- | /O(n)/ 'take' @n@, applied to a ShortByteString @xs@, returns the prefix -- of @xs@ of length @n@, or @xs@ itself if @n > 'length' xs@. -- -- Note: copies the entire byte array take :: Int -- ^ number of Word16 -> ShortByteString -> ShortByteString take = \n -> \(assertEven -> sbs) -> let len = min (length sbs) (max 0 n) len8 = len * 2 in create len8 $ \mba -> copyByteArray (asBA sbs) 0 mba 0 len8 {-# INLINE take #-} -- | /O(1)/ @'takeEnd' n xs@ is equivalent to @'drop' ('length' xs - n) xs@. -- Takes @n@ elements from end of bytestring. -- -- >>> takeEnd 3 "a\NULb\NULc\NULd\NULe\NULf\NULg\NUL" -- "e\NULf\NULg\NUL" -- >>> takeEnd 0 "a\NULb\NULc\NULd\NULe\NULf\NULg\NUL" -- "" -- >>> takeEnd 4 "a\NULb\NULc\NUL" -- "a\NULb\NULc\NUL" takeEnd :: Int -> ShortByteString -> ShortByteString takeEnd n sbs | n >= length sbs = sbs | n <= 0 = empty | otherwise = drop (length sbs - n) sbs {-# INLINE takeEnd #-} -- | Similar to 'P.takeWhile', -- returns the longest (possibly empty) prefix of elements -- satisfying the predicate. takeWhile :: (Word16 -> Bool) -> ShortByteString -> ShortByteString takeWhile f ps = take (findIndexOrLength (not . f) ps) ps {-# INLINE [1] takeWhile #-} -- | Returns the longest (possibly empty) suffix of elements -- satisfying the predicate. -- -- @'takeWhileEnd' p@ is equivalent to @'reverse' . 'takeWhile' p . 'reverse'@. takeWhileEnd :: (Word16 -> Bool) -> ShortByteString -> ShortByteString takeWhileEnd f ps = drop (findFromEndUntil (not . f) ps) ps {-# INLINE takeWhileEnd #-} -- | /O(n)/ 'drop' @n@ @xs@ returns the suffix of @xs@ after the first n elements, or @[]@ if @n > 'length' xs@. -- -- Note: copies the entire byte array drop :: Int -> ShortByteString -> ShortByteString drop = \n -> \(assertEven -> sbs) -> let len = length sbs newLen = max 0 (len - max 0 n) in if | n <= 0 -> sbs | n >= length sbs -> empty | otherwise -> create (newLen * 2) $ \mba -> copyByteArray (asBA sbs) (n * 2) mba 0 (newLen * 2) {-# INLINE drop #-} -- | /O(1)/ @'dropEnd' n xs@ is equivalent to @'take' ('length' xs - n) xs@. -- Drops @n@ elements from end of bytestring. -- -- >>> dropEnd 3 "a\NULb\NULc\NULd\NULe\NULf\NULg\NUL" -- "a\NULb\NULc\NULd\NUL" -- >>> dropEnd 0 "a\NULb\NULc\NULd\NULe\NULf\NULg\NUL" -- "a\NULb\NULc\NULd\NULe\NULf\NULg\NUL" -- >>> dropEnd 4 "a\NULb\NULc\NUL" -- "" dropEnd :: Int -> ShortByteString -> ShortByteString dropEnd n sbs | n <= 0 = sbs | n >= length sbs = empty | otherwise = take (length sbs - n) sbs -- | Similar to 'P.dropWhile', -- drops the longest (possibly empty) prefix of elements -- satisfying the predicate and returns the remainder. -- -- Note: copies the entire byte array dropWhile :: (Word16 -> Bool) -> ShortByteString -> ShortByteString dropWhile f = \(assertEven -> ps) -> drop (findIndexOrLength (not . f) ps) ps -- | Similar to 'P.dropWhileEnd', -- drops the longest (possibly empty) suffix of elements -- satisfying the predicate and returns the remainder. -- -- @'dropWhileEnd' p@ is equivalent to @'reverse' . 'dropWhile' p . 'reverse'@. -- -- @since 0.10.12.0 dropWhileEnd :: (Word16 -> Bool) -> ShortByteString -> ShortByteString dropWhileEnd f = \(assertEven -> ps) -> take (findFromEndUntil (not . f) ps) ps {-# INLINE dropWhileEnd #-} -- | Returns the longest (possibly empty) suffix of elements which __do not__ -- satisfy the predicate and the remainder of the string. -- -- 'breakEnd' @p@ is equivalent to @'spanEnd' (not . p)@ and to @('takeWhileEnd' (not . p) &&& 'dropWhileEnd' (not . p))@. breakEnd :: (Word16 -> Bool) -> ShortByteString -> (ShortByteString, ShortByteString) breakEnd p = \(assertEven -> sbs) -> splitAt (findFromEndUntil p sbs) sbs {-# INLINE breakEnd #-} -- | Similar to 'P.break', -- returns the longest (possibly empty) prefix of elements which __do not__ -- satisfy the predicate and the remainder of the string. -- -- 'break' @p@ is equivalent to @'span' (not . p)@ and to @('takeWhile' (not . p) &&& 'dropWhile' (not . p))@. break :: (Word16 -> Bool) -> ShortByteString -> (ShortByteString, ShortByteString) break = \p -> \(assertEven -> ps) -> case findIndexOrLength p ps of n -> (take n ps, drop n ps) {-# INLINE [1] break #-} -- | Similar to 'P.span', -- returns the longest (possibly empty) prefix of elements -- satisfying the predicate and the remainder of the string. -- -- 'span' @p@ is equivalent to @'break' (not . p)@ and to @('takeWhile' p &&& 'dropWhile' p)@. -- span :: (Word16 -> Bool) -> ShortByteString -> (ShortByteString, ShortByteString) span p = break (not . p) . assertEven -- | Returns the longest (possibly empty) suffix of elements -- satisfying the predicate and the remainder of the string. -- -- 'spanEnd' @p@ is equivalent to @'breakEnd' (not . p)@ and to @('takeWhileEnd' p &&& 'dropWhileEnd' p)@. -- -- We have -- -- > spanEnd (not . isSpace) "x y z" == ("x y ", "z") -- -- and -- -- > spanEnd (not . isSpace) ps -- > == -- > let (x, y) = span (not . isSpace) (reverse ps) in (reverse y, reverse x) -- spanEnd :: (Word16 -> Bool) -> ShortByteString -> (ShortByteString, ShortByteString) spanEnd p = \(assertEven -> ps) -> splitAt (findFromEndUntil (not.p) ps) ps -- | /O(n)/ 'splitAt' @n xs@ is equivalent to @('take' n xs, 'drop' n xs)@. -- -- Note: copies the substrings splitAt :: Int -- ^ number of Word16 -> ShortByteString -> (ShortByteString, ShortByteString) splitAt n = \(assertEven -> xs) -> if | n <= 0 -> (mempty, xs) | n >= BS.length xs * 2 -> (xs, mempty) | otherwise -> (take n xs, drop n xs) -- | /O(n)/ Break a 'ShortByteString' into pieces separated by the byte -- argument, consuming the delimiter. I.e. -- -- > split 10 "a\nb\nd\ne" == ["a","b","d","e"] -- fromEnum '\n' == 10 -- > split 97 "aXaXaXa" == ["","X","X","X",""] -- fromEnum 'a' == 97 -- > split 120 "x" == ["",""] -- fromEnum 'x' == 120 -- > split undefined "" == [] -- and not [""] -- -- and -- -- > intercalate [c] . split c == id -- > split == splitWith . (==) -- -- Note: copies the substrings split :: Word16 -> ShortByteString -> [ShortByteString] split w = splitWith (== w) . assertEven -- | /O(n)/ Splits a 'ShortByteString' into components delimited by -- separators, where the predicate returns True for a separator element. -- The resulting components do not contain the separators. Two adjacent -- separators result in an empty component in the output. eg. -- -- > splitWith (==97) "aabbaca" == ["","","bb","c",""] -- fromEnum 'a' == 97 -- > splitWith undefined "" == [] -- and not [""] -- splitWith :: (Word16 -> Bool) -> ShortByteString -> [ShortByteString] splitWith p = \(assertEven -> sbs) -> if | BS.null sbs -> [] | otherwise -> go sbs where go sbs' | BS.null sbs' = [mempty] | otherwise = case break p sbs' of (a, b) | BS.null b -> [a] | otherwise -> a : go (tail b) -- --------------------------------------------------------------------- -- Reducing 'ByteString's -- | 'foldl', applied to a binary operator, a starting value (typically -- the left-identity of the operator), and a ShortByteString, reduces the -- ShortByteString using the binary operator, from left to right. -- foldl :: (a -> Word16 -> a) -> a -> ShortByteString -> a foldl f v = List.foldl f v . unpack . assertEven {-# INLINE foldl #-} -- | 'foldl'' is like 'foldl', but strict in the accumulator. -- foldl' :: (a -> Word16 -> a) -> a -> ShortByteString -> a foldl' f v = List.foldl' f v . unpack . assertEven {-# INLINE foldl' #-} -- | 'foldr', applied to a binary operator, a starting value -- (typically the right-identity of the operator), and a ShortByteString, -- reduces the ShortByteString using the binary operator, from right to left. foldr :: (Word16 -> a -> a) -> a -> ShortByteString -> a foldr f v = List.foldr f v . unpack . assertEven {-# INLINE foldr #-} -- | 'foldr'' is like 'foldr', but strict in the accumulator. foldr' :: (Word16 -> a -> a) -> a -> ShortByteString -> a foldr' k v = Foldable.foldr' k v . unpack . assertEven {-# INLINE foldr' #-} -- | 'foldl1' is a variant of 'foldl' that has no starting value -- argument, and thus must be applied to non-empty 'ShortByteString's. -- An exception will be thrown in the case of an empty ShortByteString. foldl1 :: (Word16 -> Word16 -> Word16) -> ShortByteString -> Word16 foldl1 k = List.foldl1 k . unpack . assertEven {-# INLINE foldl1 #-} -- | 'foldl1'' is like 'foldl1', but strict in the accumulator. -- An exception will be thrown in the case of an empty ShortByteString. foldl1' :: (Word16 -> Word16 -> Word16) -> ShortByteString -> Word16 foldl1' k = List.foldl1' k . unpack . assertEven -- | 'foldr1' is a variant of 'foldr' that has no starting value argument, -- and thus must be applied to non-empty 'ShortByteString's -- An exception will be thrown in the case of an empty ShortByteString. foldr1 :: (Word16 -> Word16 -> Word16) -> ShortByteString -> Word16 foldr1 k = List.foldr1 k . unpack . assertEven {-# INLINE foldr1 #-} -- | 'foldr1'' is a variant of 'foldr1', but is strict in the -- accumulator. foldr1' :: (Word16 -> Word16 -> Word16) -> ShortByteString -> Word16 foldr1' k = \(assertEven -> sbs) -> if null sbs then errorEmptyList "foldr1'" else foldr' k (last sbs) (init sbs) -- -------------------------------------------------------------------- -- Searching ShortByteString -- | /O(1)/ 'ShortByteString' index (subscript) operator, starting from 0. index :: ShortByteString -> Int -> Word16 index = \(assertEven -> sbs) i -> let ba = asBA sbs w = indexWord16Array ba in if | i >= 0 && i < length sbs -> w (i * 2) | otherwise -> error $ "Data.ByteString.Short.Word16.index: error in array index; " ++ show i ++ " not in range [0.." ++ show (length sbs) ++ ")" -- | /O(1)/ 'ShortByteString' index, starting from 0, that returns 'Just' if: -- -- > 0 <= n < length bs -- -- @since 0.11.0.0 indexMaybe :: ShortByteString -> Int -> Maybe Word16 indexMaybe = \(assertEven -> sbs) i -> let ba = asBA sbs w = indexWord16Array ba in if | i >= 0 && i < length sbs -> Just (w (i * 2)) | otherwise -> Nothing {-# INLINE indexMaybe #-} -- | /O(1)/ 'ShortByteString' index, starting from 0, that returns 'Just' if: -- -- > 0 <= n < length bs -- -- @since 0.11.0.0 (!?) :: ShortByteString -> Int -> Maybe Word16 (!?) = indexMaybe {-# INLINE (!?) #-} -- | /O(n)/ 'elem' is the 'ShortByteString' membership predicate. elem :: Word16 -> ShortByteString -> Bool elem c = \ps -> case elemIndex c ps of Nothing -> False ; _ -> True -- | /O(n)/ 'filter', applied to a predicate and a ByteString, -- returns a ByteString containing those characters that satisfy the -- predicate. filter :: (Word16 -> Bool) -> ShortByteString -> ShortByteString filter k = \sbs -> if | null sbs -> sbs | otherwise -> pack . List.filter k . unpack . assertEven $ sbs {-# INLINE filter #-} -- | /O(n)/ The 'find' function takes a predicate and a ByteString, -- and returns the first element in matching the predicate, or 'Nothing' -- if there is no such element. -- -- > find f p = case findIndex f p of Just n -> Just (p ! n) ; _ -> Nothing -- find :: (Word16 -> Bool) -> ShortByteString -> Maybe Word16 find f = List.find f . unpack . assertEven {-# INLINE find #-} -- | /O(n)/ The 'partition' function takes a predicate a ByteString and returns -- the pair of ByteStrings with elements which do and do not satisfy the -- predicate, respectively; i.e., -- -- > partition p bs == (filter p xs, filter (not . p) xs) -- partition :: (Word16 -> Bool) -> ShortByteString -> (ShortByteString, ShortByteString) partition f = \s -> if | null s -> (s, s) | otherwise -> bimap pack pack . List.partition f . unpack . assertEven $ s -- -------------------------------------------------------------------- -- Indexing ShortByteString -- | /O(n)/ The 'elemIndex' function returns the index of the first -- element in the given 'ShortByteString' which is equal to the query -- element, or 'Nothing' if there is no such element. elemIndex :: Word16 -> ShortByteString -> Maybe Int elemIndex k = findIndex (==k) {-# INLINE elemIndex #-} -- | /O(n)/ The 'elemIndices' function extends 'elemIndex', by returning -- the indices of all elements equal to the query element, in ascending order. elemIndices :: Word16 -> ShortByteString -> [Int] elemIndices k = findIndices (==k) -- | count returns the number of times its argument appears in the ShortByteString count :: Word16 -> ShortByteString -> Int count w = List.length . elemIndices w -- | /O(n)/ The 'findIndex' function takes a predicate and a 'ShortByteString' and -- returns the index of the first element in the ByteString -- satisfying the predicate. findIndex :: (Word16 -> Bool) -> ShortByteString -> Maybe Int findIndex k = \sbs -> let l = BS.length sbs ba = asBA sbs w = indexWord16Array ba go !n | n >= l = Nothing | k (w n) = Just (n `div` 2) | otherwise = go (n + 2) in go 0 {-# INLINE findIndex #-} -- | /O(n)/ The 'findIndices' function extends 'findIndex', by returning the -- indices of all elements satisfying the predicate, in ascending order. findIndices :: (Word16 -> Bool) -> ShortByteString -> [Int] findIndices k = \sbs -> let l = BS.length sbs ba = asBA sbs w = indexWord16Array ba go !n | n >= l = [] | k (w n) = (n `div` 2) : go (n + 2) | otherwise = go (n + 2) in go 0 {-# INLINE [1] findIndices #-} -- -------------------------------------------------------------------- -- Internal -- Returns the index of the first match or the length of the whole -- bytestring if nothing matched. findIndexOrLength :: (Word16 -> Bool) -> ShortByteString -> Int findIndexOrLength k sbs = go 0 where l = BS.length sbs ba = asBA sbs w = indexWord16Array ba go !n | n >= l = l `div` 2 | k (w n) = n `div` 2 | otherwise = go (n + 2) {-# INLINE findIndexOrLength #-} -- | Returns the length of the substring matching, not the index. -- If no match, returns 0. findFromEndUntil :: (Word16 -> Bool) -> ShortByteString -> Int findFromEndUntil k sbs = go (BS.length sbs - 2) where ba = asBA sbs w = indexWord16Array ba go !n | n < 0 = 0 | k (w n) = (n `div` 2) + 1 | otherwise = go (n - 2) {-# INLINE findFromEndUntil #-} assertEven :: ShortByteString -> ShortByteString assertEven sbs@(BS.SBS barr#) | even (I# (sizeofByteArray# barr#)) = sbs | otherwise = error ("Uneven number of bytes: " <> show (BS.length sbs) <> ". This is not a Word16 bytestream.")