OSDN Git Service

Updated license info.
[lamexp/LameXP.git] / src / Thread_MessageProducer.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 //
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
22
23 #include "Thread_MessageProducer.h"
24
25 #include "Global.h"
26
27 #include <QStringList>
28 #include <QApplication>
29 #include <QFileInfo>
30 #include <QDir>
31
32 #include <limits.h>
33
34 ////////////////////////////////////////////////////////////
35 // Constructor
36 ////////////////////////////////////////////////////////////
37
38 MessageProducerThread::MessageProducerThread(void)
39 {
40 }
41
42 MessageProducerThread::~MessageProducerThread(void)
43 {
44 }
45
46 void MessageProducerThread::run()
47 {
48         setTerminationEnabled(true);
49         bool bSentFiles = false;
50         const QStringList &arguments = lamexp_arguments(); //QApplication::arguments();
51
52         for(int i = 0; i < arguments.count(); i++)
53         {
54                 if(!arguments[i].compare("--kill", Qt::CaseInsensitive))
55                 {
56                         lamexp_ipc_send(666, NULL);
57                         return;
58                 }
59                 if(!arguments[i].compare("--force-kill", Qt::CaseInsensitive))
60                 {
61                         lamexp_ipc_send(666, "Force!");
62                         return;
63                 }
64         }
65
66         for(int i = 0; i < arguments.count() - 1; i++)
67         {
68                 if(!arguments[i].compare("--add", Qt::CaseInsensitive))
69                 {
70                         QFileInfo file = QFileInfo(arguments[++i]);
71                         if(file.exists() && file.isFile())
72                         {
73                                 lamexp_ipc_send(1, QUTF8(file.canonicalFilePath()));
74                         }
75                         bSentFiles = true;
76                 }
77                 if(!arguments[i].compare("--add-folder", Qt::CaseInsensitive))
78                 {
79                         QDir dir = QDir(arguments[++i]);
80                         if(dir.exists())
81                         {
82                                 lamexp_ipc_send(2, QUTF8(dir.canonicalPath()));
83                         }
84                         bSentFiles = true;
85                 }
86                 if(!arguments[i].compare("--add-recursive", Qt::CaseInsensitive))
87                 {
88                         QDir dir = QDir(arguments[++i]);
89                         if(dir.exists())
90                         {
91                                 lamexp_ipc_send(3, QUTF8(dir.canonicalPath()));
92                         }
93                         bSentFiles = true;
94                 }
95         }
96
97         if(!bSentFiles)
98         {
99                 lamexp_ipc_send(UINT_MAX, "Use running instance!");
100         }
101 }
102
103 ////////////////////////////////////////////////////////////
104 // EVENTS
105 ////////////////////////////////////////////////////////////
106
107 /*NONE*/