mrp_download_cookie.c
32.8 KB
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
#ifdef __MMI_DSM_NEW__
#include "MMI_features.h"
#include "mrp_features.h"
#ifdef __MR_CFG_FEATURE_COOKIE_DOWNLOAD_PLATCODE__
#include "stdC.h"
#include "L4Dr1.h"
#include "PixtelDataTypes.h"
#include "gdi_features.h"
#include "gdi_internal.h"
#include "wgui_draw_manager.h"
#include "wgui_fixed_menuitems.h"
#include "wgui_categories_util.h"
#include "GlobalDefs.h"
#include "wgui_categories_inputs.h"
#include "HistoryGprot.h"
#include "ProtocolEvents.h"
#include "SMSApi.h"
#include "gdi_image_jpeg.h"
#include "mmi_msg_struct.h"
#include "PhoneBookProt.h"
#include "PhoneBookTypes.h"
#include "mdi_datatype.h"
#include "ScrMemMgrGprot.h"
#include "FileManagerGProt.h"
#include "med_utility.h"
#include "app2soc_struct.h"
#include "gpioInc.h"
#include "mrp_include.h"
#ifdef __MED_IN_ASM__
#define med_alloc_ext_mem(size) applib_asm_alloc_anonymous_nc(size)
#define med_alloc_ext_mem_cacheable(size) applib_asm_alloc_anonymous(size)
#define med_free_ext_mem(ptr) applib_asm_free_anonymous(*ptr)
#endif
typedef struct
{
int32 soc;
uint8 *pSendBuffer;
uint8 *pRecvBuffer;
uint8 *pTmp;
uint8 *pFileName;
uint8 *pParam;
int32 Sended;
int32 Recved;
int32 totalLen;
int32 flag;
int32 recvState;
int32 fh;
int32 fileSize;
int32 fileLeft;
int32 showUI;
}T_AUTO_UPDATE;
enum
{
DL_CONNECTING,
DL_SENDING,
DL_RECV_HTTP_HEADER,
DL_RECV_DATA
};
static char g_dlc_cmd[20] = {"DownloadAppEx"};
//http://appidPlugin.fivesky.net:4010
static int32 g_dlc_server_port = 4010;
static char g_dlc_server[64] = {"appidPlugin.fivesky.net"};
//#define __USE_TEST_SERVER__
/* tst:http://115.238.91.240:10039/DownloadAppEx*/
//static int32 g_dlc_server_port = 10039;
/*
0:download cookie
1:download gb
*/
int32 g_dlc_flag = 0;
int32 g_dlc_ip = 0;
/**
* 记录是否需要下载曲奇或者GB码
*第一位GB码,第二位曲奇.
* 0:不需要下载,1:需要下载
**/
int32 g_dlc_need[2] = {0,0};
/*记录未获取到数据次数*/
#define DLC_TIMEROUT_TOTAL 60
int32 g_dlc_timeout = 0;
//当前盘符
char g_dlc_tmp0 = 0;
/**
* 需要组合进度
*0:不需要组合
*1:组合
*/
int32 g_dlc_meger_prograss = 0;
/**
* MRP多入口有可能是挂的函数,需要特殊处理.
*/
mr_app_entry_f g_dlc_app_func = 0;
extern char * dsmEntry;
static T_AUTO_UPDATE g_dlc_download_applist ={-1};
#define HTTP_HEADER "POST http://%s:10039/%s HTTP/1.1\r\n\
Host: %s:10039\r\n\
X-Online-Host: %s:10039\r\n\
User-Agent: Nokia6681/2.0 (3.10.6) SymbianOS/8.0 Series60/2.6 Profile/MIDP-2.0 Configuration/CLDC-1.1\r\n\
Accept: */* \r\n\
Accept-Language: zh-cn\r\n\
Connection: Keep-Alive\r\n\
Proxy-Connection: Keep-Alive\r\n\
Pragma: no-cache\r\n\
Content-Type: application/x-www-form-urlencoded\r\n\
Content-Length: "
#define __DLC_INFO_SIZE 100
static char g_dlc_info[__DLC_INFO_SIZE] = {0};
static char g_dlc_progressInfo[__DLC_INFO_SIZE*2+2] = {0};
#define GB_FILE_NAME "gb2312.mrp"
#define GB_FILE_NAME_1 "u16b_2312.bin"
#define GB_FILE_NAME_2 "2312_u16be.bin"
#define APPLIST_FILE_NAME "cookie.mrp"
#define APPLIST_PATH "mythroad"
#define APS_MAX_FILENAME_SIZE 128
extern void mr_dlc_get_progress(int32 *total,int32* left);
extern void mr_dlc_exit_dl(void);
static int32 mr_dlc_applist(void);
int mr_dlc_check_applist(void);
static int32 mr_dlc_applist_initnet_cb(int32 ret);
static void mr_dlc_write_data(uint8 *data,int32 len);
static void mr_dlc_connect_server(void);
void mr_dlc_update_progress(int32 total,int32 left);
static U16 mr_dlc_AnsiiToUnicodeString(S8 *pOutBuffer, S8 *pInBuffer)
{
/*----------------------------------------------------------------*/
/* Local Variables */
/*----------------------------------------------------------------*/
kal_int16 count = -1;
/*----------------------------------------------------------------*/
/* Code Body */
/*----------------------------------------------------------------*/
while (*pInBuffer != '\0')
{
pOutBuffer[++count] = *pInBuffer;
pOutBuffer[++count] = 0;
pInBuffer++;
}
pOutBuffer[++count] = '\0';
pOutBuffer[++count] = '\0';
return count + 1;
}
#define mr_dlc_AnsiiToUnicodeString app_asc_str_to_ucs2_str
#define wcscat app_ucs2_strcat
static uint32 _ltoh(char * startAddr)
{
return (startAddr[3] << 24) | ((startAddr[2] & 0xff)<< 16) | ((startAddr[1] & 0xff) << 8) | (startAddr[0] & 0xff);
}
#define SIZE_PER_TIME 4096
int32 mr_dlc_write_file(char* filename,int32 f,int32 bufferpos,int32 size)
{
int32 ftemp = 0;
char * buffer = 0;
int32 leftsize = size;
int32 getsize = 0;
int32 oldpos = 0;
oldpos = mr_fs_get_position(f);
ftemp = FS_Open((wchar_t*)filename,FS_CREATE_ALWAYS|FS_READ_WRITE);
if(ftemp >= 0)
{
buffer = (char*)med_alloc_ext_mem(SIZE_PER_TIME);
if(buffer != NULL)
{
mr_seek(f,bufferpos,MR_SEEK_SET);
while(leftsize > 0)
{
if(leftsize > SIZE_PER_TIME)
{
getsize = mr_read(f, buffer, SIZE_PER_TIME);
mr_write(ftemp, buffer,getsize);
}
else
{
getsize = mr_read(f, buffer, leftsize);
mr_write(ftemp, buffer,getsize);
}
leftsize -= getsize;
}
}
med_free_ext_mem((void**)&buffer);
}
mr_seek(f,oldpos-MR_PLAT_VALUE_BASE,MR_SEEK_SET);
mr_close(ftemp);
return MR_SUCCESS;
}
char g_dlc_temp_path[64] = {0};
char g_dlc_temp_path_ucs[128] = {0};
int32 mr_dle_write_file_short(char* filename,int32 f,int32 bufferpos,int32 size)
{
memset(g_dlc_temp_path,0,64);
memset(g_dlc_temp_path_ucs,0,128);
g_dlc_temp_path[0] = g_dlc_tmp0;
sprintf(g_dlc_temp_path+1,":\\mythroad\\system\\%s",filename);
mr_dlc_AnsiiToUnicodeString(g_dlc_temp_path_ucs,g_dlc_temp_path);
mr_dlc_write_file(g_dlc_temp_path_ucs,f,bufferpos,size);
return MR_SUCCESS;
}
/*返回文件句柄*/
int32 GetFileFromMrp(char* packname)
{
char _v[4];
int32 file_len,len = 0;
uint32 found = 0;
char TempName[APS_MAX_FILENAME_SIZE];
uint32 headbuf[4];
int32 nTmp;
int32 f;
{
f = FS_Open((wchar_t*)packname, FS_READ_ONLY );
mr_seek(f,0,MR_SEEK_SET);
memset(headbuf, 0, sizeof(headbuf));
nTmp = mr_read(f, &headbuf, sizeof(headbuf));
headbuf[0] = _ltoh((char*)&headbuf[0]);/*文件标签"MRPG"*/
headbuf[1] = _ltoh((char*)&headbuf[1]);/*文件头长度*/
headbuf[2] = _ltoh((char*)&headbuf[2]);
headbuf[3] = _ltoh((char*)&headbuf[3]);/*文件索引偏移*/
{ //新版mrp
uint32 indexlen = headbuf[1] + 8 - headbuf[3];//文件索引长度
uint8* indexbuf = (kal_uint8*)med_alloc_ext_mem(indexlen);
uint32 pos = 0;
uint32 file_pos = 0;
if(!indexbuf)
{
mr_close(f);
return NULL;
}
nTmp = mr_seek(f, headbuf[3] - 16, MR_SEEK_CUR);//移动文件指针到文件索引开始的地方
if (nTmp < 0)
{
mr_close(f);
med_free_ext_mem((void **)&indexbuf);
return NULL;
}
nTmp = mr_read(f, indexbuf, indexlen);
if ((nTmp != (int32)indexlen))
{
mr_close(f);
med_free_ext_mem((void **)&indexbuf);
return NULL;
}
memset(TempName,0,APS_MAX_FILENAME_SIZE);
found = 0;
while(found < 2)/*这个循环用来在文件索引表中找到目标文件*/
{
memcpy(&_v[0], &indexbuf[pos], 4);
len = _ltoh((char*)_v);
pos = pos + 4;
if (((len + pos) > indexlen)||(len<1)||(len>=APS_MAX_FILENAME_SIZE))
{
mr_close(f);
med_free_ext_mem((void **)&indexbuf);
return NULL;
}
/*取出文件索引表中的一个文件名*/
memcpy(TempName, &indexbuf[pos], len);
TempName[len] = 0;
pos = pos + len;
if (strcmp(GB_FILE_NAME_1, TempName)==0)/*如果文件名相同*/
{
found ++;
memcpy(&_v[0], &indexbuf[pos], 4);
pos = pos + 4;
file_pos = _ltoh((char*)_v);
memcpy(&_v[0], &indexbuf[pos], 4);
pos = pos + 4;
file_len = _ltoh((char*)_v);/*获得目标文件长度*/
//WSL add
pos = pos + 4;
if ((file_pos + file_len) > headbuf[2])
{
mr_close(f);
med_free_ext_mem((void **)&indexbuf);
return NULL;
}
else
{
//保存下来
mr_dle_write_file_short(TempName,f,file_pos,file_len);
}
}
else if(strcmp(GB_FILE_NAME_2, TempName)==0)
{
found ++;
memcpy(&_v[0], &indexbuf[pos], 4);
pos = pos + 4;
file_pos = _ltoh((char*)_v);
memcpy(&_v[0], &indexbuf[pos], 4);
pos = pos + 4;
file_len = _ltoh((char*)_v);/*获得目标文件长度*/
//WSL add
pos = pos + 4;
if ((file_pos + file_len) > headbuf[2])
{
mr_close(f);
med_free_ext_mem((void **)&indexbuf);
return NULL;
}
else
{
//保存下来
mr_dle_write_file_short(TempName,f,file_pos,file_len);
}
}
else
{
pos = pos + 12;
if (pos >= indexlen)
{
mr_close(f);
med_free_ext_mem((void **)&indexbuf);
return NULL;
}
}/*if (STRCMP(filename, TempName)==0)*/
}
med_free_ext_mem((void **)&indexbuf);
mr_close(f);
return NULL;
}
}
return NULL;
}
void mr_dlc_unpack_files(void)
{
//也许不需要下载GB码
#ifndef __MR_CFG_FEATURE_MOPOZS_DOWNLOAD_GBTABLE__
return ;
#endif
memset(g_dlc_temp_path,0,64);
memset(g_dlc_temp_path_ucs,0,128);
g_dlc_tmp0 = MMI_CARD_DRV;
g_dlc_temp_path[0] = g_dlc_tmp0;
sprintf(g_dlc_temp_path+1,":\\mythroad\\system\\%s",GB_FILE_NAME);
mr_dlc_AnsiiToUnicodeString(g_dlc_temp_path_ucs,g_dlc_temp_path);
mr_trace("mr_dlc_unpack_files,%s",g_dlc_temp_path);
GetFileFromMrp(g_dlc_temp_path_ucs);
}
static U8 Tolower( U8 ch )
{
if( ch >='A' && ch <= 'Z' )
return( ch + ('a' - 'A') );
return ch;
}
/**
* index:0 or 1
* 0:GB
* 1:曲奇
* flag:0 or 1
* 0:不需要下载
* 1:需要下载
**/
void mr_dlc_set_flag(int32 index,int32 flag)
{
g_dlc_need[index] = flag;
}
static void mr_dlc_init_data(void)
{
mr_screeninfo screeninfo;
mr_userinfo info ;
char tmp[128];
memset(g_dlc_download_applist.pSendBuffer,0,1024);
mr_getScreenInfo(&screeninfo);
mr_getUserInfo(&info);
if(g_dlc_flag == 1 )
{
sprintf(tmp,"hsman=%s&hstype=%s&hswidth=%d&hsheight=%d&hsplat=mtk&appid=%d",info.manufactory,info.type,screeninfo.width,screeninfo.height,300);
}
else
{
sprintf(tmp,"hsman=%s&hstype=%s&hswidth=%d&hsheight=%d&hsplat=mtk&appid=%d",info.manufactory,info.type,screeninfo.width,screeninfo.height,800001);
}
g_dlc_download_applist.totalLen = sprintf((char*)g_dlc_download_applist.pSendBuffer,HTTP_HEADER,g_dlc_server,g_dlc_cmd,g_dlc_server,g_dlc_server);
g_dlc_download_applist.totalLen += sprintf((char*)g_dlc_download_applist.pSendBuffer+g_dlc_download_applist.totalLen,"%d\r\n\r\n%s",strlen(tmp),tmp);
mr_trace("mr_dlc_init_data,%d",g_dlc_download_applist.totalLen);
g_dlc_download_applist.Sended = 0;
}
static void mr_dlc_string_to_lower(char *string, int32 len)
{
int i=0;
for(i=0;i<len;i++)
{
string[i] = Tolower(string[i]);
}
}
extern char g_dsm_backup_entry[];
static void mr_dlc_free(void)
{
int32 ineed_param = 0;
if(g_dlc_download_applist.soc !=-1)
{
mr_closeSocket(g_dlc_download_applist.soc);
g_dlc_download_applist.soc=-1;
}
mr_closeNetwork();
if(g_dlc_download_applist.pRecvBuffer != NULL)
{
mr_mem_free_ex((void**)&g_dlc_download_applist.pRecvBuffer);
g_dlc_download_applist.pRecvBuffer = NULL;
}
if(g_dlc_download_applist.pSendBuffer != NULL)
{
mr_mem_free_ex((void**)&g_dlc_download_applist.pSendBuffer);
g_dlc_download_applist.pSendBuffer = NULL;
}
if(g_dlc_download_applist.pTmp!= NULL)
{
mr_mem_free_ex((void**)&g_dlc_download_applist.pTmp);
g_dlc_download_applist.pTmp = NULL;
}
if(g_dlc_download_applist.fh != NULL)
{
FS_Close(g_dlc_download_applist.fh);
g_dlc_download_applist.fh = NULL;
}
if( g_dlc_timeout >= DLC_TIMEROUT_TOTAL)
{
GoBackHistory();
/*下载出错*/
mmi_display_popup((UI_string_type)"\x0b\x4e\x7d\x8f\xfa\x51\x19\x95", 0);
g_dlc_timeout = 0;
}
else if((g_dlc_download_applist.fileLeft ==0)&&(g_dlc_download_applist.pParam != NULL))
{
if((g_dlc_download_applist.showUI == 1) &&(GetActiveScreenId() == mr_dlc_get_down_screen_id()))
{
if((g_dlc_need[0] == 0)&&(g_dlc_need[1] == 0))
{
//都下载好了
//需要先关掉当前的下载窗口.然后启动MRP,不在当前窗口不启动
GoBackHistory();
mr_fs_set_launch_dir(g_dlc_download_applist.pFileName[0],APPLIST_PATH);
if(g_dlc_app_func != 0)
{
g_dlc_app_func();
g_dlc_app_func = 0;
}
dsmEntry = (char *)g_dlc_download_applist.pParam;
EntryDsmScreen();
//解决QQ在第一次下载登陆成功后END键直接退出不能挂后台问题
if(mr_app_get_state() != DSM_STOP && (strstr(g_dsm_backup_entry, "qq") ||strstr(g_dsm_backup_entry, "QQ")
#ifdef __MMI_SKYQQ__
|| strstr(g_dsm_backup_entry, "skyqq") ||strstr(g_dsm_backup_entry, "SKYQQ")
#endif
#ifdef __MMI_NGUAQ__
|| strstr(g_dsm_backup_entry, "nguaq") ||strstr(g_dsm_backup_entry, "NGUAQ")
#endif
))
{
mr_backstage_hold_endkey(1);
}
}
}
//下完GB,还需要下曲奇
if((g_dlc_need[1] == 1))
{
ineed_param = 1;
}
}
else
{
if((g_dlc_download_applist.fileLeft > 0)&&(g_dlc_download_applist.showUI == 1) &&(GetActiveScreenId() == mr_dlc_get_down_screen_id()))
{
GoBackHistory();
/*下载出错*/
mmi_display_popup((UI_string_type)"\x0b\x4e\x7d\x8f\xfa\x51\x19\x95", 0);
}
}
if((g_dlc_download_applist.fileLeft !=0)&&(g_dlc_download_applist.pFileName != NULL))
{
FS_Delete((WCHAR *)g_dlc_download_applist.pFileName);
}
if(g_dlc_download_applist.pFileName!= NULL)
{
mr_mem_free_ex((void**)&g_dlc_download_applist.pFileName);
g_dlc_download_applist.pFileName = NULL;
}
if(ineed_param == 0)
{
if(g_dlc_download_applist.pParam!= NULL)
{
mr_mem_free_ex((void**)&g_dlc_download_applist.pParam);
g_dlc_download_applist.pParam = NULL;
}
}
}
static void mr_dlc_applist_socket_notify();
static void mr_dlc_socket_run(void)
{
U16 timerId = DSM_DL_APPLIST_SOCKET;
StartTimer(timerId, 500, mr_dlc_applist_socket_notify);
}
static void mr_dlc_redown_server(void)
{
g_dlc_download_applist.fileSize = 0;
g_dlc_download_applist.fileLeft = 0;
g_dlc_download_applist.flag = 0;
g_dlc_download_applist.Recved = 0;
mr_dlc_applist();
}
static void mr_dlc_applist_socket_notify()
{
int32 ret = 0;
int32 soc_id = g_dlc_download_applist.soc;
if(soc_id == -1)
{
mr_dlc_free();
return;
}
if(g_dlc_download_applist.recvState == DL_CONNECTING)
{
ret = mr_net_check_connect(soc_id);
if(ret == MR_SUCCESS)
{
g_dlc_timeout = 0;
ret = mr_send(soc_id, (char*)g_dlc_download_applist.pSendBuffer,g_dlc_download_applist.totalLen);
if((ret <0)&&(ret !=-2))
{
mr_dlc_free();
return;
}
else
{
g_dlc_download_applist.Sended =ret;
if(g_dlc_download_applist.Sended >= g_dlc_download_applist.totalLen)
{
g_dlc_download_applist.recvState = DL_RECV_HTTP_HEADER;
}
else
{
g_dlc_download_applist.recvState = DL_SENDING;
}
}
}
else if(ret == MR_FAILED)
{
mr_dlc_free();
return;
}
else
{
//超时
g_dlc_timeout++;
if(g_dlc_timeout >= DLC_TIMEROUT_TOTAL)
{
mr_dlc_free();
return;
}
}
}
else if(g_dlc_download_applist.recvState == DL_SENDING)
{
if(g_dlc_download_applist.Sended < g_dlc_download_applist.totalLen)
{
ret = mr_send(soc_id, (char *)g_dlc_download_applist.pSendBuffer+g_dlc_download_applist.Sended, g_dlc_download_applist.totalLen-g_dlc_download_applist.Sended);
if((ret <0)&&(ret !=-2))
{
mr_dlc_free();
return;
}
else
{
g_dlc_download_applist.Sended+=ret;
if(g_dlc_download_applist.Sended >= g_dlc_download_applist.totalLen)
{
mr_mem_free_ex((void **)&g_dlc_download_applist.pSendBuffer);
g_dlc_download_applist.pSendBuffer = NULL;
g_dlc_download_applist.recvState = DL_RECV_HTTP_HEADER;
}
else
{
g_dlc_download_applist.recvState = DL_SENDING;
}
}
}
}
else
{
uint8 *p;
uint8 *pLen;
int i;
ret = mr_recv(g_dlc_download_applist.soc,(char*)g_dlc_download_applist.pTmp,1024);
if((ret <0)&&(ret !=-2)) /* socket错误 */
{
mr_dlc_free();
return;
}
else if(ret == 0 || ret == SOC_WOULDBLOCK) /* 等待数据*/
{
g_dlc_timeout++;
if(g_dlc_timeout >= DLC_TIMEROUT_TOTAL)
{
mr_dlc_free();
}
else
{
mr_dlc_socket_run();
}
return;
}
else
{
g_dlc_timeout = 0;
if(g_dlc_download_applist.recvState == DL_RECV_DATA)
{
mr_dlc_write_data(g_dlc_download_applist.pTmp,ret);
if(g_dlc_download_applist.fileLeft <=0)
{
mr_dlc_free();
//有可能还要下曲奇
if(g_dlc_need[1] == 1)
{
gui_start_timer(1000,mr_dlc_redown_server);
}
return;
}
}
else
{
if(g_dlc_download_applist.Recved+ret >4096) /*http 头大于4k的时候不支持*/
{
mr_dlc_free();
return;
}
else
{
int32 errCode = 0;
memcpy(g_dlc_download_applist.pRecvBuffer+g_dlc_download_applist.Recved,g_dlc_download_applist.pTmp,ret);
g_dlc_download_applist.Recved +=ret;
p = (uint8*)strstr((char*)g_dlc_download_applist.pRecvBuffer,"\r\n\r\n");
if(p == NULL)
{
mr_dlc_free();
return;
}
mr_dlc_string_to_lower((char*)g_dlc_download_applist.pRecvBuffer, p-g_dlc_download_applist.pRecvBuffer);
errCode = atoi((char *)g_dlc_download_applist.pRecvBuffer+9);
if(errCode != 200) // 网关返回错误
{
mr_dlc_free();
return;
}
pLen = (uint8*)strstr((char*)g_dlc_download_applist.pRecvBuffer,"content-length: ");
if(pLen)
{
i =0;
pLen += 16;
memset(g_dlc_download_applist.pTmp,0,1024);
while((*pLen) !='\r')
{
g_dlc_download_applist.pTmp[i]=*pLen;
i++;
pLen++;
}
g_dlc_download_applist.fileLeft = g_dlc_download_applist.fileSize = atoi((char*)g_dlc_download_applist.pTmp);
}
else
{
mr_dlc_free();
return;
}
p+=4;
if((p-g_dlc_download_applist.pRecvBuffer+5)>g_dlc_download_applist.Recved)
{
mr_dlc_free();
return;
}
if(p[0] ==0x4d&&
p[1] == 0x52&&
p[2] == 0x50&&
p[3] == 0x47)
{
g_dlc_download_applist.recvState = DL_RECV_DATA;
mr_dlc_write_data(p,g_dlc_download_applist.Recved-(p-g_dlc_download_applist.pRecvBuffer));
mr_mem_free_ex((void **)&g_dlc_download_applist.pRecvBuffer);
g_dlc_download_applist.pRecvBuffer = NULL;
}
}
}
}
}
mr_dlc_socket_run();
return;
}
static int32 mr_dlc_host_callback(int32 ip)
{
g_dlc_ip = ip;
mr_dlc_connect_server();
}
static void mr_dlc_get_host(void)
{
#ifndef __USE_TEST_SERVER__
int32 ret = mr_getHostByName(g_dlc_server,mr_dlc_host_callback);
if( ret > MR_WAITING)
{
//直接获得IP
g_dlc_ip = ret;
mr_dlc_connect_server();
}
else
{
//MR_WAITING or MR_FAILED
if( ret == MR_FAILED)
{
//出错,客户需要就弹个框.默认不弹
/*下载出错*/
mmi_display_popup((UI_string_type)"\x0b\x4e\x7d\x8f\xfa\x51\x19\x95", 0);
}
}
#else
/* tst:http://115.238.91.240:10039/DownloadAppEx*/
//static int32 g_dlc_server_port = 10039;
g_dlc_ip = 0x73EE5BF0;
g_dlc_server_port = 10039;
mr_dlc_connect_server();
#endif
}
static int32 mr_dlc_applist_initnet_cb(int32 ret)
{
if(g_dlc_download_applist.soc ==-1)
{
//get host by name
mr_dlc_get_host();
// mr_dlc_connect_server();
}
}
char g_dlc_tmp1[64];
static int32 mr_dlc_open_file()
{
mr_screeninfo scrinfo;
mr_getScreenInfo(&scrinfo);
if(g_dlc_download_applist.fh != NULL)
{
FS_Close(g_dlc_download_applist.fh);
g_dlc_download_applist.fh = NULL;
}
if(g_dlc_download_applist.pFileName != NULL)
{
mr_mem_free_ex((void**)&g_dlc_download_applist.pFileName);
g_dlc_download_applist.pFileName = NULL;
}
g_dlc_download_applist.pFileName = (uint8*)mr_mem_get_ex(128);
if(g_dlc_download_applist.pFileName == NULL)
return MR_FAILED;
memset(g_dlc_tmp1,0,64);
memset(g_dlc_download_applist.pFileName,0,128);
g_dlc_tmp1[0] = g_dlc_tmp0;
if(g_dlc_flag == 0)
{
sprintf(g_dlc_tmp1+1,":\\%s\\plugin%d%d\\%s",APPLIST_PATH,scrinfo.width, scrinfo.height,APPLIST_FILE_NAME);
}
else
{
sprintf(g_dlc_tmp1+1,":\\%s\\system\\%s",APPLIST_PATH,GB_FILE_NAME);
}
mr_dlc_AnsiiToUnicodeString ((S8*)g_dlc_download_applist.pFileName,(S8*)g_dlc_tmp1);
g_dlc_download_applist.fh = FS_Open((WCHAR *)g_dlc_download_applist.pFileName,FS_CREATE|FS_READ_WRITE);
if(g_dlc_download_applist.fh <0)
return MR_FAILED;
return MR_SUCCESS;
}
void mr_dlc_create_path(void)
{
mr_screeninfo scrinfo;
S16 DSMWORK_PATH[DSM_MAX_FILE_LEN+1] ={0};
S8 fileBuf[DSM_MAX_NAME_LEN+1] ={0};
int ret;
//mythroad
memset(fileBuf,0,DSM_MAX_NAME_LEN+1);
memset(DSMWORK_PATH,0,(DSM_MAX_FILE_LEN+1)*sizeof(S16));
sprintf(fileBuf, "%c:\\mythroad", g_dlc_tmp0);
mr_dlc_AnsiiToUnicodeString( (char *)DSMWORK_PATH,(char*)fileBuf);
ret = FS_GetAttributes((WCHAR *)DSMWORK_PATH);
if((ret < 0)||(!(ret&FS_ATTR_DIR)))
{
FS_CreateDir((WCHAR *)DSMWORK_PATH);
}
//plugin
mr_getScreenInfo(&scrinfo);
sprintf(fileBuf, "%c:\\%s\\plugin%d%d",g_dlc_tmp0, mr_fs_get_work_path(),scrinfo.width, scrinfo.height);
mr_dlc_AnsiiToUnicodeString( (char *)DSMWORK_PATH,(char*)fileBuf);
ret = FS_GetAttributes((WCHAR *)DSMWORK_PATH);
if((ret < 0)||(!(ret&FS_ATTR_DIR)))
{
FS_CreateDir((WCHAR *)DSMWORK_PATH);
}
//system
memset(fileBuf,0,DSM_MAX_NAME_LEN+1);
memset(DSMWORK_PATH,0,(DSM_MAX_FILE_LEN+1)*sizeof(S16));
sprintf(fileBuf, "%c:\\%s\\system", g_dlc_tmp0, mr_fs_get_work_path());
mr_fs_separator_vm_to_local((U8 *)fileBuf);
mr_dlc_AnsiiToUnicodeString( (char *)DSMWORK_PATH,(char*)fileBuf);
ret = FS_GetAttributes((WCHAR *)DSMWORK_PATH);
if((ret < 0)||(!(ret&FS_ATTR_DIR)))
{
FS_CreateDir((WCHAR *)DSMWORK_PATH);
}
}
static int32 mr_dlc_applist(void)
{
int32 ret = MR_FAILED;
if(GetDsmState() != 0)
return MR_FAILED;
//检查SIM CARD
/*没有SIM卡,下不了*/
if(!mmi_bootup_is_sim_valid() && !mmi_bootup_is_sim2_valid())
{
return MR_FAILED;
}
if(g_dlc_need[0] == 1)
{
g_dlc_flag = 1;
}
else if(g_dlc_need[1] == 1)
{
g_dlc_flag = 0;
}
else
{
//出错了,都有的情况下不应该跑到这块.
return MR_FAILED;
}
mr_dlc_create_path();
if(mr_dlc_open_file() == MR_FAILED)
return MR_FAILED;
mr_sim_initialize();
g_dlc_download_applist.soc =-1;
g_dlc_download_applist.pRecvBuffer = (uint8*)mr_mem_get_ex(4096);
if(g_dlc_download_applist.pRecvBuffer == NULL)
return MR_FAILED;
g_dlc_download_applist.pTmp = (uint8*)mr_mem_get_ex(1024);
if(g_dlc_download_applist.pTmp ==NULL)
{
mr_dlc_free();
return MR_FAILED;
}
g_dlc_download_applist.pSendBuffer = (uint8*)mr_mem_get_ex(1024);
if(g_dlc_download_applist.pSendBuffer ==NULL)
{
mr_dlc_free();
return MR_FAILED;
};
g_dlc_download_applist.flag =0;
mr_dlc_init_data();
mr_sim_initialize();
ret = mr_initNetwork(mr_dlc_applist_initnet_cb,"CMNET");
kal_prompt_trace(MOD_MMI,"mr_initNetwork,%d",ret);
if(MR_FAILED == ret)
{
//弹框,出错了
//出错,客户需要就弹个框.默认不弹
/*下载出错*/
mmi_display_popup((UI_string_type)"\x0b\x4e\x7d\x8f\xfa\x51\x19\x95", 0);
}
else if(ret == MR_SUCCESS)
{
//直接成功了.
mr_dlc_applist_initnet_cb(1);
}
return MR_SUCCESS;
}
static void mr_dlc_write_data(uint8 *data,int32 len)
{
int32 wlen;
UINT l;
if(len <=0)
return;
if(g_dlc_download_applist.fileLeft< len)
wlen = g_dlc_download_applist.fileLeft;
else
wlen = len;
if(FS_NO_ERROR != FS_Write(g_dlc_download_applist.fh, (void *)data,wlen,&l))
{
//写文件出错
mr_dlc_free();
return;
}
g_dlc_download_applist.fileLeft -= wlen;
if(g_dlc_download_applist.showUI)
{
mr_dlc_update_progress(g_dlc_download_applist.fileSize,g_dlc_download_applist.fileLeft);
}
if(g_dlc_download_applist.fileLeft==0)
{
if(g_dlc_flag == 1)
{
g_dlc_need[0] = 0;
if(g_dlc_download_applist.fh != NULL)
{
FS_Close(g_dlc_download_applist.fh);
g_dlc_download_applist.fh = NULL;
}
mr_dlc_unpack_files();
}
else if(g_dlc_flag == 0)
{
g_dlc_need[1] = 0;
}
mr_dlc_free();
}
}
void mr_dlc_start_app(char *param,mr_app_entry_f app_func)
{
int32 ret;
int drv;
mr_screeninfo scrinfo;
mr_getScreenInfo(&scrinfo);
if(g_dlc_download_applist.pParam != NULL)
mr_mem_free_ex((void**)&g_dlc_download_applist.pParam);
g_dlc_download_applist.pParam = (uint8*)mr_mem_get_ex(64);
if(g_dlc_download_applist.pParam == NULL)
return;
if(param == NULL)
{
sprintf((char*)g_dlc_download_applist.pParam, "%%plugin%d%d/cookie.mrp", scrinfo.width, scrinfo.height);
}
else
{
sprintf((char*)g_dlc_download_applist.pParam, "%%plugin%d%d/cookie.mrp,%s", scrinfo.width, scrinfo.height,param);
}
g_dlc_app_func = app_func;
if(g_dlc_download_applist.soc ==-1) /*不在下载*/
{
g_dlc_download_applist.fileSize = 0;
g_dlc_download_applist.fileLeft = 0;
g_dlc_download_applist.flag = 0;
g_dlc_download_applist.Recved = 0;
drv =g_dlc_tmp0;
{
if((g_dlc_need[0] == 1)&&(g_dlc_need[1] == 1))
{
g_dlc_meger_prograss = 1;
}
else
{
g_dlc_meger_prograss = 0;
}
if(mr_dlc_applist() == MR_SUCCESS)
{
g_dlc_download_applist.showUI = 1;
mr_dlc_update_progress(0,0);
}
else
{
//出错,客户需要就弹个框.默认不弹
/*下载出错*/
mmi_display_popup((UI_string_type)"\x0b\x4e\x7d\x8f\xfa\x51\x19\x95", 0);
}
}
}
else
{
g_dlc_download_applist.showUI = 1;
mr_dlc_update_progress(g_dlc_download_applist.fileSize,g_dlc_download_applist.fileLeft);
}
}
void mr_dlc_get_progress(int32 *total,int32 *left)
{
if(total&&left)
{
*total = g_dlc_download_applist.fileSize;
*left = g_dlc_download_applist.fileLeft;
}
}
void mr_dlc_exit_dl(void)
{
g_dlc_download_applist.showUI =0;
}
extern char *mr_fs_get_work_path(void);
int mr_dlc_check_applist(void)
{
char drv[2];
int i =0;
int ret;
uint8 tmp[13] = {0};
uint32 fileSize;
char tmp1[64] = {0};
char tmpucs[128] = {0};
int32 fh = -1;
mr_screeninfo scrinfo;
mr_getScreenInfo(&scrinfo);
drv[0] = mr_dlc_get_card_drv();
drv[1] = mr_dlc_get_public_drv();
for(i=0;i<2;i++)
{
memset(tmp1,0,64);
memset(tmpucs,0,128);
tmp1[i] = drv[i];
sprintf(tmp1+1,":\\%s\\plugin%d%d\\%s",APPLIST_PATH,scrinfo.width, scrinfo.height,APPLIST_FILE_NAME);
mr_dlc_AnsiiToUnicodeString ((S8*)tmpucs,(S8*)tmp1);
fh = FS_Open((WCHAR *)tmpucs,MR_FILE_RDONLY);
if (fh <FS_NO_ERROR)
return 0;
ret = FS_GetFileSize( fh, &fileSize);
if (ret < FS_NO_ERROR)
{
FS_Close(fh);
return 0;
}
if(fileSize > 0)
{
mr_read(fh, (void *)tmp,12);
tmp[4] ='\0';
if((strcmp((char *)tmp,"MRPG") ==0)&&(fileSize == ((tmp[8])+(tmp[9]<<8)+(tmp[10]<<16)+(tmp[11]<<24))))
{
FS_Close(fh);
return drv[i];
}
}
FS_Close(fh);
fh = -1;
FS_Delete(( WCHAR *) tmpucs);
}
return 0;
}
static void mr_dlc_connect_server(void)
{
g_dlc_download_applist.soc = mr_socket(MR_SOCK_STREAM,0);
if(g_dlc_download_applist.soc ==-1)
{
mr_dlc_free();
return;
}
g_dlc_download_applist.recvState = DL_CONNECTING;
memset(g_dlc_download_applist.pRecvBuffer,0,4096);
g_dlc_download_applist.Sended = 0;
mr_connect(g_dlc_download_applist.soc,g_dlc_ip, g_dlc_server_port, MR_SOCKET_NONBLOCK);
mr_dlc_socket_run();
}
//Rocket.chen add 2011-08-13,start
static U8 dsm_bg_opacity;
BOOL is_mr_dlc_download = FALSE;
static void mr_dlc_exit_dl_screen(void)
{
mr_dlc_exit_dl();
dm_set_scr_bg_opacity(dsm_bg_opacity);
}
void mr_set_bg_opacity(void)
{
dm_set_scr_bg_opacity(dsm_bg_opacity);
}
//Rocket.chen add 2011-08-13,end
static void mr_dlc_entry_dsm_dl(void)
{
U8 *gui_buffer;
S32 iBufLength;
int32 progress = 0;
int32 total = 0,left = 0;
mr_dlc_get_progress(&total,&left);
if(total ==0)
progress =0;
else
progress = ((total-left)*100)/total;
//Rocket.chen add 2011-08-13 start
if (GetDsmState()== DSM_STOP || GetDsmState() == DSM_BACK_RUN )
{
is_mr_dlc_download = TRUE;
dm_get_scr_bg_opacity(&dsm_bg_opacity);
}
//Rocket.chen add 2011-08-13 end
memset(g_dlc_info,0,__DLC_INFO_SIZE);
memset(g_dlc_progressInfo,0,__DLC_INFO_SIZE*2+2);
sprintf(g_dlc_info,"%02d%%...",progress);
mr_dlc_AnsiiToUnicodeString((S8 *) g_dlc_progressInfo, (S8 *) g_dlc_info);
wcscat((WCHAR*)g_dlc_progressInfo, (WCHAR*)"\xbe\x7c\x69\x5f\x85\x51\xb9\x5b\x63\x6b\x28\x57\x0b\x4e\x7d\x8f\x2c\x00\xf7\x8b\x0d\x7a\x19\x50");
iBufLength = mmi_ucs2strlen(g_dlc_progressInfo) * sizeof(U8);
gui_buffer = (U8 *)mmi_frm_scrn_get_gui_buf(mr_app_get_group_id(),mr_dlc_get_down_screen_id());
mr_app_EntryNewScreen(mr_dlc_get_down_screen_id(),mr_dlc_exit_dl_screen, mr_dlc_entry_dsm_dl,MMI_FRM_FULL_SCRN);
mr_dlc_ShowCategory((U8*)g_dlc_progressInfo,iBufLength,gui_buffer);
#if 0
ShowCategory74Screen(STR_GLOBAL_PLEASE_WAIT, 0,0, 0,
STR_GLOBAL_BACK, IMG_GLOBAL_BACK,
(U8*)g_dlc_progressInfo, iBufLength,gui_buffer );
#endif
ChangeLeftSoftkey(NULL,NULL);
SetRightSoftkeyFunction(GoBackHistory,KEY_EVENT_UP);
}
void mr_dlc_update_progress(int32 total,int32 left)
{
if(GetActiveScreenId() == mr_dlc_get_down_screen_id())
{
int32 progress;
U8 *gui_buffer;
S32 iBufLength;
if(total ==0)
progress =0;
else
progress = ((total-left)*100)/total;
if(g_dlc_meger_prograss == 1)
{
if(g_dlc_flag == 1)
{
progress = progress / 5;
}
else
{
progress = 20+progress *4 / 5;
// progress = 20+progress *80 / 100
}
}
memset(g_dlc_info,0,__DLC_INFO_SIZE);
memset(g_dlc_progressInfo,0,__DLC_INFO_SIZE*2+2);
sprintf(g_dlc_info,"%02d%%...",progress);
mr_dlc_AnsiiToUnicodeString((S8 *) g_dlc_progressInfo, (S8 *) g_dlc_info);
wcscat((WCHAR*)g_dlc_progressInfo, (WCHAR*)"\xbe\x7c\x69\x5f\x85\x51\xb9\x5b\x63\x6b\x28\x57\x0b\x4e\x7d\x8f\x2c\x00\xf7\x8b\x0d\x7a\x19\x50");
iBufLength = mmi_ucs2strlen(g_dlc_progressInfo) * sizeof(U8);
gui_buffer = (U8 *)mmi_frm_scrn_get_gui_buf(mr_app_get_group_id(),mr_dlc_get_down_screen_id());
//解决在下载过程中返回主菜单显示异常的问题
UI_common_screen_exit();
UI_common_screen_pre_exit();
mr_dlc_ShowCategory((U8*)g_dlc_progressInfo,iBufLength,gui_buffer);
#if 0
ShowCategory74Screen(STR_GLOBAL_PLEASE_WAIT, 0,0, 0,
STR_GLOBAL_BACK, IMG_GLOBAL_BACK,
(U8*)g_dlc_progressInfo, iBufLength,gui_buffer );
#endif
SetRightSoftkeyFunction(GoBackHistory,KEY_EVENT_UP);
}
else if (mmi_frm_scrn_is_present(mr_app_get_group_id(),mr_dlc_get_down_screen_id(),MMI_FRM_FULL_SCRN))
{
return;
}
else
{
mr_dlc_entry_dsm_dl();
}
}
int32 mr_dlc_check_GB(void)
{
char drv[2];
int i =0;
int ret;
uint8 tmp[13] = {0};
uint32 fileSize;
char tmp1[64] = {0};
char tmpucs[128] = {0};
int32 fh = -1;
mr_screeninfo scrinfo;
//也许不需要下载GB码
#ifndef __MR_CFG_FEATURE_MOPOZS_DOWNLOAD_GBTABLE__
return g_dlc_tmp0;
#endif
mr_getScreenInfo(&scrinfo);
drv[0] = mr_dlc_get_card_drv();
drv[1] = mr_dlc_get_public_drv();
for(i=0;i<2;i++)
{
memset(tmp1,0,64);
memset(tmpucs,0,128);
tmp1[i] = drv[i];
sprintf(tmp1+1,":\\mythroad\\system\\%s",GB_FILE_NAME);
mr_dlc_AnsiiToUnicodeString ((S8*)tmpucs,(S8*)tmp1);
fh = FS_Open((WCHAR *)tmpucs,MR_FILE_RDONLY);
if (fh <FS_NO_ERROR)
return 0;
ret = FS_GetFileSize( fh, &fileSize);
if (ret < FS_NO_ERROR)
{
FS_Close(fh);
return 0;
}
if(fileSize > 0)
{
mr_read(fh, (void *)tmp,12);
tmp[4] ='\0';
if((strcmp((char *)tmp,"MRPG") ==0)&&(fileSize == ((tmp[8])+(tmp[9]<<8)+(tmp[10]<<16)+(tmp[11]<<24))))
{
FS_Close(fh);
return drv[i];
}
}
FS_Close(fh);
fh = -1;
FS_Delete(( WCHAR *) tmpucs);
}
return 0;
}
int32 mr_dlc_get_slot(void)
{
char tmp1[64];
int ret;
U64 ffsFree;
FS_DiskInfo diskInfo;
tmp1[0] = mr_dlc_get_card_drv();
tmp1[1] ='\0';
tmp1[2] = ':';
tmp1[3] = '\0';
tmp1[4] = '\\';
tmp1[5] = '\0';
ret = FS_GetDiskInfo((uint16*)tmp1, &diskInfo, FS_DI_BASIC_INFO|FS_DI_FREE_SPACE);
if(ret <0)
return 0;
ffsFree = diskInfo.FreeClusters*diskInfo.SectorsPerCluster*diskInfo.BytesPerSector;
if(ffsFree <500*1024)
{
tmp1[0]= mr_dlc_get_public_drv();
ret = FS_GetDiskInfo((uint16*)tmp1, &diskInfo, FS_DI_BASIC_INFO|FS_DI_FREE_SPACE);
if(ret <0)
return 0;
ffsFree = diskInfo.FreeClusters*diskInfo.SectorsPerCluster*diskInfo.BytesPerSector;
if(ffsFree<500*1024)
return 0;
}
g_dlc_tmp0 = tmp1[0];
return tmp1[0];
}
/**
* 检查是否需要下载GB码或者是曲奇.
**/
int32 mr_dlc_check_download(void)
{
char list = 0;
char gb = 0;
char free = 0;
free = mr_dlc_get_slot();
mr_dlc_create_path();
//是否要下载曲奇
list = mr_dlc_check_applist();
if(list > 0)
{
g_dlc_need[1] = 0;
}
else
{
g_dlc_need[1] = 1;
}
gb = mr_dlc_check_GB();
if(gb > 0)
{
g_dlc_need[0] = 0;
}
else
{
g_dlc_need[0] = 1;
}
if((g_dlc_need[0] == 0)&&(g_dlc_need[1] == 0))
{
//不需要下载
if(gb == list)
{
g_dlc_tmp0 = free;
//for safe
mr_dlc_unpack_files();
return 1;
}
}
else
{
//有需要下载的,统一到一个盘符
if(free > 0)
{
g_dlc_tmp0 = free;
if(list != free)
{
g_dlc_need[1] = 1;
}
else
{
g_dlc_need[1] = 0;
}
if(free != gb)
{
g_dlc_need[0] = 1;
}
else
{
g_dlc_need[0] = 0;
//for safe
mr_dlc_unpack_files();
}
}
}
return 0;
}
#endif
#endif