异步执行方式改称同步执行方式

对于一些异步执行方式, 为了上层操作简单,需要改称同步方式,今天写了个测试代码

#include <map>
#include <string>
#include <iterator>
/
// CEventTestDlg dialog

#define MAP_EVENT std::map<std::string, HANDLE>

class CEventTestDlg : public CDialog
{
// Construction
public:
 CEventTestDlg(CWnd* pParent = NULL); // standard constructor

// Dialog Data
 //{{AFX_DATA(CEventTestDlg)
 enum { IDD = IDD_EVENTTEST_DIALOG };
  // NOTE: the ClassWizard will add data members here
 //}}AFX_DATA

 // ClassWizard generated virtual function overrides
 //{{AFX_VIRTUAL(CEventTestDlg)
 protected:
 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
 //}}AFX_VIRTUAL

// Implementation
protected:
 HICON m_hIcon;

 // Generated message map functions
 //{{AFX_MSG(CEventTestDlg)
 virtual BOOL OnInitDialog();
 afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
 afx_msg void OnPaint();
 afx_msg HCURSOR OnQueryDragIcon();
 virtual void OnOK();
 afx_msg void OnDownOver();
 virtual void OnCancel();
 afx_msg void OnButton2();
 //}}AFX_MSG
 DECLARE_MESSAGE_MAP()

 std::map<std::string, HANDLE> m_mapEvent;
 std::string m_strEvent;
};

---------------------------------------------------------------------------------------------------------

#include "stdafx.h"
#include "EventTest.h"
#include "EventTestDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


/
// CAboutDlg dialog used for App About

class CAboutDlg : public CDialog
{
public:
 CAboutDlg();

// Dialog Data
 //{{AFX_DATA(CAboutDlg)
 enum { IDD = IDD_ABOUTBOX };
 //}}AFX_DATA

 // ClassWizard generated virtual function overrides
 //{{AFX_VIRTUAL(CAboutDlg)
 protected:
 virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
 //}}AFX_VIRTUAL

// Implementation
protected:
 //{{AFX_MSG(CAboutDlg)
 //}}AFX_MSG
 DECLARE_MESSAGE_MAP()
};

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
 //{{AFX_DATA_INIT(CAboutDlg)
 //}}AFX_DATA_INIT
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
 CDialog::DoDataExchange(pDX);
 //{{AFX_DATA_MAP(CAboutDlg)
 //}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
 //{{AFX_MSG_MAP(CAboutDlg)
  // No message handlers
 //}}AFX_MSG_MAP
END_MESSAGE_MAP()

 

unsigned long __stdcall DownThread(void* pHwnd) //下载线程
{
 HWND hWnd = *(HWND*)pHwnd;
 
 // 模拟操作
 Sleep(1000*5);

 SendNotifyMessage(hWnd, WM_USER+0x122, 0, 0);

 Sleep(1000*5);
 SendNotifyMessage(hWnd, WM_USER+0x123, 0, 0);
 //PostMessage(hWnd, WM_USER+0x123, 0, 0);
 return 0;
}

/
// CEventTestDlg dialog

CEventTestDlg::CEventTestDlg(CWnd* pParent /*=NULL*/)
 : CDialog(CEventTestDlg::IDD, pParent)
{
 //{{AFX_DATA_INIT(CEventTestDlg)
  // NOTE: the ClassWizard will add member initialization here
 //}}AFX_DATA_INIT
 // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
 m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CEventTestDlg::DoDataExchange(CDataExchange* pDX)
{
 CDialog::DoDataExchange(pDX);
 //{{AFX_DATA_MAP(CEventTestDlg)
  // NOTE: the ClassWizard will add DDX and DDV calls here
 //}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CEventTestDlg, CDialog)
 //{{AFX_MSG_MAP(CEventTestDlg)
 ON_WM_SYSCOMMAND()
 ON_WM_PAINT()
 ON_WM_QUERYDRAGICON()
 ON_MESSAGE(WM_USER+0x122, OnButton2)
 ON_MESSAGE(WM_USER+0x123, OnDownOver)
 //}}AFX_MSG_MAP
END_MESSAGE_MAP()

/
// CEventTestDlg message handlers

BOOL CEventTestDlg::OnInitDialog()
{
 CDialog::OnInitDialog();

 // Add "About..." menu item to system menu.

 // IDM_ABOUTBOX must be in the system command range.
 ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
 ASSERT(IDM_ABOUTBOX < 0xF000);

 CMenu* pSysMenu = GetSystemMenu(FALSE);
 if (pSysMenu != NULL)
 {
  CString strAboutMenu;
  strAboutMenu.LoadString(IDS_ABOUTBOX);
  if (!strAboutMenu.IsEmpty())
  {
   pSysMenu->AppendMenu(MF_SEPARATOR);
   pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  }
 }

 // Set the icon for this dialog.  The framework does this automatically
 //  when the application's main window is not a dialog
 SetIcon(m_hIcon, TRUE);   // Set big icon
 SetIcon(m_hIcon, FALSE);  // Set small icon
 
 // TODO: Add extra initialization here
 
 return TRUE;  // return TRUE  unless you set the focus to a control
}

void CEventTestDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
 if ((nID & 0xFFF0) == IDM_ABOUTBOX)
 {
  CAboutDlg dlgAbout;
  dlgAbout.DoModal();
 }
 else
 {
  CDialog::OnSysCommand(nID, lParam);
 }
}

// If you add a minimize button to your dialog, you will need the code below
//  to draw the icon.  For MFC applications using the document/view model,
//  this is automatically done for you by the framework.

void CEventTestDlg::OnPaint()
{
 if (IsIconic())
 {
  CPaintDC dc(this); // device context for painting

  SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

  // Center icon in client rectangle
  int cxIcon = GetSystemMetrics(SM_CXICON);
  int cyIcon = GetSystemMetrics(SM_CYICON);
  CRect rect;
  GetClientRect(&rect);
  int x = (rect.Width() - cxIcon + 1) / 2;
  int y = (rect.Height() - cyIcon + 1) / 2;

  // Draw the icon
  dc.DrawIcon(x, y, m_hIcon);
 }
 else
 {
  CDialog::OnPaint();
 }
}

// The system calls this to obtain the cursor to display while the user drags
//  the minimized window.
HCURSOR CEventTestDlg::OnQueryDragIcon()
{
 return (HCURSOR) m_hIcon;
}

void CEventTestDlg::OnOK()
{
 HANDLE hEvent = NULL;
 m_strEvent = "file or folder guid";

 hEvent = CreateEvent(NULL, FALSE, FALSE, m_strEvent.c_str());
 m_mapEvent[m_strEvent] = hEvent;

 unsigned long TID1;
 CreateThread(NULL, 0, &DownThread, (void*)&m_hWnd, NULL, &TID1);

 DWORD dwWaitResult;
 while(TRUE)
 {
  dwWaitResult = WaitForSingleObject(hEvent, 50/*INFINITE*/);
  
  if(WAIT_OBJECT_0 == dwWaitResult) 
  { 
   //事件完成处理
   break;
  }

  MSG  msg; 
  int  nExitCode  =  0; 
  
  while  (::PeekMessage(&msg,  NULL,  0,  0,  PM_REMOVE)) 
  { 
   if  (msg.message  ==  WM_QUIT) 
   {                                                             
    ::PostQuitMessage(nExitCode); 
    break; 
   } 

   if  (GetMessage(&msg,NULL,  0,0)) 
   { 
    ::TranslateMessage(&msg); 
    ::DispatchMessage(&msg); 
   } 
  } 

 }
  

 ::MessageBox(NULL, "ok", "测试", MB_OK);
// 
// CDialog::OnOK();
}

void CEventTestDlg::OnDownOver()
{
 MAP_EVENT::iterator itHandle = m_mapEvent.find(m_strEvent); 
 if (itHandle != m_mapEvent.end())
 {  
  if (itHandle->second)
  {
   SetEvent(itHandle->second);
  }
 }
}

void CEventTestDlg::OnCancel()
{
 // TODO: Add extra cleanup here
 
 CDialog::OnCancel();
}

void CEventTestDlg::OnButton2()
{
 
 ::MessageBox(NULL, "进度条改变", "", MB_OK);
}

在Spring Boot中集成MyBatis进行增删改查操作是相对简单的,以下是一个常见的方法: 1. 首先,确保已经在pom.xml文件中添加了MyBatis和数据库驱动的依赖。通常情况下,需要添加以下依赖: ```xml <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> ``` 2. 创建一个用于映射数据库表的实体类。在实体类中使用注解来定义表名、字段名以及其他相关信息。 3. 创建一个Mapper接口,用于定义数据库操作的方法。在方法上使用注解来指定SQL查询语句。 4. 创建一个Mapper XML文件,将SQL语句与Mapper接口的方法进行映射。在XML文件中编写SQL语句,并使用占位符来引用实体类中的字段。 5. 在application.properties或application.yml配置文件中配置数据库连接信息,例如数据库URL、用户名和密码等。 6. 在Spring Boot的启动类上添加注解@EnableMybatis,并使用注解@MapperScan指定Mapper接口所在的包。 7. 现在可以在Spring Boot的其他组件中使用自动注入的Mapper接口,调用其中定义的方法来进行数据库的增删改查操作。 需要注意的是,以上只是一个简单的示例,具体的实现方式可能因项目的具体需求和数据库的不同而有所差异。可以参考中的Spring Boot整合MyBatis的章节获取更详细的教程和代码示例。 Spring Boot整合mybatis
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值