使用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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
#include "StdAfx.h"
#include "MBThreadDownloadDB.h"
#include "MBTransExtendEvents.h"
 
CMBThreadDownloadDB::CMBThreadDownloadDB(void)
{
    m_pDownloadMgr = new CMBDownloadMgr();
    m_bStop        = false;
    m_pTransMgr    = NULL;
    m_pTaskLoopMgr = NULL; 
}
 
 
CMBThreadDownloadDB::~CMBThreadDownloadDB(void)
{
    if(m_pDownloadMgr)
    {
        delete m_pDownloadMgr;
        m_pDownloadMgr = NULL;
    }
}
 
// ¿ªÊ¼Ïß³Ì
void CMBThreadDownloadDB::StartThread()
    if(IsRunning()) 
        return;
 
    BeginThread();    
}
 
// ½áÊøÏß³Ì
void CMBThreadDownloadDB::OverThread()
{
    m_bStop = true;
 
    m_pDownloadMgr->SetEventExe();
    m_pDownloadMgr->SetEventShutdown();
     
 
    if(!IsRunning()) 
        return;
 
    EndThread();
}
 
void CMBThreadDownloadDB::SetTransMgr(CMBTransMgr *pTransMgr)
{
    m_pTransMgr = pTransMgr;
}
 
void CMBThreadDownloadDB::SetTaskLoopMgr(CMBTaskLoopMgr *pTaskLoopMgr)
{
    m_pTaskLoopMgr = pTaskLoopMgr;
}
 
bool CMBThreadDownloadDB::AddDownloadMgr( CMBDownloadRootMgr *pDownloadRootMgr )
{
    bool bRet = m_pDownloadMgr->AddDownloadRootMgr(pDownloadRootMgr);
 
    m_pDownloadMgr->SetEventExe();
     
    return bRet;
}
 
// ÏÂÔØÊ±£¬¹ØÁªµ±Ç°Îļþ
void CMBThreadDownloadDB::DownloadAssCurSelFile(CMBDownloadFileMgr *pDownloadFileMgr,BOOL &bThreadStop )
    if( NULL == pDownloadFileMgr )
        return ;
 
    CString strErrInfo;
    CMBDownloadFileInfoMap::iterator    it;
    CMBDownFileInfo *pDownFileInfo = NULL; 
    CString strCatalogPath,strFileSvr,
        strCabinetID,strCabinetName,strFileName,strFileID,strFrom;
    __int64 nFileSize = 0; 
    int     nIsDir = 0;
    EventTransReqList *pEvt = new EventTransReqList(NULL);   
 
    for( it = pDownloadFileMgr->m_mapDownloadFileInfo.begin();it != pDownloadFileMgr->m_mapDownloadFileInfo.end();it++ )
    {
        // Í£Ö¹         
        if(bThreadStop)
            return;
 
        pDownFileInfo = it->second;        
 
        if( !pDownFileInfo->IsGetDocInfo() )  // µ÷ÓÃGetDocInfo µÄ״̬£º 0 Î´µ÷Ó㬠1 ÕýÔÚµ÷Óã¬2 ÒÑÍê³É
        {  
            m_pTaskLoopMgr->PostGetDocInfoTask( pDownFileInfo,true );
        }        
        strFileName     = pDownFileInfo->GetDownloadFileName();
        strFileSvr      = pDownFileInfo->m_strServerFlag;
        nFileSize       = pDownFileInfo->m_nFileSize;
        strFileID       = pDownFileInfo->m_strFileID;
        strCatalogPath  = pDownFileInfo->m_strCatalogPath;
        strCabinetID    = pDownFileInfo->m_strCabinetID;
        strCabinetName  = pDownFileInfo->m_strCabinetName;
        strFrom         = pDownFileInfo->m_strFrom;
        nIsDir          = pDownFileInfo->m_nIsDir;
 
        // Èç¹ûÊÇ Èí¼þÉÕÖÆ¹¦Äܵã
        if( strFrom == FCTN_FIRE )
        {
             bool bExsit = false;
             CString strFullFileName = pDownFileInfo->GetFullFileName();
             if(!m_pTransMgr->IsFireInSqliteDownloadFile( strFullFileName,strFileID,strFrom,bExsit,strErrInfo ))
             {
                return ;
             }
 
             if( bExsit || CStrFileUtils::IsExist(strFullFileName) )
             {
                continue;
             }
        }
        // Ö±µ½µ÷ÓÃÍê³É
        //if( pDownFileInfo->m_strCanDownload == _T("1") ) // ¿ÉÒÔÏÂÔØ
        if( !strFileID.IsEmpty() ) // ¿ÉÒÔÏÂÔØ
        { 
            CAutoRefPtr<CMBDownloadFileInfo> pDownloadFileInfo(new CMBDownloadFileInfo());
            pDownloadFileInfo->Release(); // ÊÍ·ÅÒýÓüÆÊý
 
            pDownloadFileInfo->m_strID            = CStrFileUtils::GenerateGuid();   // id 
            pDownloadFileInfo->m_strFileSvr         = strFileSvr;   // ·þÎñ·¾¶ 
            pDownloadFileInfo->SetLocalPath(strFileName);    // µ±Ç°Â·¾¶ 
            pDownloadFileInfo->SetStatus(CMBDownloadFileInfo::Status_NoFinish);         // ×´Ì¬  
            pDownloadFileInfo->m_nFileSize     = nFileSize;;       // Îļþ´óС 
            pDownloadFileInfo->m_nIsDir        = nIsDir;          // 1ÊÇĿ¼£¬0 ²»ÊÇ  
            pDownloadFileInfo->m_strFileID     = strFileID; 
            pDownloadFileInfo->m_strServerPath = strCatalogPath;
            pDownloadFileInfo->m_strCabinetID  = strCabinetID;
            pDownloadFileInfo->m_strCabinetName  = strCabinetName;
            pDownloadFileInfo->m_strTAddTime = CStrFileUtils::GetLocalDt();     // Ìí¼Óʱ¼ä 
            pDownloadFileInfo->m_strFrom     = strFrom;
            if(!m_pTransMgr->InsertSqliteDownloadFile( pDownloadFileInfo,strErrInfo )) // ²åÈëÊý¾Ý¿â
            {                
                return ;
            } 
            // Ôö¼ÓÏÂÔØ×ܼǼ
            m_pTransMgr->AddDownloadFileSize(pDownloadFileInfo->m_nFileSize);
            // ÉèÖÃÉÏ´«¶ÓÁÐÉÏ´«Ê¼þ
            m_pTransMgr->GetDownloadQueue()->SetEventExeSet();
        }          
        else  // ²»ÄÜÏÂÔØµÄ·ÅÈëÔçÇëÁбí
        {
            // ¼ÓÈë´íÎóÁбí
            CMBDownFileInfo *pTmpDownFileInfo = new CMBDownFileInfo(*pDownFileInfo); 
            if(!pEvt->AddDownloadFileInfo(pTmpDownFileInfo))
            {
                delete pTmpDownFileInfo;
                pTmpDownFileInfo = NULL;
            }
        }
    }// end for  
 
    int nCount = pEvt->GetCount();
    if( nCount == 0 )
    {
        pEvt->Release();
        return ;
    }
 
    // ·¢ÉäÏûÏ¢
    SNotifyCenter::getSingleton().FireEventAsync(pEvt);
    pEvt->Release();  
}
 
