如何在Haskell中获取终端的宽度?
我尝试过的事情
System.Posix.IOCtl (could not figure out how to get it to work)
这只需要使用unix。
由于
答案 0 :(得分:15)
如果你不想依赖ncurses,那么这里是使用FFI的相应ioctl()
请求的包装器,基于Getting terminal width in C?的接受答案
<强> TermSize.hsc 强>
{-# LANGUAGE ForeignFunctionInterface #-}
module TermSize (getTermSize) where
import Foreign
import Foreign.C.Error
import Foreign.C.Types
#include <sys/ioctl.h>
#include <unistd.h>
-- Trick for calculating alignment of a type, taken from
-- http://www.haskell.org/haskellwiki/FFICookBook#Working_with_structs
#let alignment t = "%lu", (unsigned long)offsetof(struct {char x__; t (y__); }, y__)
-- The ws_xpixel and ws_ypixel fields are unused, so I've omitted them here.
data WinSize = WinSize { wsRow, wsCol :: CUShort }
instance Storable WinSize where
sizeOf _ = (#size struct winsize)
alignment _ = (#alignment struct winsize)
peek ptr = do
row <- (#peek struct winsize, ws_row) ptr
col <- (#peek struct winsize, ws_col) ptr
return $ WinSize row col
poke ptr (WinSize row col) = do
(#poke struct winsize, ws_row) ptr row
(#poke struct winsize, ws_col) ptr col
foreign import ccall "sys/ioctl.h ioctl"
ioctl :: CInt -> CInt -> Ptr WinSize -> IO CInt
-- | Return current number of (rows, columns) of the terminal.
getTermSize :: IO (Int, Int)
getTermSize =
with (WinSize 0 0) $ \ws -> do
throwErrnoIfMinus1 "ioctl" $
ioctl (#const STDOUT_FILENO) (#const TIOCGWINSZ) ws
WinSize row col <- peek ws
return (fromIntegral row, fromIntegral col)
这使用hsc2hs
preprocessor根据C头找出正确的常量和偏移量,而不是硬编码它们。我认为它与GHC或Haskell平台打包在一起,所以你很可能已经拥有它。
如果您使用的是Cabal,则可以将TermSize.hs
添加到.cabal
文件中,它会自动知道如何从TermSize.hsc
生成它。否则,您可以手动运行hsc2hs TermSize.hsc
以生成.hs
文件,然后您可以使用GHC进行编译。
答案 1 :(得分:9)
您可以使用hcurses。初始化库后,您可以使用scrSize
获取屏幕上的行数和列数。
要使用System.Posix.IOCtl
,您必须定义一种数据类型来表示TIOCGWINSZ
请求,该请求填写以下结构:
struct winsize {
unsigned short ws_row;
unsigned short ws_col;
unsigned short ws_xpixel; /* unused */
unsigned short ws_ypixel; /* unused */
};
您需要定义一个Haskell数据类型来保存此信息,并使其成为Storable
的实例:
{-# LANGUAGE RecordWildCards #-}
import Foreign.Storable
import Foreign.Ptr
import Foreign.C
data Winsize = Winsize { ws_row :: CUShort
, ws_col :: CUShort
, ws_xpixel :: CUShort
, ws_ypixel :: CUShort
}
instance Storable Winsize where
sizeOf _ = 8
alignment _ = 2
peek p = do { ws_row <- peekByteOff p 0
; ws_col <- peekByteOff p 2
; ws_xpixel <- peekByteOff p 4
; ws_ypixel <- peekByteOff p 6
; return $ Winsize {..}
}
poke p Winsize {..} = do { pokeByteOff p 0 ws_row
; pokeByteOff p 2 ws_col
; pokeByteOff p 4 ws_xpixel
; pokeByteOff p 6 ws_ypixel
}
现在,您需要创建一个虚拟数据类型来表示您的请求:
data TIOCGWINSZ = TIOCGWINSZ
最后,您需要让您的请求键入IOControl
的实例,并将其与Winsize
数据类型相关联。
instance IOControl TIOCGWINSZ Winsize where
ioctlReq _ = ??
您需要将??
替换为头文件中TIOCGWINSZ
代表的常量(我的系统上为0x5413
)。
现在,您已准备好发出ioctl
。此命令不关心输入数据,因此您要使用ioctl'
形式:
main = do { ws <- ioctl' 1 TIOCGWINSZ
; putStrLn $ "My terminal is " ++ show (ws_col ws) ++ " columns wide"
}
请注意,1指的是STDOUT。
呼!
答案 2 :(得分:3)
由于你只在Unix上需要这个,我建议:
resizeOutput <- readProcess "/usr/X11/bin/resize" [] ""
然后对输出进行一点点解析。这可能不是100%可移植的,但我相信你可以为resize
提供参数(尤其是-u
),这样你就可以得到相当一致的输出。