mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-29 08:49:40 +03:00
UnicodeWidthTable.IO: expose bytestring parser
This commit is contained in:
parent
69dfa280e9
commit
2a76f765f4
@ -1,6 +1,7 @@
|
||||
{-# LANGUAGE CPP #-}
|
||||
module Graphics.Vty.UnicodeWidthTable.IO
|
||||
( readUnicodeWidthTable
|
||||
, parseUnicodeWidthTable
|
||||
, writeUnicodeWidthTable
|
||||
)
|
||||
where
|
||||
@ -21,20 +22,23 @@ import Graphics.Vty.UnicodeWidthTable.Types
|
||||
-- This either returns a successfully parsed table or a table parsing
|
||||
-- error message. This does not handle I/O exceptions.
|
||||
readUnicodeWidthTable :: FilePath -> IO (Either String UnicodeWidthTable)
|
||||
readUnicodeWidthTable path = do
|
||||
body <- BSL.readFile path
|
||||
case runGetOrFail tableParser body of
|
||||
readUnicodeWidthTable path = parseUnicodeWidthTable <$> BSL.readFile path
|
||||
|
||||
-- | Parse a binary unicode width table.
|
||||
parseUnicodeWidthTable :: BSL.ByteString -> Either String UnicodeWidthTable
|
||||
parseUnicodeWidthTable bs =
|
||||
case runGetOrFail tableParser bs of
|
||||
Left (_, _, msg) ->
|
||||
return $ Left msg
|
||||
Left msg
|
||||
|
||||
-- Even if we parsed a table, leftover bytes indicate something
|
||||
-- could be wrong.
|
||||
Right (remainingBytes, _, _) | not (BSL.null remainingBytes) ->
|
||||
return $ Left $ "Error: " <> show (BSL.length remainingBytes) <>
|
||||
" byte(s) left unconsumed"
|
||||
Left $ "Error: " <> show (BSL.length remainingBytes) <>
|
||||
" byte(s) left unconsumed"
|
||||
|
||||
Right (_, _, table) ->
|
||||
return $ Right table
|
||||
Right table
|
||||
|
||||
-- | Write the unicode width table to the specified path.
|
||||
--
|
||||
|
Loading…
Reference in New Issue
Block a user