// ÏÂÔØÊ±¹ØÁªÎļþ
void CMBThreadDownloadDB::DownloadAssFile( CMBDownloadFileMgr *pDownloadFileMgr,BOOL &bThreadStop )
    if( NULL == pDownloadFileMgr )
        return ;
 
    CString strErrInfo;
    CMBDownloadFileInfoMap::iterator    it;
    CMBDownFileInfo *pDownFileInfo = NULL; 
    CString strCatalogPath,strFileSvr,
        strCabinetID,strFileName,strFileID,strFrom;
    __int64 nFileSize = 0; 
    
    for( it = pDownloadFileMgr->m_mapDownloadFileInfo.begin();it != pDownloadFileMgr->m_mapDownloadFileInfo.end();it++ )
    {
        // Í£Ö¹         
        if(bThreadStop)
            return;
        pDownFileInfo = it->second;        
        if( !pDownFileInfo->IsGetDocInfo() )  // µ÷ÓÃGetDocInfo µÄ״̬£º 0 Î´µ÷Ó㬠1 ÕýÔÚµ÷Óã¬2 ÒÑÍê³É
        { 
            m_pTaskLoopMgr->PostGetDocInfoTask( pDownFileInfo,true );
        }    
 
        strFileName     = pDownFileInfo->GetDownloadFileName();
        strFileSvr      = pDownFileInfo->m_strServerFlag;
        nFileSize       = pDownFileInfo->m_nFileSize;
        strFileID       = pDownFileInfo->m_strFileID;
        strCatalogPath  = pDownFileInfo->m_strCatalogPath;
        strCabinetID    = pDownFileInfo->m_strCabinetID;
        strFrom         = pDownFileInfo->m_strFrom;
 
        // Èç¹ûÊÇ Èí¼þÉÕÖÆ¹¦Äܵã
        if( strFrom == FCTN_FIRE )
        {
             bool bExsit = false;
             CString strFullFileName = pDownFileInfo->GetFullFileName();
             if(!m_pTransMgr->IsFireInSqliteDownloadFile( strFullFileName,strFileID,strFrom,bExsit,strErrInfo ))
             {
                return ;
             }
 
             if( bExsit || CStrFileUtils::IsExist(strFullFileName) )
             {
                continue;
             }
        }
        // Ö±µ½µ÷ÓÃÍê³É
        if( !strFileID.IsEmpty() ) // ¿ÉÒÔÏÂÔØ
        {  
            CAutoRefPtr<CMBDownloadFileInfo> pDownloadFileInfo(new CMBDownloadFileInfo());
            pDownloadFileInfo->Release(); // ÊÍ·ÅÒýÓüÆÊý
 
            pDownloadFileInfo->m_strID      = CStrFileUtils::GenerateGuid();   // id 
            pDownloadFileInfo->m_strFileSvr = strFileSvr;   // ·þÎñ·¾¶ 
            pDownloadFileInfo->SetLocalPath(strFileName);    // µ±Ç°Â·¾¶ 
            pDownloadFileInfo->SetStatus(CMBDownloadFileInfo::Status_NoFinish);         // ×´Ì¬  
            pDownloadFileInfo->m_nFileSize     = nFileSize;;       // Îļþ´óС 
            pDownloadFileInfo->m_nIsDir        = 0;          // 1ÊÇĿ¼£¬0 ²»ÊÇ  
            pDownloadFileInfo->m_strFileID     = strFileID; 
            pDownloadFileInfo->m_strServerPath = strCatalogPath;
            pDownloadFileInfo->m_strCabinetID  = strCabinetID;
            pDownloadFileInfo->m_strTAddTime = CStrFileUtils::GetLocalDt();     // Ìí¼Óʱ¼ä     
            pDownloadFileInfo->m_strFrom     = strFrom;
            if(!m_pTransMgr->InsertSqliteDownloadFile( pDownloadFileInfo,strErrInfo )) // ²åÈëÊý¾Ý¿â
            {                
                return ;
            }   
            // Ôö¼ÓÏÂÔØ×ܼǼ
            m_pTransMgr->AddDownloadFileSize(pDownloadFileInfo->m_nFileSize);
            // ÉèÖÃÉÏ´«¶ÓÁÐÉÏ´«Ê¼þ
            m_pTransMgr->GetDownloadQueue()->SetEventExeSet();
        }// end if  
    }// end for( )   
}
 
