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
|
/** \file CopyListener.h
\brief Define the copy listener
\author alpha_one_x86
\version 0.3
\date 2010
\licence GPL3, see the file COPYING */
#include "CopyListener.h"
CopyListener::CopyListener(OptionDialog *optionDialog)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
this->optionDialog=optionDialog;
pluginLoader=new PluginLoader(optionDialog);
//load the options
tryListen=false;
QList<QPair<QString, QVariant> > KeysList;
KeysList.append(qMakePair(QString("CatchCopyAsDefault"),QVariant(true)));
options->addOptionGroup("CopyListener",KeysList);
plugins->lockPluginListEdition();
QList<PluginsAvailable> list=plugins->getPluginsByCategory(PluginType_Listener);
qRegisterMetaType<PluginsAvailable>("PluginsAvailable");
qRegisterMetaType<ListeningState>("ListeningState");
connect(this,SIGNAL(previouslyPluginAdded(PluginsAvailable)), this,SLOT(onePluginAdded(PluginsAvailable)),Qt::QueuedConnection);
connect(plugins,SIGNAL(onePluginAdded(PluginsAvailable)), this,SLOT(onePluginAdded(PluginsAvailable)),Qt::QueuedConnection);
connect(plugins,SIGNAL(onePluginWillBeRemoved(PluginsAvailable)), this,SLOT(onePluginWillBeRemoved(PluginsAvailable)),Qt::DirectConnection);
connect(plugins,SIGNAL(pluginListingIsfinish()), this,SLOT(allPluginIsloaded()),Qt::QueuedConnection);
connect(pluginLoader,SIGNAL(pluginLoaderReady(CatchState,bool,bool)), this,SIGNAL(pluginLoaderReady(CatchState,bool,bool)));
foreach(PluginsAvailable currentPlugin,list)
emit previouslyPluginAdded(currentPlugin);
plugins->unlockPluginListEdition();
last_state=NotListening;
last_have_plugin=false;
last_inWaitOfReply=false;
}
CopyListener::~CopyListener()
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
QList<PluginsAvailable> list=plugins->getPluginsByCategory(PluginType_Listener);
foreach(PluginsAvailable currentPlugin,list)
onePluginWillBeRemoved(currentPlugin);
delete pluginLoader;
}
void CopyListener::resendState()
{
if(plugins->allPluginHaveBeenLoaded())
{
sendState(true);
pluginLoader->resendState();
}
}
void CopyListener::onePluginAdded(const PluginsAvailable &plugin)
{
if(plugin.category!=PluginType_Listener)
return;
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"try load: "+plugin.path+PluginsManager::getResolvedPluginName("listener"));
//setFileName
QPluginLoader *pluginOfPluginLoader=new QPluginLoader(plugin.path+PluginsManager::getResolvedPluginName("listener"));
QObject *pluginInstance = pluginOfPluginLoader->instance();
if(pluginInstance)
{
PluginInterface_Listener *listen = qobject_cast<PluginInterface_Listener *>(pluginInstance);
//check if found
int index=0;
while(index<pluginList.size())
{
if(pluginList.at(index).listenInterface==listen)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Warning,QString("Plugin already found %1 for %2").arg(pluginList.at(index).path).arg(plugin.path));
pluginOfPluginLoader->unload();
return;
}
index++;
}
if(listen)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"Plugin correctly loaded");
#ifdef ULTRACOPIER_DEBUG
connect(listen,SIGNAL(debugInformation(DebugLevel,QString,QString,QString,int)),this,SLOT(debugInformation(DebugLevel,QString,QString,QString,int)));
#endif // ULTRACOPIER_DEBUG
connect(listen,SIGNAL(newCopy(quint32,QStringList)), this,SLOT(newPluginCopy(quint32,QStringList)));
connect(listen,SIGNAL(newCopy(quint32,QStringList,QString)), this,SLOT(newPluginCopy(quint32,QStringList,QString)));
connect(listen,SIGNAL(newMove(quint32,QStringList)), this,SLOT(newPluginMove(quint32,QStringList)));
connect(listen,SIGNAL(newMove(quint32,QStringList,QString)), this,SLOT(newPluginMove(quint32,QStringList,QString)));
PluginListener newPluginListener;
newPluginListener.listenInterface = listen;
newPluginListener.pluginLoader = pluginOfPluginLoader;
newPluginListener.path = plugin.path+PluginsManager::getResolvedPluginName("listener");
newPluginListener.state = NotListening;
newPluginListener.inWaitOfReply = false;
newPluginListener.options=new LocalPluginOptions("Listener-"+plugin.name);
newPluginListener.listenInterface->setResources(newPluginListener.options,plugin.writablePath,plugin.path,ULTRACOPIER_VERSION_PORTABLE_BOOL);
optionDialog->addPluginOptionWidget(PluginType_Listener,plugin.name,newPluginListener.listenInterface->options());
connect(languages,SIGNAL(newLanguageLoaded(QString)),newPluginListener.listenInterface,SLOT(newLanguageLoaded()));
pluginList << newPluginListener;
connect(pluginList.last().listenInterface,SIGNAL(newState(ListeningState)),this,SLOT(newState(ListeningState)));
if(tryListen)
{
pluginList.last().inWaitOfReply=true;
listen->listen();
}
}
else
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Warning,"unable to cast the plugin: "+pluginOfPluginLoader->errorString());
}
else
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Warning,"unable to load the plugin: "+pluginOfPluginLoader->errorString());
}
#ifdef ULTRACOPIER_DEBUG
void CopyListener::debugInformation(DebugLevel level,const QString& fonction,const QString& text,const QString& file,const int& ligne)
{
DebugEngine::addDebugInformationStatic(level,fonction,text,file,ligne,"Listener plugin");
}
#endif // ULTRACOPIER_DEBUG
bool CopyListener::oneListenerIsLoaded()
{
return (pluginList.size()>0);
}
void CopyListener::onePluginWillBeRemoved(const PluginsAvailable &plugin)
{
if(plugin.category!=PluginType_Listener)
return;
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"unload the current plugin");
int indexPlugin=0;
while(indexPlugin<pluginList.size())
{
if((plugin.path+PluginsManager::getResolvedPluginName("listener"))==pluginList.at(indexPlugin).path)
{
int index=0;
while(index<copyRunningList.size())
{
if(copyRunningList.at(index).listenInterface==pluginList.at(indexPlugin).listenInterface)
copyRunningList[index].listenInterface=NULL;
index++;
}
pluginList.at(indexPlugin).listenInterface->close();
disconnect(pluginList.at(indexPlugin).listenInterface);
pluginList.at(indexPlugin).pluginLoader->unload();
delete pluginList.at(indexPlugin).options;
pluginList.removeAt(indexPlugin);
sendState();
return;
}
indexPlugin++;
}
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Warning,"not found");
}
void CopyListener::newState(const ListeningState &state)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
PluginInterface_Listener *temp=qobject_cast<PluginInterface_Listener *>(QObject::sender());
if(temp==NULL)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Critical,QString("listener not located!"));
return;
}
int index=0;
while(index<pluginList.size())
{
if(temp==pluginList.at(index).listenInterface)
{
pluginList[index].state=state;
pluginList[index].inWaitOfReply=false;
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,QString("new state for the plugin %1: %2").arg(index).arg(state));
sendState(true);
return;
}
index++;
}
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Critical,QString("listener not found!"));
}
void CopyListener::listen()
{
tryListen=true;
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
int index=0;
while(index<pluginList.size())
{
pluginList[index].inWaitOfReply=true;
pluginList.at(index).listenInterface->listen();
index++;
}
pluginLoader->load();
}
void CopyListener::close()
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
tryListen=false;
pluginLoader->unload();
int index=0;
while(index<pluginList.size())
{
pluginList[index].inWaitOfReply=true;
pluginList.at(index).listenInterface->close();
index++;
}
copyRunningList.clear();
}
QStringList CopyListener::stripSeparator(QStringList sources)
{
int index=0;
while(index<sources.size())
{
sources[index].remove(QRegExp("[\\\\/]+$"));
index++;
}
return sources;
}
/** new copy without destination have been pased by the CLI */
void CopyListener::newCopy(QStringList sources)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
emit newCopy(incrementOrderId(),QStringList() << "file",stripSeparator(sources));
}
/** new copy with destination have been pased by the CLI */
void CopyListener::newCopy(QStringList sources,QString destination)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
emit newCopy(incrementOrderId(),QStringList() << "file",stripSeparator(sources),"file",destination);
}
/** new move without destination have been pased by the CLI */
void CopyListener::newMove(QStringList sources)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
emit newMove(incrementOrderId(),QStringList() << "file",stripSeparator(sources));
}
/** new move with destination have been pased by the CLI */
void CopyListener::newMove(QStringList sources,QString destination)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
emit newMove(incrementOrderId(),QStringList() << "file",stripSeparator(sources),"file",destination);
}
void CopyListener::copyFinished(const quint32 & orderId,const bool &withError)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
int index=0;
while(index<copyRunningList.size())
{
if(orderId==copyRunningList.at(index).orderId)
{
orderList.removeAll(orderId);
if(copyRunningList.at(index).listenInterface!=NULL)
copyRunningList.at(index).listenInterface->transferFinished(copyRunningList.at(index).pluginOrderId,withError);
copyRunningList.removeAt(index);
return;
}
index++;
}
}
void CopyListener::copyCanceled(const quint32 & orderId)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
int index=0;
while(index<copyRunningList.size())
{
if(orderId==copyRunningList.at(index).orderId)
{
orderList.removeAll(orderId);
if(copyRunningList.at(index).listenInterface!=NULL)
copyRunningList.at(index).listenInterface->transferCanceled(copyRunningList.at(index).pluginOrderId);
copyRunningList.removeAt(index);
return;
}
index++;
}
}
void CopyListener::newPluginCopy(const quint32 &orderId,const QStringList &sources)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"sources: "+sources.join(";"));
PluginInterface_Listener *plugin = qobject_cast<PluginInterface_Listener *>(sender());
CopyRunning newCopyInformation;
newCopyInformation.listenInterface = plugin;
newCopyInformation.pluginOrderId = orderId;
newCopyInformation.orderId = incrementOrderId();
copyRunningList << newCopyInformation;
emit newCopy(orderId,QStringList() << "file",stripSeparator(sources));
}
void CopyListener::newPluginCopy(const quint32 &orderId,const QStringList &sources,const QString &destination)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"sources: "+sources.join(";")+", destination: "+destination);
PluginInterface_Listener *plugin = qobject_cast<PluginInterface_Listener *>(sender());
CopyRunning newCopyInformation;
newCopyInformation.listenInterface = plugin;
newCopyInformation.pluginOrderId = orderId;
newCopyInformation.orderId = incrementOrderId();
copyRunningList << newCopyInformation;
emit newCopy(orderId,QStringList() << "file",stripSeparator(sources),"file",destination);
}
void CopyListener::newPluginMove(const quint32 &orderId,const QStringList &sources)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"sources: "+sources.join(";"));
PluginInterface_Listener *plugin = qobject_cast<PluginInterface_Listener *>(sender());
CopyRunning newCopyInformation;
newCopyInformation.listenInterface = plugin;
newCopyInformation.pluginOrderId = orderId;
newCopyInformation.orderId = incrementOrderId();
copyRunningList << newCopyInformation;
emit newMove(orderId,QStringList() << "file",stripSeparator(sources));
}
void CopyListener::newPluginMove(const quint32 &orderId,const QStringList &sources,const QString &destination)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"sources: "+sources.join(";")+", destination: "+destination);
PluginInterface_Listener *plugin = qobject_cast<PluginInterface_Listener *>(sender());
CopyRunning newCopyInformation;
newCopyInformation.listenInterface = plugin;
newCopyInformation.pluginOrderId = orderId;
newCopyInformation.orderId = incrementOrderId();
copyRunningList << newCopyInformation;
emit newMove(orderId,QStringList() << "file",stripSeparator(sources),"file",destination);
}
quint32 CopyListener::incrementOrderId()
{
do
{
nextOrderId++;
if(nextOrderId>2000000)
nextOrderId=0;
} while(orderList.contains(nextOrderId));
return nextOrderId;
}
void CopyListener::allPluginIsloaded()
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"with value: "+QString::number(pluginList.size()>0));
sendState(true);
}
void CopyListener::sendState(bool force)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,QString("start, pluginList.size(): %1, force: %2").arg(pluginList.size()).arg(force));
ListeningState current_state=NotListening;
bool found_not_listen=false,found_listen=false,found_inWaitOfReply=false;
int index=0;
while(index<pluginList.size())
{
if(current_state==NotListening)
{
if(pluginList.at(index).state==SemiListening)
current_state=SemiListening;
else if(pluginList.at(index).state==NotListening)
found_not_listen=true;
else if(pluginList.at(index).state==FullListening)
found_listen=true;
}
if(pluginList.at(index).inWaitOfReply)
found_inWaitOfReply=true;
index++;
}
if(current_state==NotListening)
{
if(found_not_listen && found_listen)
current_state=SemiListening;
else if(found_not_listen)
current_state=NotListening;
else if(FullListening)
current_state=FullListening;
else
current_state=SemiListening;
}
bool have_plugin=pluginList.size()>0;
if(force || current_state!=last_state || have_plugin!=last_have_plugin || found_inWaitOfReply!=last_inWaitOfReply)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,QString("send listenerReady(%1,%2,%3)").arg(current_state).arg(have_plugin).arg(found_inWaitOfReply));
emit listenerReady(current_state,have_plugin,found_inWaitOfReply);
}
else
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,QString("Skip the signal sending"));
last_state=current_state;
last_have_plugin=have_plugin;
last_inWaitOfReply=found_inWaitOfReply;
}
|