我有以下代码:
import std.stdio;
import database;
import router;
import config;
import vibe.d;
void main()
{
Config config = new Config();
auto settings = new HTTPServerSettings;
settings.port = 8081;
settings.bindAddresses = ["::1", "127.0.0.1"];
auto router = new URLRouter();
router.get("/*", serveStaticFiles("./html"));
Database database = new Database(config);
database.MySQLConnect(); // all DB methods are declared here
router.registerRestInterface(new MyRouter(database));
router.get("*", &myStuff); // all other request
listenHTTP(settings, router);
logInfo("Please open http://127.0.0.1:8081/ in your browser.");
runApplication();
}
void myStuff(HTTPServerRequest req, HTTPServerResponse res) // I need this to handle any accessed URLs
{
writeln(req.path); // getting URL that was request on server
// here I need access to DB methods to do processing and return some DB data
}
我需要创建router.get("*", &myStuff);
来处理任何与任何REST实例无关的网址。
我不知道如何从myStuff()
答案 0 :(得分:1)
没有尝试过,但使用'部分'可能是一个解决方案。
https://dlang.org/phobos/std_functional.html#partial
void myStuff(Database db, HTTPServerRequest req, HTTPServerResponse res) { ... }
void main()
{
import std.functional : partial;
...
router.get("*", partial!(myStuff, database));
...
}
Partial创建一个函数,第一个参数绑定到给定值 - 因此调用者不需要知道它。我个人不喜欢globals /,singletons /等,并试图注入依赖项。虽然实现可能会变得有点复杂,但这确实简化了测试。
上面的示例以类似于Constructor Injection的方式注入依赖项,如下所述:
https://en.wikipedia.org/wiki/Dependency_injection#Constructor_injection
当注入这样的依赖项时,您还可以快速了解调用此函数所需的组件。如果依赖性的数量增加,请考虑使用其他方法 - 例如。注入ServiceLocator。
https://martinfowler.com/articles/injection.html#UsingAServiceLocator
罗尼
答案 1 :(得分:0)
我没有使用vibe.d的经验,但这可能是一个解决方案:
Database database;
shared static this(){
Config config = new Config();
database = new Database(config);
}
void main(){
(...)
void myStuff(HTTPServerRequest req, HTTPServerResponse res){
database.whatever;
}