我正在尝试编写一个非常简单的编辑器,例如“ed”。在这个程序中,我尝试使用映射来构建控件,该控件将字符串命令转换为要执行的操作。这是一段代码:
commands :: Map String ([Handle] -> IO ())
commands = fromAscList [
("o",\list -> print "Insert name of the file to be opened" >> getLine >>= \nomefile ->
openFile nomefile ReadWriteMode >>= \handle -> editor (handle:list)),
("i",\list -> case list of { [] -> print "No buffer open" ; handle:res -> write handle } >> editor list),
("q",\list -> if list == [] then return () else mapM_ hClose list >> return ())
]
editor :: [Handle] -> IO()
editor list = do
command <- getLine
let action = lookup command commands
case action of
Nothing -> print "Unknown command" >> editor list
Just act -> act list
问题是当我在 ghci 或可执行文件中执行编辑器函数时,当我键入“o”时,我收到消息“未知命令”,而不是调用函数来打开文件。我使用关联列表而不是 Map 尝试了相同的代码,在这种情况下它可以工作。那么这里可能是什么问题呢?
更奇怪的是,如果我在 ghci 中调用映射命令上的键,它也会返回一个包含字符串“o”的列表。
我提前感谢任何帮助。