0

使用rustc 1.10.0,我正在尝试编写一些绕过盒装闭包的代码——最终目标是程序化地生成分形动画。现在我有一些这样的函数签名:

pub fn interpolate_rectilinear(width: u32, height: u32, mut min_x: f64, mut max_x: f64, mut min_y: f64, mut max_y: f64)
    -> Box<Fn(u32, u32) -> Complex64 + Send + Sync + 'static> { ... }

pub fn interpolate_stretch(width: u32, height: u32, mut min_x: f64, mut max_x: f64, mut min_y: f64, mut max_y: f64)
    -> Box<Fn(u32, u32) -> Complex64 + Send + Sync + 'static> { ... }

pub fn parallel_image<F>(width: u32, height: u32, function: &F, interpolate: &Box<Fn(u32, u32) -> Complex64 + Send + Sync>, threshold: f64)
    -> ImageBuffer<image::Luma<u8>, Vec<u8>>
        where F: Sync + Fn(Complex64) -> Complex64
{ ... }

pub fn sequential_image<F>(width: u32, height: u32, function: &F, interpolate: &Box<Fn(u32, u32) -> Complex64>, threshold: f64)
    -> ImageBuffer<image::Luma<u8>, Vec<u8>>
        where F: Fn(Complex64) -> Complex64
{ ... }

在二进制文件中一次为一个图像运行此代码可以正常工作:

let interpolate = interpolate_rectilinear(width, height, -1.0, 1.0, -1.0, 1.0);
let image = parallel_image(width * 2, height * 2, &default_julia, &interpolate, 2.0);

但是,我想确保我的串行和并行图像生成都产生相同的结果,所以我编写了以下测试函数:

#[test]
fn test_serial_parallel_agree() {
    let (width, height) = (200, 200);
    let threshold = 2.0;
    let interpolate = interpolate_stretch(width, height, -1.0, 1.0, -1.0, 1.0);

    assert!(parallel_image(width, height, &default_julia, &interpolate, threshold)
        .pixels()
        .zip(sequential_image(width, height, &default_julia, &interpolate, threshold)
            .pixels())
        .all(|(p, s)| p == s));
}

这拒绝编译,我就是想不通。它给出的错误如下:

> cargo test
Compiling julia-set v0.3.0 
src/lib.rs:231:66: 231:78 error: mismatched types [E0308]
src/lib.rs:231             .zip(sequential_image(width, height, &default_julia, &interpolate, threshold)
                                                                                ^~~~~~~~~~~~
src/lib.rs:229:9: 233:36 note: in this expansion of assert! (defined in <std macros>)
src/lib.rs:231:66: 231:78 help: run `rustc --explain E0308` to see a detailed explanation
src/lib.rs:231:66: 231:78 note: expected type `&Box<std::ops::Fn(u32, u32) -> num::Complex<f64> + 'static>`
src/lib.rs:231:66: 231:78 note:    found type `&Box<std::ops::Fn(u32, u32) -> num::Complex<f64> + Send + Sync>`
error: aborting due to previous error
Build failed, waiting for other jobs to finish...
error: Could not compile `julia-set`.

我真的不知道那里发生了什么。我不知道为什么我需要手动标记SendSync插入插值函数的盒装返回类型。尽管如此,我只是不断添加编译器建议的标记,直到一切正常。

真正的问题是,虽然我想我有一个很好的猜测,为什么你不能只标记一个盒装的闭包'static,但我不知道在这种情况下需要什么生命周期或如何修复它。

我确实猜想问题可能是我试图一次从两个读取借阅中引用闭包(这应该没问题,但我很绝望);无论如何,包裹interpolate在 an 中Rc会给出完全相同的错误,所以这不是问题。

4

1 回答 1

1

问题实际上在这里:

pub fn sequential_image<F>(
    ...,
    interpolate: &Box<Fn(u32, u32) -> Complex64>,
    ...) -> ...

interpolate不期望 a ,并且 Rust 在处理所有这些复杂性的&Box<Fn(u32, u32) -> Complex64 + Send + Sync>差异方面非常糟糕。

一种解决方案是在它被调用的地方进行演员表:

sequential_image(width, height, &default_julia,
    &(interpolate as Box<Fn(u32, u32) -> Complex64>),
threshold)

但这需要一个价值案例sequential_image并且非常丑陋。

一个更好的方法是将参数固定为sequential_image更通用且更容易让编译器推理的东西:基本指针。

pub fn sequential_image<F>(
    ...,
    interpolate: &Fn(u32, u32) -> Complex64,
    ...) -> ...

现在你可以调用它

sequential_image(width, height, &default_julia,
    &*interpolate,
threshold)

并且编译器可以自己完成所有的方差魔术。

于 2016-08-02T11:22:51.390 回答