{-# LANGUAGE OverloadedStrings, FlexibleContexts #-}
module PDF.ContentStream
( deflate
, decompressStream
, parseColorSpace
) where
import Data.Char (chr)
import Data.String (fromString)
import Data.List (isPrefixOf)
import Numeric (readOct, readHex)
import Data.Maybe (fromMaybe)
import Data.Binary (decode)
import Data.ByteString (ByteString)
import qualified Data.ByteString.Char8 as BS
import qualified Data.ByteString.Lazy.Char8 as BSC
import qualified Data.ByteString.Lazy.UTF8 as BSL
import qualified Data.Text as T
import qualified Data.Map as Map
import Data.Text.Encoding (encodeUtf8)
import Text.Parsec hiding (many, (<|>))
import Control.Applicative
import Text.Parsec.ByteString.Lazy
import Codec.Compression.Zlib (decompress)
import Debug.Trace
import PDF.Definition
import PDF.Character (pdfcharmap, adobeJapanOneSixMap)
type PSParser a = GenParser Char PSR a
parseContentStream p st = runParser p st ""
parseDeflated :: PSR -> BSC.ByteString -> PDFStream
parseDeflated psr pdfstream =
case parseContentStream (T.concat <$> many (elems <|> skipOther)) psr pdfstream of
Left err -> error $ "Nothing to be parsed: " ++ (show err)
Right str -> BSC.pack $ BS.unpack $ encodeUtf8 str
deflate :: PSR -> PDFStream -> PDFStream
deflate = parseDeflated
decompressStream :: PDFBS -> PDFStream
decompressStream (n,pdfobject) =
case parse (BSC.pack <$>
(manyTill anyChar (try $ (string "stream" >> oneOf "\n\r")) >> spaces
*> manyTill anyChar (try $ string "endstream"))) "" pdfobject of
Left err -> "err"
Right bs -> decompress bs
parseColorSpace :: PSR -> BSC.ByteString -> [T.Text]
parseColorSpace psr pdfstream =
case parseContentStream (many (choice [ try colorSpace
, try $ T.concat <$> xObject
, (T.empty <$ elems)
])) psr pdfstream of
Left err -> error "Nothing to be parsed"
Right str -> str
elems :: PSParser T.Text
elems = choice [ try pdfopBT
, try pdfopTf
, try pdfopTD
, try pdfopTd
, try pdfopTm
, try pdfopTc
, try pdfopTw
, try pdfopTJ
, try pdfopTj
, try pdfQuote
, try pdfDoubleQuote
, try pdfopTast
, try letters <* spaces
, try hexletters <* spaces
, try array <* spaces
, try pdfopGraphics
, try dashPattern
, try pathConstructor
, try $ T.empty <$ xObject
, try graphicState
, try pdfopcm
, try $ T.empty <$ colorSpace
, try $ T.empty <$ renderingIntent
, unknowns
]
pdfopGraphics :: PSParser T.Text
pdfopGraphics = do
spaces
choice [ try $ T.empty <$ oneOf "qQ" <* spaces
, try $ T.empty <$ oneOf "fFbBW" <* (many $ string "*") <* space <* spaces
, try $ T.empty <$ oneOf "nsS" <* spaces
, try $ T.empty <$ (digitParam <* spaces) <* oneOf "jJM" <* space <* spaces
, try $ T.empty <$ (digitParam <* spaces) <* oneOf "dwi" <* space <* spaces
, try $ T.empty <$ (many1 (digitParam <* spaces) <* oneOf "ml" <* space <* spaces)
, try $ T.empty <$ (many1 (digitParam <* spaces) <* string "re " <* spaces)
, try $ T.empty <$ (many1 (digitParam <* spaces) <* string "SCN " <* spaces)
, try $ T.empty <$ (many1 (digitParam <* spaces) <* string "scn " <* spaces)
, try $ T.empty <$ (many1 (digitParam <* spaces) <* string "SC " <* spaces)
, try $ T.empty <$ (many1 (digitParam <* spaces) <* string "sc " <* spaces)
, try $ T.empty <$ (many1 (digitParam <* spaces) <* string "c" <* space <* spaces)
]
return T.empty
graphicState :: PSParser T.Text
graphicState = do
gs <- (++) <$> string "/" <*> manyTill anyChar (try space)
spaces
string "gs"
spaces
return T.empty
colorSpace :: PSParser T.Text
colorSpace = do
gs <- choice [ try $ string "/" *> manyTill anyChar (try space) <* string "CS" <|> string "cs" <* spaces
, try $ "DeviceRGB" <$ (many1 (digitParam <* spaces) <* string "rg" <* spaces)
, try $ "DeviceRGB" <$ (many1 (digitParam <* spaces) <* string "RG" <* spaces)
, try $ "DeviceGray" <$ (digitParam <* spaces) <* oneOf "gG" <* spaces
, try $ "DeviceCMYK" <$ (many1 (digitParam <* spaces) <* oneOf "kK" <* spaces)
]
updateState (\s -> s {colorspace = gs})
return $ T.pack gs
dashPattern :: PSParser T.Text
dashPattern = do
char '[' >> many digit >> char ']' >> spaces >> many1 digit >> spaces >> string "d"
return T.empty
renderingIntent :: PSParser T.Text
renderingIntent = do
ri <- choice [ try $ string "/" *> manyTill anyChar (try space) <* string "ri " <* spaces
, try $ string "/" *> manyTill anyChar (try space) <* string "Intent" <* spaces
]
return $ T.pack ri
pathConstructor :: PSParser T.Text
pathConstructor = do
choice [ try $ T.empty <$ (digitParam <* spaces) <* oneOf "ml" <* spaces
, try $ T.empty <$ (digitParam <* spaces) <* oneOf "cvy" <* spaces
, try $ T.empty <$ (digitParam <* spaces) <* oneOf "re" <* spaces
, try $ T.empty <$ oneOf "h" <* spaces
]
return T.empty
xObject :: PSParser [T.Text]
xObject = do
n <- (++) <$> string "/" <*> manyTill anyChar (try space)
spaces
string "Do"
spaces
st <- getState
let xobjcs = xcolorspaces st
return $ map T.pack xobjcs
pdfopBT :: PSParser T.Text
pdfopBT = do
string "BT"
spaces
t <- manyTill elems (try $ string "ET")
spaces
return $ T.concat t
pdfopTj :: PSParser T.Text
pdfopTj = do
spaces
t <- manyTill (letters <|> hexletters <|> array) (try $ string "Tj")
spaces
return $ T.concat t
pdfopTJ :: PSParser T.Text
pdfopTJ = do
spaces
t <- manyTill (letters <|> hexletters <|> array) (try $ string "TJ")
spaces
return $ T.concat t
pdfDoubleQuote :: PSParser T.Text
pdfDoubleQuote = do
spaces
t <- manyTill (letters <|> hexletters <|> array) (try $ string "\"")
spaces
return $ T.concat t
pdfQuote :: PSParser T.Text
pdfQuote = do
spaces
t <- manyTill (letters <|> hexletters <|> array) (try $ string "\'")
spaces
return $ T.concat t
unknowns :: PSParser T.Text
unknowns = do
ps <- manyTill anyChar (try $ oneOf "\r\n")
return $ if ps==""
then ""
else T.pack $ "[[[UNKNOWN STREAM:" ++ take 100 (show ps) ++ "]]]"
skipOther :: PSParser T.Text
skipOther = do
a <- manyTill anyChar (try $ oneOf "\r\n")
return $ ""
array :: PSParser T.Text
array = do
char '['
str <- (manyTill (letters <|> hexletters <|> kern) (try $ char ']'))
return $ T.concat str
letters :: PSParser T.Text
letters = do
char '('
lets <- manyTill psletter (try $ char ')')
spaces
return $ T.concat lets
hexletters :: PSParser T.Text
hexletters = do
char '<'
lets <- manyTill hexletter (try $ char '>')
spaces
return $ T.concat lets
adobeOneSix :: Int -> T.Text
adobeOneSix a = case Map.lookup a adobeJapanOneSixMap of
Just cs -> T.pack $ BSL.toString cs
Nothing -> T.pack $ "[" ++ (show a) ++ "]"
toUcs :: CMap -> Int -> T.Text
toUcs m h = case lookup h m of
Just ucs -> T.pack ucs
Nothing -> adobeOneSix h
hexletter :: PSParser T.Text
hexletter = do
st <- getState
let cmap = fromMaybe [] (lookup (curfont st) (cmaps st))
(hexToString cmap . readHex) <$> (count 4 $ oneOf "0123456789ABCDEFabcdef")
where hexToString m [(h,"")] = toUcs m h
hexToString _ _ = "????"
psletter :: PSParser T.Text
psletter = do
st <- getState
let fontmap = case lookup (curfont st) (fontmaps st) of
Just m -> m
Nothing -> []
c <- try (char '\\' >> oneOf "\\()")
<|>
try (octToChar . readOct <$> (char '\\' >> (count 3 $ oneOf "01234567")))
<|>
noneOf "\\"
return $ replaceWithDiff fontmap c
where replaceWithDiff m c' = case lookup c' m of
Just s -> replaceWithCharDict s
Nothing -> T.pack [c']
replaceWithCharDict s = case Map.lookup s pdfcharmap of
Just cs -> cs
Nothing -> if "/uni" `isPrefixOf` s
then readUni s
else T.pack s
readUni s = case readHex (drop 4 s) of
[(i,"")] -> T.singleton $ chr i
[(i,x)] -> T.pack (chr i : " ")
_ -> T.pack s
octToChar [(o,"")] = chr o
octToChar _ = '?'
kern :: PSParser T.Text
kern = do
t <- digitParam
return $ if t < -60.0 then " " else ""
pdfopTf :: PSParser T.Text
pdfopTf = do
font <- (++) <$> string "/" <*> manyTill anyChar (try space)
spaces
t <- digitParam
spaces
string "Tf"
spaces
st <- getState
let ff = fontfactor st
updateState (\s -> s{ curfont = font
, fontfactor = t
, linex = t
, liney = t})
return ""
pdfopTD :: PSParser T.Text
pdfopTD = do
t1 <- digitParam
spaces
t2 <- digitParam
spaces
string "TD"
spaces
st <- getState
let ax = absolutex st
ay = absolutey st
lx = linex st
ly = liney st
lm = leftmargin st
ff = fontfactor st
needBreak = t2 < 0
updateState (\s -> s { absolutex = ax - lx
, absolutey = ay - ly
, linex = lx
, liney = -t2*ff
})
return $ if needBreak
then T.concat ["\n", (desideParagraphBreak (t1*ff) (t2*ff) lx (-t2*ff) lm ff)]
else if t1 > ff then " " else ""
pdfopTd :: PSParser T.Text
pdfopTd = do
t1 <- digitParam
spaces
t2 <- digitParam
spaces
string "Td"
spaces
st <- getState
let ax = absolutex st
ay = absolutey st
lx = linex st
ly = liney st
lm = leftmargin st
ff = fontfactor st
needBreak = t2 < 0 && abs t2 > ly
updateState (\s -> s { absolutex = ax - lx
, absolutey = ay - ly
, linex = lx
, liney = ly
})
return $ if needBreak
then T.concat ["\n", (desideParagraphBreak t1 t2 lx ly lm ff)]
else if t1 > ff then " " else ""
pdfopTw :: PSParser T.Text
pdfopTw = do
tw <- digitParam
spaces
string "Tw"
spaces
st <- getState
let ff = fontfactor st
updateState (\s -> s { fontfactor = ff
})
return $ ""
pdfopTc :: PSParser T.Text
pdfopTc = do
tc <- digitParam
spaces
string "Tc"
spaces
st <- getState
let ff = fontfactor st
updateState (\s -> s { fontfactor = ff
})
return $ ""
desideParagraphBreak :: Double -> Double -> Double -> Double -> Double -> Double
-> T.Text
desideParagraphBreak t1 t2 lx ly lm ff = T.pack $
(if abs t2 > 1.8*ly || (t1 - lm) > 0.5
then "\n"
else "")
pdfopTm :: PSParser T.Text
pdfopTm = do
a <- digitParam
spaces
b <- digitParam
spaces
c <- digitParam
spaces
d <- digitParam
spaces
e <- digitParam
spaces
f <- digitParam
spaces
string "Tm"
spaces
st <- getState
let ax = absolutex st
ay = absolutey st
lx = linex st
ly = liney st
lm = leftmargin st
ff = fontfactor st
newff = (a+d)/2
needBreak = ay - f/newff > (ly/newff)
updateState (\s -> s { linex = lx/newff
, liney = ly/newff
, absolutex = e/newff
, absolutey = f/newff
})
return $ if needBreak
then T.concat ["\n", desideParagraphBreak (e*newff) (f*newff) lx ly lm newff]
else if e > newff then " " else ""
pdfopcm :: PSParser T.Text
pdfopcm = do
a <- digitParam
spaces
b <- digitParam
spaces
c <- digitParam
spaces
d <- digitParam
spaces
e <- digitParam
spaces
f <- digitParam
spaces
string "cm"
spaces
st <- getState
let ax = absolutex st
ay = absolutey st
lx = linex st
ly = liney st
lm = leftmargin st
ff = fontfactor st
newff = (a+d)/2
updateState (\s -> s { linex = lx/newff
, liney = ly/newff
, absolutex = e/newff
, absolutey = f/newff
})
return T.empty
pdfopTast :: PSParser T.Text
pdfopTast = do
string "T*"
st <- getState
let ax = absolutex st
ay = absolutey st
lx = linex st
ly = liney st
updateState (\s -> s { linex = lx
, liney = ly
, absolutex = ax - lx
, absolutey = ay - ly
})
return "\n"
digitParam :: PSParser Double
digitParam = do
sign <- many $ char '-'
num <- ((++) <$> (("0"++) <$> (string ".")) <*> many1 digit)
<|>
((++) <$> (many1 digit) <*> ((++) <$> (many $ char '.') <*> many digit))
return $ read $ sign ++ num
hexParam :: Parser T.Text
hexParam = do
char '<'
lets <- manyTill (oneOf "0123456789abcdefABCDEF") (try $ char '>')
return $ T.pack lets