// ÏÂÔØÊ±£¬Ä¿Â¼¹ØÁª
void CMBThreadDownloadDB::DownloadAssDir( CMBDownloadFileMgr *pDownloadFileMgr,BOOL &bThreadStop )
{
    CString strErrInfo;
    CMBDownloadDirInfoMap::iterator    it;
    CMBDownDirInfo *pDownDirInfo = NULL; 
 
    for( it = pDownloadFileMgr->m_mapDownloadDirInfo.begin();it != pDownloadFileMgr->m_mapDownloadDirInfo.end();it++ )
    {
        // Í£Ö¹         
        if(bThreadStop)
            return;
 
        pDownDirInfo = it->second;
        ////////////////////////////Õâ±ßµÄȨÏÞÅжÏÏÈÈ¡Ïû//////////////////////////////////////
        // ½øÐÐȨÏÞÅжϣ¬ÊÇ·ñÓÐÏÂÔØÈ¨ÏÞ
        //if( pDownDirInfo->m_nType !=  CMBDownDirInfo::DOWNDIR_PSN)
        //{
        //    CString strPermit = pDownDirInfo->m_strPermit;
        //    if( !CMBIsCabinetAce::IsCatalogAceDocDownload( strPermit ) )
        //    {
        //        // È¨ÏÞΪ ²»¿ÉÒÔÏÂÔØ
        //        continue;
        //    }        
        //}     
        /////////////////////////endÕâ±ßµÄȨÏÞÅжÏÏÈÈ¡Ïû////////////////////////////////////
        pDownDirInfo->CreateDir();
        if( !pDownDirInfo->IsGetDocList() )
        {
            m_pTaskLoopMgr->PostGetDocListTask( pDownDirInfo,true );
        } 
        
        // ¹ØÁªÏÂÔØÄ¿Â¼ 
        if(!AssociateDownDir( pDownDirInfo,strErrInfo))
            return ;
 
        CMBDownloadFileMgr *pDownloadFileMgr =  pDownDirInfo->GetChildFileMgr();
        if( NULL == pDownloadFileMgr )
            return ;
          
        // ½øÐÐÏÂÔØÐÐΪ 
        //// Èç¹ûÊÇÎļþ
        DownloadAssFile(pDownloadFileMgr,bThreadStop); 
        // Èç¹ûÊÇĿ¼ 
        DownloadAssDir(pDownloadFileMgr,bThreadStop );  
    } 
}
 
