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
|
/** \file Core.cpp
\brief Define the class for the core
\author alpha_one_x86
\licence GPL3, see the file COPYING */
#include <QMessageBox>
#include <QtPlugin>
#include <cmath>
#include "Core.h"
#include "ThemesManager.h"
#include "cpp11addition.h"
Core::Core(CopyEngineManager *copyEngineList)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
this->copyEngineList=copyEngineList;
nextId=0;
forUpateInformation.setInterval(ULTRACOPIER_TIME_INTERFACE_UPDATE);
loadInterface();
//connect(©EngineList, &CopyEngineManager::newCanDoOnlyCopy, this, &Core::newCanDoOnlyCopy);
connect(ThemesManager::themesManager, &ThemesManager::theThemeNeedBeUnloaded, this, &Core::unloadInterface);
connect(ThemesManager::themesManager, &ThemesManager::theThemeIsReloaded, this, &Core::loadInterface, Qt::QueuedConnection);
connect(&forUpateInformation, &QTimer::timeout, this, &Core::periodicSynchronization);
#ifndef NOAUDIO
audio=nullptr;
#endif
}
Core::~Core()
{
unsigned int index=0;
while(index<copyList.size())
{
copyList[index].engine->cancel();
delete copyList.at(index).nextConditionalSync;
delete copyList.at(index).interface;
delete copyList.at(index).engine;
index++;
}
#ifndef NOAUDIO
if(audio!=nullptr)
{
audio->stop();
delete audio;
}
#endif
}
void Core::newCopyWithoutDestination(const uint32_t &orderId,const std::vector<std::string> &protocolsUsedForTheSources,const std::vector<std::string> &sources)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
if(openNewCopyEngineInstance(Ultracopier::Copy,false,protocolsUsedForTheSources)==-1)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to get a copy engine instance");
QMessageBox::critical(NULL,tr("Error"),tr("Unable to get a copy engine instance"));
return;
}
copyList.back().orderId.push_back(orderId);
copyList.back().engine->newCopy(sources);
copyList.back().interface->haveExternalOrder();
}
void Core::newTransfer(const Ultracopier::CopyMode &mode,const uint32_t &orderId,const std::vector<std::string> &protocolsUsedForTheSources,const std::vector<std::string> &sources,const std::string &protocolsUsedForTheDestination,const std::string &destination)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start: "+stringimplode(sources,";")+", dest: "+destination+", mode: "+std::to_string(mode));
//search to group the window
int GroupWindowWhen=stringtoint32(OptionEngine::optionEngine->getOptionValue("Ultracopier","GroupWindowWhen"));
bool haveSameSource=false,haveSameDestination=false;
if(GroupWindowWhen!=0)
{
bool needConfirmation=stringtobool(OptionEngine::optionEngine->getOptionValue("Ultracopier","confirmToGroupWindows"));
unsigned int index=0;
while(index<copyList.size())
{
bool rightMode=false;
if(mode==Ultracopier::Copy)
rightMode=copyList.at(index).mode==Ultracopier::Copy;
else
rightMode=copyList.at(index).mode==Ultracopier::Move;
if(!copyList.at(index).ignoreMode && rightMode && !copyList.at(index).canceled)
{
if(GroupWindowWhen!=5)
{
if(GroupWindowWhen!=2)
haveSameSource=copyList.at(index).engine->haveSameSource(sources);
if(GroupWindowWhen!=1)
haveSameDestination=copyList.at(index).engine->haveSameDestination(destination);
}
if(
GroupWindowWhen==5 ||
(GroupWindowWhen==1 && haveSameSource) ||
(GroupWindowWhen==2 && haveSameDestination) ||
(GroupWindowWhen==3 && (haveSameSource && haveSameDestination)) ||
(GroupWindowWhen==4 && (haveSameSource || haveSameDestination))
)
{
/*protocols are same*/
if(copyEngineList->protocolsSupportedByTheCopyEngine(copyList.at(index).engine,protocolsUsedForTheSources,protocolsUsedForTheDestination))
{
bool confirmed=true;
if(needConfirmation)
{
QMessageBox::StandardButton reply = QMessageBox::question(copyList.at(index).interface,tr("Group window"),tr("Do you want group the transfer with another actual running transfer?"),QMessageBox::Yes|QMessageBox::No,QMessageBox::No);
confirmed=(reply==QMessageBox::Yes);
}
if(confirmed)
{
copyList[index].orderId.push_back(orderId);
if(mode==Ultracopier::Copy)
copyList.at(index).engine->newCopy(sources,destination);
else
copyList.at(index).engine->newMove(sources,destination);
copyList.at(index).interface->haveExternalOrder();
return;
}
}
}
}
index++;
}
}
//else open new windows
if(openNewCopyEngineInstance(mode,false,protocolsUsedForTheSources,protocolsUsedForTheDestination)==-1)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to get a engine instance");
QMessageBox::critical(NULL,tr("Error"),tr("Unable to get a engine instance"));
return;
}
copyList.back().orderId.push_back(orderId);
if(mode==Ultracopier::Copy)
copyList.back().engine->newCopy(sources,destination);
else
copyList.back().engine->newMove(sources,destination);
copyList.back().interface->haveExternalOrder();
}
void Core::newCopy(const uint32_t &orderId,const std::vector<std::string> &protocolsUsedForTheSources,const std::vector<std::string> &sources,const std::string &protocolsUsedForTheDestination,const std::string &destination)
{
newTransfer(Ultracopier::Copy,orderId,protocolsUsedForTheSources,sources,protocolsUsedForTheDestination,destination);
}
void Core::newMove(const uint32_t &orderId,const std::vector<std::string> &protocolsUsedForTheSources,const std::vector<std::string> &sources,const std::string &protocolsUsedForTheDestination,const std::string &destination)
{
newTransfer(Ultracopier::Move,orderId,protocolsUsedForTheSources,sources,protocolsUsedForTheDestination,destination);
}
void Core::newMoveWithoutDestination(const uint32_t &orderId,const std::vector<std::string> &protocolsUsedForTheSources,const std::vector<std::string> &sources)
{
if(openNewCopyEngineInstance(Ultracopier::Move,false,protocolsUsedForTheSources)==-1)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to get a copy engine instance");
QMessageBox::critical(NULL,tr("Error"),tr("Unable to get a copy engine instance"));
return;
}
copyList.back().orderId.push_back(orderId);
copyList.back().engine->newMove(sources);
copyList.back().interface->haveExternalOrder();
}
/// \brief name to open the right copy engine
void Core::addWindowCopyMove(const Ultracopier::CopyMode &mode,const std::string &name)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start: "+name);
if(openNewCopyEngineInstance(mode,false,name)==-1)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to get a copy engine instance");
QMessageBox::critical(NULL,tr("Error"),tr("Unable to get a copy engine instance"));
return;
}
ActionOnManualOpen ActionOnManualOpen_value=static_cast<ActionOnManualOpen>(stringtoint32(OptionEngine::optionEngine->getOptionValue("Ultracopier","ActionOnManualOpen")));
if(ActionOnManualOpen_value!=ActionOnManualOpen_Nothing)
{
if(ActionOnManualOpen_value==ActionOnManualOpen_Folder)
copyList.back().engine->userAddFolder(mode);
else
copyList.back().engine->userAddFile(mode);
}
}
/// \brief name to open the right copy engine
void Core::addWindowTransfer(const std::string &name)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start"+name);
if(openNewCopyEngineInstance(Ultracopier::Copy,true,name)==-1)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to get a copy engine instance");
QMessageBox::critical(NULL,tr("Error"),tr("Unable to get a copy engine instance"));
return;
}
}
/** new transfer list pased by the CLI */
void Core::newTransferList(std::string engine,std::string mode,std::string file)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"engine: "+engine+", mode: "+mode+", file: "+file);
if(mode=="Transfer")
{
if(openNewCopyEngineInstance(Ultracopier::Copy,true,engine)==-1)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to get a copy engine instance");
QMessageBox::critical(NULL,tr("Error"),tr("Unable to get a copy engine instance"));
return;
}
}
else if(mode=="Copy")
{
if(openNewCopyEngineInstance(Ultracopier::Copy,false,engine)==-1)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to get a copy engine instance");
QMessageBox::critical(NULL,tr("Error"),tr("Unable to get a copy engine instance"));
return;
}
}
else if(mode=="Move")
{
if(openNewCopyEngineInstance(Ultracopier::Move,false,engine)==-1)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to get a copy engine instance");
QMessageBox::critical(NULL,tr("Error"),tr("Unable to get a copy engine instance"));
return;
}
}
else
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"The argument for the mode is not valid");
QMessageBox::critical(NULL,tr("Error"),tr("The argument for the mode is not valid"));
return;
}
copyList.back().engine->newTransferList(file);
}
bool Core::startNewTransferOneUniqueCopyEngine()
{
if(copyList.size()!=1)
return false;
if(openNewCopyEngineInstance(Ultracopier::Copy,true,std::string())==-1)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to get a copy engine instance");
QMessageBox::critical(NULL,tr("Error"),tr("Unable to get a copy engine instance"));
return false;
}
return true;
}
void Core::loadInterface()
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
//load the extra files to check the themes availability
if(copyList.size()>0)
{
bool error=false;
unsigned int index=0;
while(index<copyList.size())
{
copyList[index].interface=ThemesManager::themesManager->getThemesInstance();
if(copyList.at(index).interface==NULL)
{
copyInstanceCanceledByIndex(index);
error=true;
}
else
{
if(!copyList.at(index).ignoreMode)
copyList.at(index).interface->forceCopyMode(copyList.at(index).mode);
connectInterfaceAndSync(static_cast<unsigned int>(copyList.size()-1));
copyList.at(index).engine->syncTransferList();
index++;
}
}
if(error)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to load the interface, copy aborted");
QMessageBox::critical(NULL,tr("Error"),tr("Unable to load the interface, copy aborted"));
}
}
}
void Core::unloadInterface()
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
size_t index=0;
while(index<copyList.size())
{
if(copyList.at(index).interface!=NULL)
{
//disconnectInterface(index);
delete copyList.at(index).interface;
copyList[index].interface=NULL;
copyList[index].copyEngineIsSync=false;
}
index++;
}
}
unsigned int Core::incrementId()
{
do
{
nextId++;
if(nextId>2000000)
nextId=0;
} while(vectorcontainsAtLeastOne(idList,nextId));
return nextId;
}
/** open with specific source/destination
\param move Copy or move
\param ignoreMode if need ignore the mode
\param protocolsUsedForTheSources protocols used for sources
\param protocolsUsedForTheDestination protocols used for destination
*/
int Core::openNewCopyEngineInstance(const Ultracopier::CopyMode &mode,const bool &ignoreMode,
const std::vector<std::string> &protocolsUsedForTheSources,const std::string &protocolsUsedForTheDestination)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
CopyEngineManager::returnCopyEngine returnInformations=copyEngineList->getCopyEngine(mode,protocolsUsedForTheSources,protocolsUsedForTheDestination);
if(returnInformations.engine==NULL)
return -1;
return connectCopyEngine(mode,ignoreMode,returnInformations);
}
/** open with specific copy engine
\param move Copy or move
\param ignoreMode if need ignore the mode
\param protocolsUsedForTheSources protocols used for sources
\param protocolsUsedForTheDestination protocols used for destination
*/
int Core::openNewCopyEngineInstance(const Ultracopier::CopyMode &mode,const bool &ignoreMode,const std::string &name)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start, mode: "+std::to_string(mode)+", name: "+name);
CopyEngineManager::returnCopyEngine returnInformations=copyEngineList->getCopyEngine(mode,name);
if(returnInformations.engine==NULL)
return -1;
return connectCopyEngine(mode,ignoreMode,returnInformations);
}
/** Connect the copy engine instance provided previously to the management */
int Core::connectCopyEngine(const Ultracopier::CopyMode &mode,bool ignoreMode,const CopyEngineManager::returnCopyEngine &returnInformations)
{
if(returnInformations.canDoOnlyCopy)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Mode force for unknow reason");
ignoreMode=false;//force mode if need, normaly not used
}
CopyInstance newItem;
newItem.engine=returnInformations.engine;
if(newItem.engine!=NULL)
{
PluginInterface_Themes *theme=ThemesManager::themesManager->getThemesInstance();
if(theme!=NULL)
{
newItem.id=incrementId();
newItem.lastProgression=0;
newItem.interface=theme;
newItem.ignoreMode=ignoreMode;
newItem.mode=mode;
newItem.type=returnInformations.type;
newItem.transferListOperation=returnInformations.transferListOperation;
newItem.numberOfFile=0;
newItem.numberOfTransferedFile=0;
newItem.currentProgression=0;
newItem.totalProgression=0;
newItem.action=Ultracopier::Idle;
newItem.lastProgression=0;//store the real byte transfered, used in time remaining calculation
newItem.isPaused=false;
newItem.havePause=returnInformations.havePause;
newItem.isRunning=false;
newItem.haveError=false;
newItem.lastConditionalSync.start();
newItem.nextConditionalSync=new QTimer();
newItem.nextConditionalSync->setSingleShot(true);
newItem.copyEngineIsSync=true;
newItem.canceled=false;
switch(stringtoint32(OptionEngine::optionEngine->getOptionValue("Ultracopier","remainingTimeAlgorithm")))
{
default:
case 0:
newItem.remainingTimeAlgo=Ultracopier::RemainingTimeAlgo_Traditional;
break;
case 1:
newItem.remainingTimeAlgo=Ultracopier::RemainingTimeAlgo_Logarithmic;
{
int index=0;
while(index<ULTRACOPIER_MAXREMAININGTIMECOL)
{
RemainingTimeLogarithmicColumn remainingTimeLogarithmicColumn;
remainingTimeLogarithmicColumn.totalSize=0;
remainingTimeLogarithmicColumn.transferedSize=0;
newItem.remainingTimeLogarithmicValue.push_back(remainingTimeLogarithmicColumn);
index++;
}
}
break;
}
if(!ignoreMode)
{
newItem.interface->forceCopyMode(mode);
newItem.engine->forceMode(mode);
}
if(copyList.size()==0)
forUpateInformation.start();
copyList.push_back(newItem);
connectEngine(static_cast<unsigned int>(copyList.size()-1));
connectInterfaceAndSync(static_cast<unsigned int>(copyList.size()-1));
return static_cast<int>(newItem.id);
}
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to load the interface, copy aborted");
delete newItem.engine;
QMessageBox::critical(NULL,tr("Error"),tr("Unable to load the interface, copy aborted"));
}
else
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to load the copy engine, copy aborted");
QMessageBox::critical(NULL,tr("Error"),tr("Unable to load the copy engine, copy aborted"));
}
return -1;
}
void Core::resetSpeedDetectedEngine()
{
int index=indexCopySenderCopyEngine();
if(index!=-1)
resetSpeedDetected(static_cast<unsigned int>(index));
}
void Core::resetSpeedDetectedInterface()
{
int index=indexCopySenderInterface();
if(index!=-1)
resetSpeedDetected(static_cast<unsigned int>(index));
}
void Core::resetSpeedDetected(const unsigned int &bindex)
{
const size_t &index=bindex;
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start on "+std::to_string(index));
switch(copyList.at(index).remainingTimeAlgo)
{
case Ultracopier::RemainingTimeAlgo_Logarithmic:
{
size_t sub_index=0;
while(sub_index<ULTRACOPIER_MAXREMAININGTIMECOL)
{
copyList[index].remainingTimeLogarithmicValue[sub_index].lastProgressionSpeed.clear();
copyList[index].remainingTimeLogarithmicValue[sub_index].totalSize=0;
copyList[index].remainingTimeLogarithmicValue[sub_index].transferedSize=0;
sub_index++;
}
}
break;
default:
case Ultracopier::RemainingTimeAlgo_Traditional:
copyList[index].lastSpeedDetected.clear();
copyList[index].lastSpeedTime.clear();
copyList[index].lastAverageSpeedDetected.clear();
copyList[index].lastAverageSpeedTime.clear();
break;
}
}
void Core::doneTime(const std::vector<std::pair<uint64_t,uint32_t> > &timeList)
{
int index=indexCopySenderCopyEngine();
if(index!=-1)
{
CopyInstance ©Instance=copyList[index];
switch(copyInstance.remainingTimeAlgo)
{
case Ultracopier::RemainingTimeAlgo_Logarithmic:
if(copyInstance.remainingTimeLogarithmicValue.size()<ULTRACOPIER_MAXREMAININGTIMECOL)
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"bug, copyInstance.remainingTimeLogarithmicValue.size() "+std::to_string(copyInstance.remainingTimeLogarithmicValue.size())+" <ULTRACOPIER_MAXREMAININGTIMECOL");
else
{
unsigned int sub_index=0;
while(sub_index<timeList.size())
{
const std::pair<uint64_t,uint32_t> &timeUnit=timeList.at(sub_index);
const uint8_t &col=fileCatNumber(timeUnit.first);
RemainingTimeLogarithmicColumn &remainingTimeLogarithmicColumn=copyInstance.remainingTimeLogarithmicValue[col];
if(copyInstance.remainingTimeLogarithmicValue.size()<=col)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"bug, copyInstance.remainingTimeLogarithmicValue.size() "+std::to_string(copyInstance.remainingTimeLogarithmicValue.size())+" < col %2"+std::to_string(col));
break;
}
else
{
if(timeUnit.second>0)
{
remainingTimeLogarithmicColumn.lastProgressionSpeed.push_back(static_cast<unsigned int>(timeUnit.first/timeUnit.second));
if(remainingTimeLogarithmicColumn.lastProgressionSpeed.size()>ULTRACOPIER_MAXVALUESPEEDSTORED)
remainingTimeLogarithmicColumn.lastProgressionSpeed.erase(remainingTimeLogarithmicColumn.lastProgressionSpeed.begin());
}
}
sub_index++;
}
}
break;
default:
case Ultracopier::RemainingTimeAlgo_Traditional:
break;
}
}
else
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"unable to locate the interface sender");
}
void Core::actionInProgess(const Ultracopier::EngineActionInProgress &action)
{
int index=indexCopySenderCopyEngine();
if(index!=-1)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"action: "+std::to_string(action)+", from "+std::to_string(index));
//drop here the duplicate action
if(copyList.at(index).action==action)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"The copy engine have send 2x the same EngineActionInProgress");
return;
}
//update time runing for time remaning caculation
if(action==Ultracopier::Copying || action==Ultracopier::CopyingAndListing)
{
if(!copyList.at(index).isRunning)
copyList[index].isRunning=true;
}
else
{
if(copyList.at(index).isRunning)
copyList[index].isRunning=false;
}
//do sync
periodicSynchronizationWithIndex(index);
copyList[index].action=action;
if(copyList.at(index).interface!=NULL)
copyList.at(index).interface->actionInProgess(action);
if(action==Ultracopier::Idle)
{
unsigned int index_sub_loop=0;
while(index_sub_loop<copyList.at(index).orderId.size())
{
emit copyCanceled(copyList.at(index).orderId.at(index_sub_loop));
index_sub_loop++;
}
copyList[index].orderId.clear();
resetSpeedDetected(index);
}
#ifndef NOAUDIO
if(action==Ultracopier::Idle)
if(stringtobool(OptionEngine::optionEngine->getOptionValue("Ultracopier","soundWhenFinish")))
{
const std::string newSoundFile=OptionEngine::optionEngine->getOptionValue("Ultracopier","soundFile");
if(newSoundFile!=soundFile)
{
if(audio!=nullptr)
delete audio;
audio=static_cast<QAudioOutput *>(FacilityEngine::facilityEngine.prepareOpusAudio(newSoundFile,buffer));
soundFile=newSoundFile;
}
if(audio!=nullptr)
{
buffer.seek(0);
audio->start(&buffer);
}
}
#endif
}
else
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"unable to locate the interface sender");
}
void Core::newFolderListing(const std::string &path)
{
int index=indexCopySenderCopyEngine();
if(index!=-1)
{
copyList[index].folderListing=path;
copyList.at(index).interface->newFolderListing(path);
}
}
void Core::isInPause(const bool &isPaused)
{
int index=indexCopySenderCopyEngine();
if(index!=-1)
{
if(!isPaused)
resetSpeedDetected(index);
copyList[index].isPaused=isPaused;
copyList.at(index).interface->isInPause(isPaused);
}
}
/// \brief get the right copy instance (copy engine + interface), by signal emited from copy engine
int Core::indexCopySenderCopyEngine()
{
const QObject * senderObject=sender();
if(senderObject==NULL)
{
//QMessageBox::critical(NULL,tr("Internal error"),tr("A communication error occured between the interface and the copy plugin. Please report this bug."));
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Qt sender() NULL");
return -1;
}
unsigned int index=0;
while(index<copyList.size())
{
if(copyList.at(index).engine==senderObject)
return index;
index++;
}
//QMessageBox::critical(NULL,tr("Internal error"),tr("A communication error occured between the interface and the copy plugin. Please report this bug."));
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Sender not located in the list");
return -1;
}
/// \brief get the right copy instance (copy engine + interface), by signal emited from interface
int Core::indexCopySenderInterface()
{
QObject * senderObject=sender();
if(senderObject==NULL)
{
//QMessageBox::critical(NULL,tr("Internal error"),tr("A communication error occured between the interface and the copy plugin. Please report this bug."));
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Qt sender() NULL");
return -1;
}
unsigned int index=0;
while(index<copyList.size())
{
if(copyList.at(index).interface==senderObject)
return index;
index++;
}
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Unable to locate QObject * sender");
PluginInterface_Themes * interface = qobject_cast<PluginInterface_Themes *>(senderObject);
if(interface==NULL)
{
//QMessageBox::critical(NULL,tr("Internal error"),tr("A communication error occured between the interface and the copy plugin. Please report this bug."));
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Qt sender themes NULL");
return -1;
}
index=0;
while(index<copyList.size())
{
if(copyList.at(index).interface==interface)
return index;
index++;
}
//QMessageBox::critical(NULL,tr("Internal error"),tr("A communication error occured between the interface and the copy plugin. Please report this bug."));
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Sender not located in the list");
return -1;
}
void Core::connectEngine(const unsigned int &index)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start with index: "+std::to_string(index)+": "+std::to_string((uint64_t)sender()));
//disconnectEngine(index);
CopyInstance& currentCopyInstance=copyList[index];
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::newFolderListing, this,&Core::newFolderListing,Qt::QueuedConnection))//to check to change
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the engine can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for newFolderListing()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::actionInProgess, this,&Core::actionInProgess,Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the engine can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for actionInProgess()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::isInPause, this,&Core::isInPause,Qt::QueuedConnection))//to check to change
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the engine can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for isInPause()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::cancelAll, this,&Core::copyInstanceCanceledByEngine,Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the engine can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for cancelAll()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::error, this,&Core::error,Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the engine can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for error()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::rmPath, this,&Core::rmPath,Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the engine can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for rmPath()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::mkPath, this,&Core::mkPath,Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the engine can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for mkPath()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::syncReady, this,&Core::syncReady,Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the engine can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for syncReady()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::canBeDeleted, this,&Core::deleteCopyEngine,Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the engine can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for syncReady()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::doneTime, this,&Core::doneTime,Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the engine can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for doneTime()");
}
void Core::connectInterfaceAndSync(const unsigned int &index)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start with index: "+std::to_string(index)+": "+std::to_string((uint64_t)sender()));
//disconnectInterface(index);
CopyInstance& currentCopyInstance=copyList[index];
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::pause, currentCopyInstance.engine,&PluginInterface_CopyEngine::pause))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for pause()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::resume, currentCopyInstance.engine,&PluginInterface_CopyEngine::resume))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for resume()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::skip, currentCopyInstance.engine,&PluginInterface_CopyEngine::skip))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for skip()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::newSpeedLimitation, currentCopyInstance.engine,&PluginInterface_CopyEngine::setSpeedLimitation))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for newSpeedLimitation()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::userAddFolder, currentCopyInstance.engine,&PluginInterface_CopyEngine::userAddFolder))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for userAddFolder()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::userAddFile, currentCopyInstance.engine,&PluginInterface_CopyEngine::userAddFile))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for userAddFile()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::removeItems, currentCopyInstance.engine,&PluginInterface_CopyEngine::removeItems))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for removeItems()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::moveItemsOnTop, currentCopyInstance.engine,&PluginInterface_CopyEngine::moveItemsOnTop))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for moveItemsOnTop()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::moveItemsUp, currentCopyInstance.engine,&PluginInterface_CopyEngine::moveItemsUp))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for moveItemsUp()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::moveItemsDown, currentCopyInstance.engine,&PluginInterface_CopyEngine::moveItemsDown))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for moveItemsDown()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::moveItemsOnBottom, currentCopyInstance.engine,&PluginInterface_CopyEngine::moveItemsOnBottom))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for moveItemsOnBottom()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::exportTransferList, currentCopyInstance.engine,&PluginInterface_CopyEngine::exportTransferList))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for exportTransferList()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::exportErrorIntoTransferList, currentCopyInstance.engine,&PluginInterface_CopyEngine::exportErrorIntoTransferList))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for exportErrorIntoTransferList()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::importTransferList, currentCopyInstance.engine,&PluginInterface_CopyEngine::importTransferList))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for importTransferList()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::newSpeedLimitation, this,&Core::resetSpeedDetectedInterface))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for newSpeedLimitation()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::resume, this,&Core::resetSpeedDetectedInterface))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for resume()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::cancel, this,&Core::copyInstanceCanceledByInterface,Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for cancel()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::urlDropped, this,&Core::urlDropped,Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for urlDropped()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::newActionOnList,this,&Core::getActionOnList, Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for newActionOnList()");
if(!connect(currentCopyInstance.interface,&PluginInterface_Themes::askProductKey,this,&Core::askProductKey, Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for newActionOnList()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::pushFileProgression, currentCopyInstance.interface,&PluginInterface_Themes::setFileProgression, Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for pushFileProgression()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::pushGeneralProgression, currentCopyInstance.interface,&PluginInterface_Themes::setGeneralProgression, Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for pushGeneralProgression()");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::pushGeneralProgression, this,&Core::pushGeneralProgression, Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for pushGeneralProgression() for this");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::errorToRetry, currentCopyInstance.interface,&PluginInterface_Themes::errorToRetry, Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the interface can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for errorToRetry() for this");
if(!connect(currentCopyInstance.engine,&PluginInterface_CopyEngine::doneTime, currentCopyInstance.interface,&PluginInterface_Themes::doneTime,Qt::QueuedConnection))
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"error at connect, the engine can not work correctly: "+std::to_string(index)+": "+std::to_string((uint64_t)sender())+" for doneTime()");
currentCopyInstance.interface->setSupportSpeedLimitation(currentCopyInstance.engine->supportSpeedLimitation());
currentCopyInstance.interface->setCopyType(currentCopyInstance.type);
currentCopyInstance.interface->setTransferListOperation(currentCopyInstance.transferListOperation);
currentCopyInstance.interface->actionInProgess(currentCopyInstance.action);
currentCopyInstance.interface->isInPause(currentCopyInstance.isPaused);
currentCopyInstance.interface->havePause(currentCopyInstance.havePause);
if(currentCopyInstance.haveError)
currentCopyInstance.interface->errorDetected();
QWidget *tempWidget=currentCopyInstance.interface->getOptionsEngineWidget();
if(tempWidget!=NULL)
currentCopyInstance.interface->getOptionsEngineEnabled(currentCopyInstance.engine->getOptionsEngine(tempWidget));
//important, to have the modal dialog
currentCopyInstance.engine->setInterfacePointer(currentCopyInstance.interface);
//put entry into the interface
currentCopyInstance.engine->syncTransferList();
//force the updating, without wait the timer
periodicSynchronizationWithIndex(index);
}
void Core::changeToUltimate()
{
unsigned int index_sub_loop=0;
while(index_sub_loop<copyList.size())
{
CopyInstance i=copyList.at(index_sub_loop);
if(i.interface!=nullptr)
i.interface->changeToUltimate();
index_sub_loop++;
}
}
void Core::periodicSynchronization()
{
unsigned int index_sub_loop=0;
while(index_sub_loop<copyList.size())
{
if(copyList.at(index_sub_loop).action==Ultracopier::Copying || copyList.at(index_sub_loop).action==Ultracopier::CopyingAndListing)
periodicSynchronizationWithIndex(index_sub_loop);
index_sub_loop++;
}
}
void Core::periodicSynchronizationWithIndex(const int &index)
{
CopyInstance& currentCopyInstance=copyList[index];
if(currentCopyInstance.engine==NULL || currentCopyInstance.interface==NULL)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"some thread is null");
return;
}
/** ***************** Do time calcul ******************* **/
if(!currentCopyInstance.isPaused)
{
//calcul the last difference of the transfere
realByteTransfered=currentCopyInstance.engine->realByteTransfered();
quint64 diffCopiedSize=0;
if(realByteTransfered>=currentCopyInstance.lastProgression)
diffCopiedSize=realByteTransfered-currentCopyInstance.lastProgression;
currentCopyInstance.lastProgression=realByteTransfered;
// algo 1:
// ((double)currentProgression)/totalProgression -> example: done 80% -> 0.8
// baseTime+runningTime -> example: done into 80s, remaining time: 80/0.8-80=80*(1/0.8-1)=20s
// algo 2 (not used):
// remaining byte/current speed
//remaining time: (total byte - lastProgression)/byte per ms since the start
/*if(currentCopyInstance.totalProgression==0 || currentCopyInstance.currentProgression==0)
currentCopyInstance.interface->remainingTime(-1);
else if((currentCopyInstance.totalProgression-currentCopyInstance.currentProgression)>1024)
currentCopyInstance.interface->remainingTime(transferAddedTime*((double)currentCopyInstance.totalProgression/(double)currentCopyInstance.currentProgression-1)/1000);*/
//do the speed calculation
if(!currentCopyInstance.lastProgressionTime.isValid())
currentCopyInstance.lastProgressionTime.start();
else
{
if((currentCopyInstance.action==Ultracopier::Copying || currentCopyInstance.action==Ultracopier::CopyingAndListing))
{
currentCopyInstance.lastSpeedTime.push_back(currentCopyInstance.lastProgressionTime.elapsed());
currentCopyInstance.lastSpeedDetected.push_back(diffCopiedSize);
currentCopyInstance.lastAverageSpeedTime.push_back(currentCopyInstance.lastProgressionTime.elapsed());
currentCopyInstance.lastAverageSpeedDetected.push_back(diffCopiedSize);
while(currentCopyInstance.lastSpeedTime.size()>ULTRACOPIER_MAXVALUESPEEDSTORED)
currentCopyInstance.lastSpeedTime.erase(currentCopyInstance.lastSpeedTime.cbegin());
while(currentCopyInstance.lastSpeedDetected.size()>ULTRACOPIER_MAXVALUESPEEDSTORED)
currentCopyInstance.lastSpeedDetected.erase(currentCopyInstance.lastSpeedDetected.cbegin());
while(currentCopyInstance.lastAverageSpeedTime.size()>ULTRACOPIER_MAXVALUESPEEDSTOREDTOREMAININGTIME)
currentCopyInstance.lastAverageSpeedTime.erase(currentCopyInstance.lastAverageSpeedTime.cbegin());
while(currentCopyInstance.lastAverageSpeedDetected.size()>ULTRACOPIER_MAXVALUESPEEDSTOREDTOREMAININGTIME)
currentCopyInstance.lastAverageSpeedDetected.erase(currentCopyInstance.lastAverageSpeedDetected.cbegin());
double totTime=0,totAverageTime=0;
double totSpeed=0,totAverageSpeed=0;
//current speed
unsigned int index_sub_loop=0;
while(index_sub_loop<currentCopyInstance.lastSpeedDetected.size())
{
totTime+=currentCopyInstance.lastSpeedTime.at(index_sub_loop);
totSpeed+=currentCopyInstance.lastSpeedDetected.at(index_sub_loop);
index_sub_loop++;
}
totTime/=1000;
//speed to calculate the remaining time
index_sub_loop=0;
while(index_sub_loop<currentCopyInstance.lastAverageSpeedDetected.size())
{
totAverageTime+=currentCopyInstance.lastAverageSpeedTime.at(index_sub_loop);
totAverageSpeed+=currentCopyInstance.lastAverageSpeedDetected.at(index_sub_loop);
index_sub_loop++;
}
totAverageTime/=1000;
if(totTime>0)
if(currentCopyInstance.lastAverageSpeedDetected.size()>=ULTRACOPIER_MINVALUESPEED)
currentCopyInstance.interface->detectedSpeed(totSpeed/totTime);
if(totAverageTime>0)
if(currentCopyInstance.lastAverageSpeedDetected.size()>=ULTRACOPIER_MINVALUESPEEDTOREMAININGTIME)
{
if(currentCopyInstance.remainingTimeAlgo==Ultracopier::RemainingTimeAlgo_Traditional)
{
if(totSpeed>0)
{
//remaining time: (total byte - lastProgression)/byte per ms since the start
if(currentCopyInstance.totalProgression==0 || currentCopyInstance.currentProgression==0)
currentCopyInstance.interface->remainingTime(-1);
else if((currentCopyInstance.totalProgression-currentCopyInstance.currentProgression)>1024)
currentCopyInstance.interface->remainingTime((currentCopyInstance.totalProgression-currentCopyInstance.currentProgression)/(totAverageSpeed/totAverageTime));
}
else
currentCopyInstance.interface->remainingTime(-1);
}
else if(currentCopyInstance.remainingTimeAlgo==Ultracopier::RemainingTimeAlgo_Logarithmic)
{
int remainingTimeValue=0;
//calculate for each file class
index_sub_loop=0;
while(index_sub_loop<currentCopyInstance.remainingTimeLogarithmicValue.size())
{
const RemainingTimeLogarithmicColumn &remainingTimeLogarithmicColumn=currentCopyInstance.remainingTimeLogarithmicValue.at(index_sub_loop);
//normal detect
const quint64 &remainingSize=remainingTimeLogarithmicColumn.totalSize-remainingTimeLogarithmicColumn.transferedSize;
if(remainingTimeLogarithmicColumn.lastProgressionSpeed.size()>=ULTRACOPIER_MINVALUESPEED)
{
int average_speed=0;
unsigned int temp_loop_index=0;
while(temp_loop_index<remainingTimeLogarithmicColumn.lastProgressionSpeed.size())
{
average_speed+=remainingTimeLogarithmicColumn.lastProgressionSpeed.at(temp_loop_index);
temp_loop_index++;
}
if(!remainingTimeLogarithmicColumn.lastProgressionSpeed.empty())
{
average_speed/=remainingTimeLogarithmicColumn.lastProgressionSpeed.size();
if(average_speed!=0)
remainingTimeValue+=remainingSize/average_speed;
}
}
//fallback
else
{
if(totSpeed>0)
{
//remaining time: (total byte - lastProgression)/byte per ms since the start
if(currentCopyInstance.totalProgression==0 || currentCopyInstance.currentProgression==0)
remainingTimeValue+=1;
else if((currentCopyInstance.totalProgression-currentCopyInstance.currentProgression)>1024)
{
if(totAverageSpeed!=0)
remainingTimeValue+=remainingSize/totAverageSpeed;
}
}
else
remainingTimeValue+=1;
}
index_sub_loop++;
}
currentCopyInstance.interface->remainingTime(remainingTimeValue);
}
else
{}//error case
}
}
currentCopyInstance.lastProgressionTime.restart();
}
}
}
uint8_t Core::fileCatNumber(uint64_t size)
{
//all is in base 10 to understand more easily
//drop the big value
if(size>ULTRACOPIER_REMAININGTIME_BIGFILEMEGABYTEBASE10*1000*1000)
size=ULTRACOPIER_REMAININGTIME_BIGFILEMEGABYTEBASE10*1000*1000;
size=size/100;//to group all the too small file into the value 0
return log10(size);
}
/// \brief the copy engine have canceled the transfer
void Core::copyInstanceCanceledByEngine()
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
int index=indexCopySenderCopyEngine();
if(index!=-1)
copyInstanceCanceledByIndex(index);
else
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"unable to locate the copy engine sender");
}
/// \brief the interface have canceled the transfer
void Core::copyInstanceCanceledByInterface()
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
int index=indexCopySenderInterface();
if(index!=-1)
copyInstanceCanceledByIndex(index);
else
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"unable to locate the copy engine sender");
}
/// \brief the transfer have been canceled
void Core::copyInstanceCanceledByIndex(const unsigned int &index)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start, remove with the index: "+std::to_string(index));
//disconnectEngine(index);
//disconnectInterface(index);
copyList[index].canceled=true;
CopyInstance& currentCopyInstance=copyList[index];
currentCopyInstance.engine->cancel();
delete currentCopyInstance.nextConditionalSync;
delete currentCopyInstance.interface;
unsigned int index_sub_loop=0;
while(index_sub_loop<currentCopyInstance.orderId.size())
{
emit copyCanceled(currentCopyInstance.orderId.at(index_sub_loop));
index_sub_loop++;
}
currentCopyInstance.orderId.clear();
copyList.erase(copyList.cbegin()+index);
if(copyList.size()==0)
forUpateInformation.stop();
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"copyList.size(): "+std::to_string(copyList.size()));
}
/// \brief only when the copy engine say it's ready to delete them self, it call this
void Core::deleteCopyEngine()
{
QObject * senderObject=sender();
if(senderObject==NULL)
{
//QMessageBox::critical(NULL,tr("Internal error"),tr("A communication error occured between the interface and the copy plugin. Please report this bug."));
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Qt sender() NULL");
return;
}
PluginInterface_CopyEngine * copyEngine = static_cast<PluginInterface_CopyEngine *>(senderObject);
if(copyEngine==NULL)
{
//QMessageBox::critical(NULL,tr("Internal error"),tr("A communication error occured between the interface and the copy plugin. Please report this bug."));
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"Qt sender() NULL");
return;
}
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start, delete the copy engine");
delete copyEngine;
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"stop, delete the copy engine");
}
//error occurred
void Core::error(const std::string &path,const uint64_t &size,const uint64_t &mtime,const std::string &error)
{
log.error(path,size,mtime,error);
int index=indexCopySenderCopyEngine();
if(index!=-1)
{
copyList[index].haveError=true;
copyList.at(index).interface->errorDetected();
}
else
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"unable to locate the copy engine sender");
}
//for the extra logging
void Core::rmPath(const std::string &path)
{
log.rmPath(path);
}
void Core::mkPath(const std::string &path)
{
log.mkPath(path);
}
/// \brief to rsync after a new interface connection
void Core::syncReady()
{
int index=indexCopySenderCopyEngine();
if(index!=-1)
copyList[index].copyEngineIsSync=true;
else
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"unable to locate the copy engine sender");
}
void Core::getActionOnList(const std::vector<Ultracopier::ReturnActionOnCopyList> &actionList)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
//send the the interface
const int &index=indexCopySenderCopyEngine();
if(index!=-1)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start2");
if(copyList.at(index).copyEngineIsSync)
copyList.at(index).interface->getActionOnList(actionList);
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start3");
//log to the file and compute the remaining time
if(log.logTransfer() || copyList.at(index).remainingTimeAlgo==Ultracopier::RemainingTimeAlgo_Logarithmic)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start4");
unsigned int sub_index=0;
if(log.logTransfer() && copyList.at(index).remainingTimeAlgo==Ultracopier::RemainingTimeAlgo_Logarithmic)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start5");
while(sub_index<actionList.size())
{
const Ultracopier::ReturnActionOnCopyList &returnAction=actionList.at(sub_index);
switch(returnAction.type)
{
case Ultracopier::PreOperation:
log.newTransferStart(returnAction.addAction);
break;
case Ultracopier::RemoveItem:
if(returnAction.userAction.moveAt==0)
log.newTransferStop(returnAction.addAction);
else
log.transferSkip(returnAction.addAction);
if(copyList.at(index).remainingTimeAlgo==Ultracopier::RemainingTimeAlgo_Logarithmic)
{
const quint8 &col=fileCatNumber(returnAction.addAction.size);
copyList[index].remainingTimeLogarithmicValue[col].transferedSize+=returnAction.addAction.size;
}
break;
case Ultracopier::AddingItem:
if(copyList.at(index).remainingTimeAlgo==Ultracopier::RemainingTimeAlgo_Logarithmic)
{
const quint8 &col=fileCatNumber(returnAction.addAction.size);
copyList[index].remainingTimeLogarithmicValue[col].totalSize+=returnAction.addAction.size;
}
break;
default:
break;
}
sub_index++;
}
}
else if(log.logTransfer())
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start6");
while(sub_index<actionList.size())
{
const Ultracopier::ReturnActionOnCopyList &returnAction=actionList.at(sub_index);
switch(returnAction.type)
{
case Ultracopier::PreOperation:
log.newTransferStart(returnAction.addAction);
break;
case Ultracopier::RemoveItem:
if(returnAction.userAction.moveAt==0)
log.newTransferStop(returnAction.addAction);
else
log.transferSkip(returnAction.addAction);
if(copyList.at(index).remainingTimeAlgo==Ultracopier::RemainingTimeAlgo_Logarithmic)
{
const quint8 &col=fileCatNumber(returnAction.addAction.size);
copyList[index].remainingTimeLogarithmicValue[col].transferedSize+=returnAction.addAction.size;
}
break;
default:
break;
}
sub_index++;
}
}
else
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start7");
while(sub_index<actionList.size())
{
const Ultracopier::ReturnActionOnCopyList &returnAction=actionList.at(sub_index);
switch(returnAction.type)
{
case Ultracopier::RemoveItem:
if(copyList.at(index).remainingTimeAlgo==Ultracopier::RemainingTimeAlgo_Logarithmic)
{
const quint8 &col=fileCatNumber(returnAction.addAction.size);
copyList[index].remainingTimeLogarithmicValue[col].transferedSize+=returnAction.addAction.size;
}
break;
case Ultracopier::AddingItem:
if(copyList.at(index).remainingTimeAlgo==Ultracopier::RemainingTimeAlgo_Logarithmic)
{
const quint8 &col=fileCatNumber(returnAction.addAction.size);
copyList[index].remainingTimeLogarithmicValue[col].totalSize+=returnAction.addAction.size;
}
break;
default:
break;
}
sub_index++;
}
}
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start8");
}
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start9");
}
else
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"unable to locate the copy engine sender");
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start end");
}
void Core::pushGeneralProgression(const uint64_t ¤t,const uint64_t &total)
{
int index=indexCopySenderCopyEngine();
if(index!=-1)
{
copyList[index].currentProgression=current;
copyList[index].totalProgression=total;
}
else
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"unable to locate the copy engine sender");
}
/// \brief used to drag and drop files
void Core::urlDropped(const std::vector<std::string> &urls)
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
int bindex=indexCopySenderInterface();
if(bindex!=-1)
{
const unsigned int &index=static_cast<unsigned int>(bindex);
std::vector<std::string> sources;
unsigned int index_loop=0;
while(index_loop<urls.size())
{
if(!urls.at(index_loop).empty())
sources.push_back(urls.at(index_loop));
index_loop++;
}
if(sources.size()==0)
return;
else
{
if(copyList.at(index).ignoreMode)
{
QMessageBox::StandardButton reply=QMessageBox::question(copyList.at(index).interface,tr("Transfer mode"),
tr("Do you want to copy? If no, it will be moved."),QMessageBox::Yes|QMessageBox::No|QMessageBox::Cancel,QMessageBox::Cancel);
if(reply==QMessageBox::Yes)
copyList.at(index).engine->newCopy(sources);
if(reply==QMessageBox::No)
copyList.at(index).engine->newMove(sources);
}
else
{
if(copyList.at(index).mode==Ultracopier::Copy)
copyList.at(index).engine->newCopy(sources);
else
copyList.at(index).engine->newMove(sources);
}
}
}
else
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"unable to locate the copy engine sender");
}
|