使用soui开发的mbc,只支持windows版本
w1146869587
2022-01-24 4905e2e7537d507f218e8e9595485e09d9f3a2b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#include "StdAfx.h"
#include "MBErrTransMgr.h"
 
 
CMBErrTransMgr::CMBErrTransMgr(void)
{
    RemoveAllErrFile();
    m_nDisplayErrorCount = 0;
}
 
 
CMBErrTransMgr::~CMBErrTransMgr(void)
{
    RemoveAllErrFile();
}
 
void  CMBErrTransMgr::Init(UINT  nDisplayErrorCount)
{
    m_nDisplayErrorCount = nDisplayErrorCount;
}
 
// Ìí¼ÓÊý¾Ý
bool   CMBErrTransMgr::AddErrFile(CAutoRefPtr<CMBErrFileInfo> & pErrFileInfo)
{    
    CSingleLock        lock( &m_cs, true );
 
    m_vectorTransInfo.push_back(pErrFileInfo);
    return true;
}
 
bool CMBErrTransMgr::AddRealTimeErr(CAutoRefPtr<CMBErrFileInfo> & pErrFileInfo)
{
    CSingleLock        lock( &m_cs, true );
     
 
    int nCount = m_vectorTransInfo.size();
    if( nCount >= m_nDisplayErrorCount )
    { 
        m_vectorTransInfo.pop_back(); // ÒƳýÒ»ÌõÊý¾Ý                    
    } 
 
    m_vectorTransInfo.insert(m_vectorTransInfo.begin(),pErrFileInfo ); 
 
    return true;
}
 
// ²éÕÒ
CMBErrFileInfo * CMBErrTransMgr::GetErrFile( CString strID )
{
    CSingleLock        lock( &m_cs, true );
 
    CMBErrFileAutoPtrVector::iterator    it;
    CMBErrFileInfo* pErrFileInfo = NULL;
 
    for( it = m_vectorTransInfo.begin();it != m_vectorTransInfo.end();it++ )
    {
        pErrFileInfo = *it;
        if( pErrFileInfo->m_strID == strID )
        {
            return pErrFileInfo;
        }
    }
     
    return NULL;
}
 
// ÒƳý
bool  CMBErrTransMgr::RemoveAllErrFile()
{
    CSingleLock        lock( &m_cs, true );
 
    m_vectorTransInfo.clear();
    return true;
}
 
bool  CMBErrTransMgr::RemoveErrFile( CString strID )
{
    CSingleLock        lock( &m_cs, true );
 
    CMBErrFileInfo* pErrFileInfo  = GetErrFile(strID);
    if( NULL == pErrFileInfo )
        return false;
 
    CMBErrFileAutoPtrVector::iterator    it = find( m_vectorTransInfo.begin( ),m_vectorTransInfo.end( ), pErrFileInfo );
    if ( it != m_vectorTransInfo.end( ) )
    {
        m_vectorTransInfo.erase(it);
    }
    return true;
}
 
 
void  CMBErrTransMgr::CopyErrTransVector( CMBErrFileAutoPtrVector &vectorTransInfo )
{
    CSingleLock        lock( &m_cs, true ); 
    vectorTransInfo.clear();
    vectorTransInfo = m_vectorTransInfo;    
}
 
void  CMBErrTransMgr::GetErrFileIDS( CString &strUploadIDS,CString &strDownLoadIDS )
{
    CSingleLock        lock( &m_cs, true );
 
    strUploadIDS.Empty();
    strDownLoadIDS.Empty();
 
    CMBErrFileAutoPtrVector::iterator    it;
    CMBErrFileInfo* pErrFileInfo = NULL;
 
    for( it = m_vectorTransInfo.begin();it != m_vectorTransInfo.end();it++ )
    {
        pErrFileInfo = *it;
        if( pErrFileInfo->m_nType == 1 )  // ÀàÐÍ 1 OI_MBC_UPLOAD_HISTORY_FILE; 0 OI_MBC_DOWNLOAD_HISTORY_FILE
        {
            strUploadIDS += _T("'") + pErrFileInfo->m_strID + _T("'") ; 
            strUploadIDS += _T(",");
        
        }else
        {
            strDownLoadIDS += _T("'") + pErrFileInfo->m_strID + _T("'") ; 
            strDownLoadIDS += _T(",");
        }
    }
    if( !strUploadIDS.IsEmpty() )
    {
        strUploadIDS = strUploadIDS.Left(strUploadIDS.GetLength() -1); 
    } 
    if( !strDownLoadIDS.IsEmpty() )
    {
        strDownLoadIDS = strDownLoadIDS.Left(strDownLoadIDS.GetLength() -1); 
    }  
}
 
int  CMBErrTransMgr::GetCount()
{
    return m_vectorTransInfo.size();
}