logsui/logsengine/tsrc/stubs/qthighway_stub.cpp
author hgs
Mon, 23 Aug 2010 18:14:51 +0300
changeset 15 76d2cf7a585e
parent 9 68f3171a5819
child 21 2f0af9ba7665
permissions -rw-r--r--
201033

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  
*
*/

#include <xqservicerequest.h>
#include <xqrequestinfo.h>
#include <xqappmgr.h>
#include <QHash>
#include "qthighway_stub_helper.h"

QString qtHighwayStubService;
QString qtHighwayStubMessage;
bool qtHighwayStubRequestBg = false;
bool qtHighwayStubRequestEmbedded = false;

QString qtAiwStubInterface;
QString qtAiwStubOperation;
bool qtAiwStubSynchronous = true;
bool qtAiwFailCreateRequest = false;

void QtHighwayStubHelper::reset()
{
    qtHighwayStubService.clear();
    qtHighwayStubMessage.clear();
    qtHighwayStubRequestBg = false;
    qtHighwayStubRequestEmbedded = false;
    qtAiwStubInterface.clear();
    qtAiwStubOperation.clear();
    qtAiwStubSynchronous = true;
    qtAiwFailCreateRequest = false;
}

bool QtHighwayStubHelper::isRequestSynchronous()
{
    return qtAiwStubSynchronous;
}

void QtHighwayStubHelper::setFailCreateAiwRequest(bool fail)
{
    qtAiwFailCreateRequest = fail;
}

QString QtHighwayStubHelper::service()
{
    return qtHighwayStubService;
}

QString QtHighwayStubHelper::message()
{
    return qtHighwayStubMessage;
}

bool QtHighwayStubHelper::isRequestBg()
{
    return qtHighwayStubRequestBg;
}

bool QtHighwayStubHelper::isRequestEmbedded()
{
    return qtHighwayStubRequestEmbedded;
}

XQServiceRequest::XQServiceRequest(
    const QString& service, const QString& message, const bool& synchronous)
{
    qtHighwayStubService = service;
    qtHighwayStubMessage = message;
}

XQServiceRequest::~XQServiceRequest()
{

}


void XQServiceRequest::setArguments(const QList<QVariant> &arguments)
{
    Q_UNUSED(arguments)
}

QString XQServiceRequest::service() const
{
    return qtHighwayStubService;
}

QString XQServiceRequest::message() const
{
    return qtHighwayStubMessage;
}

bool XQServiceRequest::send(QVariant& retValue) 
{
    return true;
}
void XQServiceRequest::addArg(const QVariant& v)
{

}

void XQServiceRequest::setInfo(const XQRequestInfo &info)
{
    Q_UNUSED(info);
}

XQRequestInfo::XQRequestInfo()
{
}

XQRequestInfo::~XQRequestInfo()
{
    
}

void XQRequestInfo::setBackground(bool on)
{
    qtHighwayStubRequestBg = on;
}

bool XQRequestInfo::isBackground() const
{
    return qtHighwayStubRequestBg;
}


void XQRequestInfo::setForeground(bool on)
{
    qtHighwayStubRequestBg = !on;
}

void XQRequestInfo::setEmbedded(bool embedded)
{
    qtHighwayStubRequestEmbedded = embedded;
}


// -----------------------------------------------------------------------------
// XQApplicationManager stubs
// -----------------------------------------------------------------------------
//
XQApplicationManager::XQApplicationManager()
{
}

XQApplicationManager::~XQApplicationManager()
{
}

XQAiwRequest* XQApplicationManager::create( const QString& interface, 
        const QString& operation, bool embedded)
{
    if (!qtAiwFailCreateRequest) {
        qtAiwStubInterface = interface;
        qtAiwStubOperation = operation;
        qtHighwayStubRequestEmbedded = embedded;
        XQAiwInterfaceDescriptor descr;
        return new XQAiwRequest(descr, operation, embedded);
    } else {
        return 0; 
    }
}

XQAiwRequest::XQAiwRequest(const XQAiwInterfaceDescriptor &descriptor, 
        const QString &operation, bool embedded)
{
    Q_UNUSED(descriptor)
    Q_UNUSED(operation)
    Q_UNUSED(embedded)
}

XQAiwRequest::~XQAiwRequest()
{    
}

const QString& XQAiwRequest::operation() const
{
    return qtAiwStubOperation;
}

const XQAiwInterfaceDescriptor& XQAiwRequest::descriptor() const
{
    return XQAiwInterfaceDescriptor();
}

void XQAiwRequest::setArguments(const QList<QVariant> &arguments)
{
    Q_UNUSED(arguments)
}

bool XQAiwRequest::send()
{
    return true;
}

void XQAiwRequest::setSynchronous(bool synchronous)
{
    qtAiwStubSynchronous = synchronous;
}

XQAiwInterfaceDescriptor::XQAiwInterfaceDescriptor()
{    
}

XQAiwInterfaceDescriptor::~XQAiwInterfaceDescriptor()
{    
}

QString XQAiwInterfaceDescriptor::interfaceName() const
{
    return qtAiwStubInterface;
}