gpt4 book ai didi

javascript - Apache Thrift 中的一般错误处理

转载 作者:太空宇宙 更新时间:2023-11-03 15:47:51 24 4
gpt4 key购买 nike

TLDR:有没有更好的方法来通知客户端服务器上发生了意外情况,而不会抛出 IDL 中定义的异常。

澄清一下:我目前在服务器端(THttpServer、TThreadPooledServer)使用 Thrift 和 C#,在客户端使用 JavaScript AngularJS 应用程序(我有一些测试在 C# 上运行客户端 foo)。

所以...我知道 Apache Thrift 中有异常处理。我可以在 IDL 中定义一个并告诉服务方法有可能发生该异常。当这种情况发生时,客户会收到通知,说这个异常发生了,并且可以采取相应的行动。

但是,如果由于某种原因,在处理程序中执行的代码继续执行并终止并抛出异常,则客户端只会收到“无法读取,远程端已关闭”错误,仅此而已。我真的看不到那里发生了什么,我不得不开始调试服务器而不知道要看什么。当然,我可以在服务器端记录该异常(我打算这样做),但这可能会变得困惑,并且也需要一些时间来查看。

我真正想要的是让客户端至少知道服务器端发生的事情,而不仅仅是让它得到“是的。连接刚刚关闭。不知道为什么会发生。晚上好!”。

实现这一点的一种方法是创建一个 GeneralExceptions.thrift 文件并在其中定义一个通用异常。然后将此文件包含在所有其他 .thrift 文件中,并让每个服务方法都将异常视为可能发生的异常。然后围绕我的 thrift 处理程序方法制作巨大的 try catch block ,以捕获所有内容及其母亲,并将其包装在一个简洁的通用 thrift 异常包中,并将其发送给客户端。

问题是......必须在任何地方都使用这些 try catch block 会很烦人。并且必须在所有其他文件中包含一个 thrift 文件,并让每个服务方法声明它可以抛出这个一般异常......好吧,我们只是说......这是一项大量的工作,而且人们就像人们通常那样可能只是忘记在这些服务方法中包含文件或不添加异常,以及如果您有多个人或女孩在任何给定的事情上工作时往往会发生的所有其他好事。

那么有没有人知道另一种方式来通知客户端服务器上发生了“事情”而无需跳过大量的箍?

最佳答案

服务器既不应该挂掉也不应该关闭连接。我最近修复了 exactly that problem for Delphi在 Trunk 中(将成为 0.9.3 的一部分)。如果 C# 遇到同样的问题,请提交工单(包括测试用例)和/或提供补丁。

如何捕获服务器方法中的任何意外异常?该模式对普通 COM 也很有用,区别不大:

// this is a service method
void FooBar() {
try
{
// lets see whether we can divide by zero ...
var a = 0;
var b = 1/a;
Console.Writeln("It works!!");
}
catch(e:TException)
{
throw; // Thrift exception, don't interfere
}
catch(e:Exception)
{
throw new TApplicationException( "WTF?"); // or some other exception
}
}

Problem is... having to have those try catch blocks everywhere would be annoying. And having to include one thrift file in all those other files and have every service method declare that it can throw this general exception... well lets just say... it's a ton of work and with people being the way people usually are they could just forget to include the file or not add the exception in those service methods and all the other nice things that tend to happen if you got more then one guy or gal working on any given thing.

通过一些其他方式生成直接服务器实现并将实际工作转发给其他一些方法和/或类:

// this is a service method
MyResult FooBar( MyArg arg1, MyOtherArg arg2) {
try
{
return pimpl.FooBar(arg1,arg2); // delegate work via pimpl pattern
}
catch(e:TException)
{
throw; // Thrift exception, don't interfere
}
catch(e:Exception)
{
throw new TApplicationException( "WTF?"); // or some other exception
}
}

这非常简单,可以轻松实现自动化。

关于javascript - Apache Thrift 中的一般错误处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27312244/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com