我正在寻找vibe-d-0.7.28
的源代码,但fileserver.d
没有显示任何关于这一点的光。实际上,sendFileImpl()
函数是该任务的主要实现,并且没有任何对字节范围头的引用。
你知道它是否被支持或如何工作吗?
从#1634开始这是可能的:
#!/usr/bin/env dub
/+ dub.sdl:
name "mini_vibed"
dependency "vibe-d" version="~>0.8.0-beta.4"
versions "VibeDefaultMain"
+/
import vibe.d;
shared static this()
{
auto settings = new HTTPServerSettings;
settings.port = 8080;
auto router = new URLRouter;
router.get("/full_file", (scope req, scope res) {
auto inStream = openFile(__FILE_FULL_PATH__);
res.bodyWriter.write(inStream);
});
router.get("/partial_file", serveStaticFile(__FILE_FULL_PATH__));
router.get("*", (scope req, scope res) {
res.writeBody("Please try /full_file or /partial_file");
});
listenHTTP(settings, router);
}
chmod +x
文件或使用dub --single
运行它。您可以使用curl
来测试它:
curl --header "Range: bytes=0-200" localhost:8080/full_file
curl --header "Range: bytes=0-200" localhost:8080/partial_file