c++ builder XE4, 10.2 Tokyo > TTimer > N回リトライする
C++ Builder XE4
RAD Studio 10.2 Tokyo Update 2 (追記: 2017/12/27)
動作仕様
- ある指定のインターバルごとに処理をする
- 最大N回のリトライをする
- 成功した時点で処理をやめる
なんらかのインターバル処理が必要となる。
スレッド実装か、TTimer実装など考えられる。
code v0.1
TTimer実装した。
//---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE で管理されるコンポーネント
TButton *btnStart;
TCheckBox *chkOK;
TTimer *Timer1;
TMemo *Memo1;
void __fastcall btnStartClick(TObject *Sender);
void __fastcall Timer1Timer(TObject *Sender);
private: // ユーザー宣言
public: // ユーザー宣言
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
static int s_index;
static const int kMaxRetry = 6;
void __fastcall TForm1::btnStartClick(TObject *Sender)
{
s_index = 0;
Memo1->Clear();
Timer1->Enabled = true;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Timer1Timer(TObject *Sender)
{
String msg = DateTimeToStr(Now());
Memo1->Lines->Add(msg);
s_index++;
if (chkOK->Checked || s_index >= kMaxRetry) {
Timer1->Enabled = false;
Memo1->Lines->Add(L"Stop");
}
}
//---------------------------------------------------------------------------
結果
例として、Timer1->Interval = 5000; // msecとした。
最大回数リトライ
途中で成功した場合
chkOKをチェックして、途中で成功させた場合。
備考
TTimer->Enabled=true;してから最初の1回が開始されるまでインターバルmsec
待つことになる。
TTimer->Enabled=true;した時点で処理をしたい場合は、別途処理をコールすることになる。
上記の例ではchkOKによる処理の成功判別としたが、TTimer内の処理自体の成功を判別するようにして使うのを想定している。
TTimer内の処理を長くする設計はまずいので、通常はTTimer内はフラグを立てるだけにしておいて、そのフラグが立っていることを判別して処理を始める、というような使い方も検討するのがいい。組込み系の割込み処理と同じ考え。
code v0.2
処理の成功判断を別クラスから通知することを検討して以下のように変更した。
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
static int s_index;
static const int kMaxRetry = 6;
void __fastcall TForm1::btnStartClick(TObject *Sender)
{
s_index = 0;
Memo1->Clear();
chkOK->Checked = false;
Timer1->Enabled = true;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Timer1Timer(TObject *Sender)
{
if (chkOK->Checked == false) {
String msg = DateTimeToStr(Now());
Memo1->Lines->Add(msg);
}
s_index++;
if (chkOK->Checked || s_index >= kMaxRetry) {
Timer1->Enabled = false;
Memo1->Lines->Add(L"Stop");
}
}
//---------------------------------------------------------------------------
以下の二通りの方法がある。
- chkOK->Checkedを外部クラスからtrueにする
- Timer1->Enabledを外部クラスからfalseにする
1の場合は、処理成功後に1回Timer1Timer()がコールされる分、余分である。
Author And Source
この問題について(c++ builder XE4, 10.2 Tokyo > TTimer > N回リトライする), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/8f7502d64a8b81f99445著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .