⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 alarm1dlg.cpp

📁 关于台湾研华远程以太网模块上位机控制源代码
💻 CPP
字号:
// Alarm1Dlg.cpp : implementation file
//

#include "stdafx.h"
#include "Alarm1.h"
#include "Alarm1Dlg.h"

#include <winsock2.h>
#include "..\..\..\include\adamtcp.h"

UINT ThreadProc( LPVOID lpParam );

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

char			szIPAddress[20];
static int		iTotalReceive;
static int		iTotalTimeout;
static int		iThreadIndex;
//----------------------------------------------
struct _StreamData   *pStreamData,StreamData;
struct _AlarmInfo    *pAlarmInfo,AlarmInfo;
static BYTE byLoopFlag=1;
HANDLE    hEvent;
/////////////////////////////////////////////////////////////////////////////
// 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()

/////////////////////////////////////////////////////////////////////////////
// CAlarm1Dlg dialog

CAlarm1Dlg::CAlarm1Dlg(CWnd* pParent /*=NULL*/)
	: CDialog(CAlarm1Dlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CAlarm1Dlg)
	m_strIPAddress = _T("");
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CAlarm1Dlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAlarm1Dlg)
	DDX_Text(pDX, IDC_EDIT_IPADDRESS, m_strIPAddress);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAlarm1Dlg, CDialog)
	//{{AFX_MSG_MAP(CAlarm1Dlg)
	ON_WM_SYSCOMMAND()
	ON_WM_PAINT()
	ON_WM_QUERYDRAGICON()
	ON_BN_CLICKED(ID_EXIT, OnExit)
	ON_BN_CLICKED(ID_START, OnStart)
	ON_BN_CLICKED(ID_STOP, OnStop)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAlarm1Dlg message handlers

BOOL CAlarm1Dlg::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
	m_strIPAddress="172.18.1.41";
	SetDlgItemText(IDC_EDIT_IPADDRESS,m_strIPAddress);

	// get the DLL version 
	char   szCh[20];
    int    iVersion;    
 
	iVersion=ADAMTCP_GetDLLVersion();
	_ltoa( iVersion, szCh, 16 );
	SetDlgItemText(IDC_EDIT_DLLVER, szCh);

    //--- To initialize DLL to work ---
    int   iRetVal;

    iRetVal=ADAMTCP_Open();
    if( iRetVal!=0 )
    {
        MessageBox("ADAMTCP_Open() Failure !!!");
    }

    (CButton *)GetDlgItem(ID_STOP)->EnableWindow( FALSE );
	
	return TRUE;  // return TRUE  unless you set the focus to a control
}

void CAlarm1Dlg::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 CAlarm1Dlg::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 CAlarm1Dlg::OnQueryDragIcon()
{
	return (HCURSOR) m_hIcon;
}

void CAlarm1Dlg::OnExit() 
{
	// TODO: Add your control notification handler code here
    //--- Finally, calling ADAMTCP_Close() to release all allocated resource  ---
    ADAMTCP_Close();

	// TODO: Add your control notification handler code here
	CDialog::OnOK();		
}

void CAlarm1Dlg::OnStart() 
{
	// TODO: Add your control notification handler code here
	int       iRetVal; 
    CString   strText,strTemp;

	(CButton *)GetDlgItem(ID_START)->EnableWindow( FALSE );
	(CButton *)GetDlgItem(ID_STOP)->EnableWindow( TRUE );

	m_bStopThread = FALSE;
	m_pThread = NULL;

    m_iTotalReceive=0;
    m_iTotalTimeout=0;
    m_iThreadIndex=0;

    // get the 5000/TCP's IP Address
	GetDlgItemText(IDC_EDIT_IPADDRESS,szIPAddress,20);
    //MessageBox( szIPAddress);

    //-----  create a event for synchronization ---------------
    hEvent = CreateEvent(NULL,
			     FALSE,   // auto reset
			     FALSE,  // init state as Non-Signal
			     NULL);

    //--- adding the first 5000/TCP for streaming ----
    iRetVal=ADAMTCP_AddTCPForStream(szIPAddress);
    if( iRetVal<0 )
    {
		MessageBox("ADAMTCP_AddTCPForStream() Failure !!!");
    }

	((CListBox*)GetDlgItem(IDC_LIST_STREAM))->ResetContent();
    m_pListBox=(CListBox*)GetDlgItem(IDC_LIST_STREAM);

	if( m_pThread == NULL )
	{
		m_ThreadData.hEvent = &hEvent;
		m_ThreadData.lpStopThread = &m_bStopThread;
		m_ThreadData.TotalReceive=&m_iTotalReceive;
        m_ThreadData.TotalTimeout=&m_iTotalTimeout;
        m_ThreadData.ThreadIndex=&m_iThreadIndex;
		m_ThreadData.pListBox=m_pListBox;
  	    // Start the thread.
		m_pThread =
			AfxBeginThread(ThreadProc, (LPVOID) &m_ThreadData);
	}

    //--- only receiving sream data when an alarm occur ---
    ADAMTCP_SetStreamAlarmState(ADAMTCP_ReceiveStreamWhenAlarm);

    //--- Starting to receive the streaming data come from 5000/TCP ---
    ADAMTCP_StartStream( &hEvent);	
}

void CAlarm1Dlg::OnStop() 
{
	// TODO: Add your control notification handler code here
	HANDLE hThread = m_pThread->m_hThread;

	// Set the flag to kill the thread to TRUE;
    m_bStopThread = TRUE;

	// Wait for the thread to end.
	::WaitForSingleObject( hThread, 1000 );

    //--- Stop receiving the streaming data come from 5000/TCP ---	
	ADAMTCP_StopStream( );
    //--- Close the event handle ---
    CloseHandle(hEvent);

	(CButton *)GetDlgItem(ID_START)->EnableWindow( TRUE );
	(CButton *)GetDlgItem(ID_STOP)->EnableWindow( FALSE );

    m_iTotalReceive=0;
    m_iTotalTimeout=0;
    m_iThreadIndex=0;	
}

UINT ThreadProc( LPVOID lpParam )
{
	THREAD_DATA *lpThreadData =
		(THREAD_DATA *) lpParam;
    BOOL   *bStopThread=(BOOL*)lpParam ; 
	int    iRetVal;
    CString   strText; 
	//char   szCh[20];

	while( !(*lpThreadData->lpStopThread) )
	{
		*lpThreadData->ThreadIndex=101;
	    if(WaitForSingleObject(*lpThreadData->hEvent,1000)==WAIT_OBJECT_0)  // waiting for 1 seconds
	    { 		
			   if( (*lpThreadData->TotalReceive)%3==2 )
			   {
				   (lpThreadData->pListBox)->ResetContent();
			   }
			   (*lpThreadData->TotalReceive)++;

			   iRetVal=ADAMTCP_ReadStreamData(szIPAddress,&StreamData);
               pStreamData=(struct _StreamData *)&StreamData;

 		       strText.Format( "Receive:%d", *lpThreadData->TotalReceive);
		       (lpThreadData->pListBox)->InsertString( -1, strText );
			  
	           strText.Format ("DI/DO data of Slot0 to Slot 7:\n");
			   (lpThreadData->pListBox)->InsertString( -1, strText );
			   strText.Format("%04x:%04x:%04x:%04x-%04x:%04x:%04x:%04x\n",StreamData.DIO[0],StreamData.DIO[1],
							       StreamData.DIO[2],StreamData.DIO[3],
							       StreamData.DIO[4],StreamData.DIO[5],	
							       StreamData.DIO[6],StreamData.DIO[7]);
			   (lpThreadData->pListBox)->InsertString( -1, strText );
			   strText.Format("AI/Ao data of Slot0:\n");
			   (lpThreadData->pListBox)->InsertString( -1, strText );
               strText.Format("%04x:%04x:%04x:%04x-%04x:%04x:%04x:%04x\n",StreamData.Slot0[0],StreamData.Slot0[1],
							       StreamData.Slot0[2],StreamData.Slot0[3],
							       StreamData.Slot0[4],StreamData.Slot0[5],
							       StreamData.Slot0[6],StreamData.Slot0[7]);	
			   (lpThreadData->pListBox)->InsertString( -1, strText );
			   strText.Format("AI/AO data of Slot1:\n");
			   (lpThreadData->pListBox)->InsertString( -1, strText );
               strText.Format("%04x:%04x:%04x:%04x-%04x:%04x:%04x:%04x\n",StreamData.Slot1[0],StreamData.Slot1[1],
							       StreamData.Slot1[2],StreamData.Slot1[3],
							       StreamData.Slot1[4],StreamData.Slot1[5],
							       StreamData.Slot1[6],StreamData.Slot1[7]);			
			   (lpThreadData->pListBox)->InsertString( -1, strText );
			   //--- reading the alarm information ---
               while( (iRetVal=ADAMTCP_ReadAlarmInfo( &AlarmInfo ))==ADAMTCP_NoError )  
               {
                  strText.Format("--- getting the alarm information ---",AlarmInfo.szIP,AlarmInfo.szDateTime);
			      (lpThreadData->pListBox)->InsertString( -1, strText );
                  strText.Format("The 5000/TCP(%s) occur an alarm at %s !",AlarmInfo.szIP,AlarmInfo.szDateTime);
			      (lpThreadData->pListBox)->InsertString( -1, strText );
                  strText.Format("in Slot:%d Channel:%d  ",AlarmInfo.bySlot,AlarmInfo.byChannel);
			      (lpThreadData->pListBox)->InsertString( -1, strText );
                  strText.Format("Alarm type: %s alarm    Alarm Status: %s",(AlarmInfo.byAlarmType==1)?"High":"Low",
			  	   						      (AlarmInfo.byAlarmStatus==1)?"On":"Off");
			      (lpThreadData->pListBox)->InsertString( -1, strText );			   
               }
		}
		else
		{
			(*lpThreadData->TotalTimeout)++;
		}

	}
	(*lpThreadData->ThreadIndex)=102;
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -