我需要使用Indy和Delphi XE2开发具有持久连接的TCP服务器和客户端。几乎一切都进展顺利。
此服务是一项关键服务,因此我需要在服务器中加入一些保护措施,以防止不必要的处理或冻结。因此,我创建了一个线程来检查关键进程的超时。
我做了这个TIdSync
课程:
type
TSync = class(TIdSync)
protected
procedure DoSynchronize; override;
end;
procedure TSync.DoSynchronize;
var
oTimeOut: TThreadTimeOut;
begin
...
oTimeOut := TThreadTimeOut.Create(AContext, WaitTimeOut*2, Self);
oTimeOut.Start;
...
// the code below is just a test, **this is the key to my question**
// if something goes wrong in any subroutine of DoSynchronize, I want
// to stop execution of this object and destroy it. In the thread above
// I want to test when the timeout elapses. If this IdSync object still
// exists and if this routine is still executing, I want to stop execution
// of any routine or subroutine of this object to avoid freezing the
// service and stop memory consumption and CPU usage
while true do begin
Sleep(100);
end;
//If everything is OK
oTimeOut.Stop;
end;
procedure TThreadTimeOut.execute;
var
IniTime: DWORD;
begin
IniTime := GetTickCount;
while GetTickCount < IniTime + TimeOut do begin
Sleep(SleepInterval);
if StopTimeOut then
Exit;
end;
if ((Terminated = False) or (StopTimeOut)) and (IoHandler <> nil) then begin
IOHandler.Connection.IOHandler.Close;
IdSync.Free; //here I try to make things stop execution but the loop to test is still running
end;
end;
上述代码可以在超时结束时停止接收和发送数据,但不能停止执行TIdSync
。我怎么能这样做?
答案 0 :(得分:3)
TIdSync
中没有超时逻辑(主要是因为TThread.Synchronize()
中没有超时逻辑,TIdSync
在内部使用。
在TIdSync
对象运行时无法销毁它。同步过程不能在排队执行或开始运行后过早中止。必须允许它运行完成。
TIdSync.DoSynchronize()
(或与TThread.Queue()
或TThread.Synchronize()
同步的任何方法)在主UI线程的上下文中执行。长时间运行的代码应该在自己的线程中执行,而不是在主UI线程中执行。确保不阻止主UI线程及时处理新消息和同步请求。
如果要停止同步过程,则需要让它处理TEvent
对象或工作线程在需要时可以发出信号的其他标志,并且该过程会定期检查以便它可以尽快退出(优雅或通过提出例外)。
任何性质的同步操作应该很短,以防止阻塞/死锁,资源匮乏等。您需要重新考虑您的设计。你做错了事。