0

我自己使用 GHC 成功地复制了这个例子。

https://wiki.haskell.org/Calling_Haskell_from_C

最终目标是用 Haskell 编写 99% 的程序,然后从用 C 编写的事件循环中调用它:

#include <HsFFI.h>
#ifdef __GLASGOW_HASKELL__
#include "../.stack-work/dist/x86_64-linux/Cabal-2.4.0.1/build/Lib_stub.h"
extern void __stginit_Lib(void);
#endif
#include <stdio.h>
#include <time.h>
extern void hs_add_root (void (*init_root)(void));

int main(int argc, char *argv[])
{
int i;

hs_init(&argc, &argv);

#ifdef __GLASGOW_HASKELL__
    hs_add_root(__stginit_Lib);
#endif

for (int m = 0; m < 10; ++m) {
    i = fibonacci_hs(42);
    printf("Fibonacci: %d\n", i);
}

hs_exit();
return 0;
}

在 C 中运行事件循环的动机是,据我所知,在 Haskell 中强制评估 X 次/秒是困难的或不可能的。

这是 package.yaml:

name:                c-loop
version:             0.1.0.0
github:              "githubuser/c-loop"
license:             BSD3
author:              "Author name here"
maintainer:          "example@example.com"
copyright:           "2019 Author name here"

extra-source-files:
- README.md
- ChangeLog.md

# Metadata used when publishing your package
# synopsis:            Short description of your package
# category:            Web

# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description:         Please see the README on GitHub at   <https://github.com/githubuser/c-loop#readme>

dependencies:
- base >= 4.7 && < 5
library:
  source-dirs: src

executables:
  c-loop-exe:
    main:                Main.hs
    source-dirs:         app
    ghc-options:
    - -threaded
    - -rtsopts
    - -with-rtsopts=-N
    - -fobject-code
    #    - -no-hs-main
    - --make -no-hs-main -optc-O ./c/eventLoop.c Lib -o eventLoop
dependencies:
- c-loop

tests:
  c-loop-test:
    main:                Spec.hs
    source-dirs:         test
    ghc-options:
    - -threaded
    - -rtsopts
    - -with-rtsopts=-N
    dependencies:
    - c-loop

当我运行时:

$ stack build

我明白了:

<no location info>: error: module ‘Lib’ cannot be found locally

有谁知道发生了什么?

4

1 回答 1

3

顺便说一句,你的动机似乎被误导了。我认为拥有一个唯一目的是定期“强制评估”的 C 事件循环没有任何好处。你可以在 Haskell 中做到这一点。

上面的示例中出了什么问题可能Libghc-options. 但是,您应该使用其他 Cabal 字段来代替,这将使事情更顺利地进行。

以下是如何让您的最小示例与 Stack 一起使用。使用下面列出的四个文件创建一个新目录并运行stack build,然后stack exec c-loop-exe

几点:

  • 您可能可以使用package.yaml文件执行此操作,但您必须转换 Cabal 语法。
  • 除非您使用的是 GHC < 7.2,否则您不再需要所有这些__stginit和垃圾。hs_add_root
  • c-sources如果您正确设置了 Cabal 文件(即使用),则不需要硬编码存根的路径。
  • -opt-O2标志是不必要的。这是堆栈的默认设置。

四个文件的内容:

-- stack.yaml
resolver: lts-13.21
packages:
- .

-- c-loop.cabal
cabal-version: 1.12
name:           c-loop
version:        0.1.0.0
build-type:     Simple

executable c-loop-exe
  main-is: src/Lib.hs
  ghc-options: -no-hs-main
  c-sources: c/eventLoop.c
  build-depends:
      base >=4.7 && <5
  default-language: Haskell2010

-- c/eventLoop.c
#include <stdio.h>
#include <time.h>
#include "HsFFI.h"
#include "Lib_stub.h"

int main(int argc, char *argv[])
{
    int i;
    hs_init(&argc, &argv);
    for (int m = 0; m < 10; ++m) {
        i = fibonacci_hs(42);
        printf("Fibonacci: %d\n", i);
    }
    hs_exit();
    return 0;
}

-- src/Lib.hs
{-# LANGUAGE ForeignFunctionInterface #-}

module Lib where

import Foreign.C.Types

fibonacci :: Int -> Int
fibonacci n = fibs !! n
    where fibs = 0 : 1 : zipWith (+) fibs (tail fibs)

fibonacci_hs :: CInt -> CInt
fibonacci_hs = fromIntegral . fibonacci . fromIntegral

foreign export ccall fibonacci_hs :: CInt -> CInt
于 2019-05-12T04:33:59.993 回答