/****************************************************************************
**
** Trolltech hereby grants a license to use the Qt/Eclipse Integration
** plug-in (the software contained herein), in binary form, solely for the
** purpose of creating code to be used with Trolltech's Qt software.
**
** Qt Designer is licensed under the terms of the GNU General Public
** License versions 2.0 and 3.0 ("GPL License"). Trolltech offers users the
** right to use certain no GPL licensed software under the terms of its GPL
** Exception version 1.2 (http://trolltech.com/products/qt/gplexception).
**
** THIS SOFTWARE IS PROVIDED BY TROLLTECH AND ITS CONTRIBUTORS (IF ANY) "AS
** IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
** TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
** PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
** OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
** PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
** LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
** NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** Since we now have the GPL exception I think that the "special exception
** is no longer needed. The license text proposed above (other than the
** special exception portion of it) is the BSD license and we have added
** the BSD license as a permissible license under the exception.
**
****************************************************************************/
#include <QtCore>
#include <QCoreApplication>
#include "smfserver.h"
#ifdef SETTINGS_TEST
#include "smfsettingshandler.h"
#include <QFile>
#include <QTextStream>
#include <QMap>
#endif
void debugOutput(QtMsgType type, const char *msg)
{
QFile logFile("c://data//SmfLog.txt");
Q_ASSERT(logFile.open( QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append ));
QTextStream stream(&logFile);
switch (type)
{
case QtDebugMsg:
stream<<msg<<"\n";
break;
case QtWarningMsg:
stream<<"Warning: ";
stream<<msg<<"\n";
break;
case QtCriticalMsg:
stream<<"Critical: ";
stream<<msg<<"\n";
break;
case QtFatalMsg:
stream<<"Fatal: ";
stream<<msg<<"\n";
break;
default:;
}
}
int main(int argc, char *argv[])
{
qInstallMsgHandler(debugOutput);
QCoreApplication a(argc, argv);
#ifndef SETTINGS_TEST
SmfServer* server = new SmfServer();
server->startServer();
#else
SmfSettingsHandler* settingsHandler = new SmfSettingsHandler();
////////////////////test1//////////////////////////////////////
//100 MB
QString maxData = QString::number(100000000);
settingsHandler->SetMaxDataTransferLimit(maxData);
QString getmaxData = settingsHandler->GetMaxDataTransferLimit();
////////////////////test1//////////////////////////////////////
////////////////////test2//////////////////////////////////////
QString pluginname = "SamplePlugin";
QString pluginstatus = "Authorized";
settingsHandler->SetPluginDetails(pluginname,pluginstatus);
QMap<QString,QString> getData;
settingsHandler->GetPluginDetails(getData);
QString pluginstatus2 = getData.value(pluginname);
////////////////////test2//////////////////////////////////////
QFile file("c:\\data\\getCRKeys.txt");
if (!file.open(QIODevice::Append | QIODevice::Text))
;
QTextStream out(&file);
out << getmaxData << "\n";
out << pluginstatus2 << "\n";
file.close();
a.exit(0);
#endif
return a.exec();
}