bool CMBThreadDownloadDB::AssociateDownDir( CMBDownDirInfo *pDownDirInfo,CString &strErrInfo )
{
    CString strListXML,strCabinetID,strPath,strFrom;
 
    CMBDownloadFileMgr *pDownloadFileMgr =  pDownDirInfo->GetChildFileMgr();
    if( NULL == pDownloadFileMgr )
        return false;
 
    strListXML   = pDownDirInfo->m_strGetDocListRetXml; 
    strCabinetID = pDownDirInfo->m_strCabinetID;
    strPath      = pDownDirInfo->m_strCurDir;
    strFrom      = pDownDirInfo->m_strFrom;
    if( pDownDirInfo->m_nType ==  CMBDownDirInfo::DOWNDIR_UNITORDEPART)
    { 
        if(!pDownloadFileMgr->ParseUnitOrDepartXml( strListXML,strFrom,strCabinetID,strPath,strErrInfo )) 
            return false; 
    }
    else if( pDownDirInfo->m_nType ==  CMBDownDirInfo::DOWNDIR_PSN )
    {
        if(!pDownloadFileMgr->ParsePsnXml( strListXML,strFrom,strCabinetID,strPath,strErrInfo )) 
            return false; 
    }   
    return true;
}
 
UINT CMBThreadDownloadDB::Run()
{  
    CMBDownloadRootMgrVector::iterator    it;
    CMBDownloadRootMgr *pDownloadRootMgr = NULL;
 
    CMBDownloadFileMgrList::iterator    it1;
    CMBDownloadFileMgr *pDownloadFileMgr = NULL; 
 
 
    HANDLE            handlesToWaitFor[2];
    DWORD            dwResult;
    handlesToWaitFor[0]        = m_pDownloadMgr->GetEventExeHandle();
    handlesToWaitFor[1]        = m_pDownloadMgr->GetEventShutdownHandle();
 
    while ( !IsStoped() )
    {
#ifdef _DEBUG
        dwResult    = ::WaitForMultipleObjects( 2, handlesToWaitFor, false, 6000 );    
#else
        dwResult    = ::WaitForMultipleObjects( 2, handlesToWaitFor, false, 300000 );
#endif                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
        if ( dwResult == WAIT_OBJECT_0 )
        {          
            if( m_bStop )
                break;
 
            m_pDownloadMgr->ResetEventExe();              
 
            CMBDownloadRootMgrVector vectorThreadDownloadRootMgr; //Ï̶߳ÀÓÐ
 
            m_pDownloadMgr->AttachThreadDownloadRoogMgr(vectorThreadDownloadRootMgr);    
 
            for( it = vectorThreadDownloadRootMgr.begin();it != vectorThreadDownloadRootMgr.end();it++ )
            {
                if(m_bStop)
                    return 0;
                pDownloadRootMgr = *it;
                for( it1 = pDownloadRootMgr->m_listDownloadFileMgr.begin();it1 != pDownloadRootMgr->m_listDownloadFileMgr.end();it1++ )
                {
                    if(m_bStop)
                        return 0;
 
                    pDownloadFileMgr = *it1;
                    if( pDownloadFileMgr->GetState() == CMBDownloadFileMgr::State_NoTraversing ) 
                    {   
                        pDownloadFileMgr->SetState(CMBDownloadFileMgr::State_Traversing);
                        // Èç¹ûÊÇÎļþ
                        DownloadAssCurSelFile(pDownloadFileMgr,m_bStop);
                        // Èç¹ûÊÇĿ¼£¬
                        DownloadAssDir(pDownloadFileMgr,m_bStop );                    
                        pDownloadFileMgr->SetState(CMBDownloadFileMgr::State_Traversaled);
                    }// for( it1 = pDownloadRootMgr->m_listDownloadFileMgr.begin();it1 != pDownloadRootMgr->m_listDownloadFileMgr.end();it1++ )                     
                }// end      
                m_pDownloadMgr->RemoveDownloadRootMgr( pDownloadRootMgr );
            }// end for( it = vectorThreadDownloadRootMgr.begin();it != vectorThreadDownloadRootMgr.end();it++ )
            vectorThreadDownloadRootMgr.clear();
        }
        else if ( dwResult == WAIT_OBJECT_0 + 1 )
        {
            // Time to shutdown
            break;
        } 
        else if ( dwResult == WAIT_TIMEOUT )
        {
            m_pDownloadMgr->SetEventExe(); 
        }    
    } // End of while ( true )   
    
    return 0;
}