在 Haskell 应用程序中创建 Haskell REPL

发布于 2024-11-18 17:57:54 字数 265 浏览 11 评论 0原文

我正在尝试将 Haskell REPL 嵌入到我的 Haskell 应用程序之一中。这个想法是,默认情况下只会加载 Haskell 库的一个子集,加上我自己的一组函数,用户将使用这些函数来与环境交互。

为了解决这个问题,我知道一种方法是创建一个(迷你)Haskell 解析器+求值器,并将我的迷你 Haskell 解析器的函数映射到实际的 Haskell 函数,但我确信有更好的方法来做到这一点。

有没有一种好的、干净的方法来使用 Haskell 为 Haskell 构建 REPL?

I'm trying to embed a Haskell REPL within one of my Haskell applications. The idea would be that only a subset of the Haskell libraries would be loaded by default, plus my own set of functions, and the user would use those in order to interact with the environment.

To solve this problem, I know one way would be to create a (mini-)Haskell parser + evaluator and map my mini-Haskell parser's functions to actual Haskell functions, but I'm sure there is a better way to do this.

Is there a nice and clean way to build a REPL for Haskell using Haskell?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那小子欠揍 2024-11-25 17:57:54

一些已经存在的东西:

  • GHCi,当然,无论是在能够查看它是如何实现的还是能够直接使用它的意义上(即,让您的 REPL 只需通过 stdin/stdout 与 GHCi 对话)。
  • 完整的 GHC API,可让您连接到 GHC 并让它完成所有繁重的工作为你——加载文件、追踪依赖、解析、类型检查等。
  • hint,它是 GHC API 子集的包装器,重点是交互式解释而不是编译——这似乎适合您想要做的事情。
  • mueval,一个对加载模块、资源使用等有限制的评估器,基本上是一个“安全”的交互模式。如果您曾经访问过 #haskell IRC 频道,这就是 lambdabot 使用的工具。

以上所有内容都假设您不想自己编写 Haskell 解释器,情况可能就是这样。

A few things that already exist:

  • GHCi, of course, both in the sense of being able to look at how it's implemented or being able to use it directly (i.e., have your REPL just talk to GHCi via stdin/stdout).
  • The full GHC API, which lets you hook into GHC and let it do all the heavy lifting for you--loading files, chasing dependencies, parsing, type checking, etc.
  • hint, which is a wrapper around a subset of the GHC API, with a focus on interactive interpretation rather than compilation--which seems to fit what you want to do.
  • mueval, an evaluator with limits on loaded modules, resource use, etc, basically a "safe" interactive mode. It's what lambdabot uses, if you've ever been in the #haskell IRC channel.

All of the above are assuming that you don't want to deal with writing a Haskell interpreter yourself, which is probably the case.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文