diff -r e03a3db4489e -r 9abfd4f00d37 securitysettings/eapqtdialogs/src/eapdialogplugin.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/securitysettings/eapqtdialogs/src/eapdialogplugin.cpp Mon May 24 20:32:47 2010 +0300 @@ -0,0 +1,170 @@ +/* +* Copyright (c) 2010 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: Prompt Dialog plugin implementation +* +*/ + + +#include +#include +#include "eapdialogplugin.h" +#include "eapusernamepwddialog.h" +#include "OstTraceDefinitions.h" +#ifdef OST_TRACE_COMPILER_IN_USE +#endif + + +Q_EXPORT_PLUGIN2(eapdialogplugin, EapDialogPlugin) + + +// This plugin implements one device dialog type +static const struct { + const char *mTypeString; +} dialogInfos[] = { + {"com.nokia.eap.usernamepassworddialog/1.0"}, + {"com.nokia.eap.querydialog/1.0"}, + {"com.nokia.eap.passwordquerydialog/1.0"}, + {"com.nokia.eap.fastinstallpacquerydialog/1.0"}, + {"com.nokia.eap.fastpacstorepwquerydialog/1.0"}, + {"com.nokia.eap.fastcreatemasterkeyquerydialog/1.0"}, + {"com.nokia.eap.fastpacfilepwquerydialog/1.0"}, + {"com.nokia.eap.fastprovwaitnotedialog/1.0"}, + {"com.nokia.eap.mschapv2passwordexpirednotedialog/1.0"}, + {"com.nokia.eap.mschapv2oldpassworddialog/1.0"}, + {"com.nokia.eap.mschapv2newpassworddialog/1.0"}, + {"com.nokia.eap.fastshowprovnotsuccessnotedialog/1.0"} +}; + +/** + * Constructor + */ +EapDialogPlugin::EapDialogPlugin() +{ + OstTraceFunctionEntry0( EAPDIALOGPLUGIN_EAPDIALOGPLUGIN_ENTRY ); + qDebug("EapDialogPlugin::EapDialogPlugin"); + + OstTraceFunctionExit0( EAPDIALOGPLUGIN_EAPDIALOGPLUGIN_EXIT ); +} + +/** + * Destructor + */ +EapDialogPlugin::~EapDialogPlugin() +{ + OstTraceFunctionEntry0( DUP1_EAPDIALOGPLUGIN_DEAPDIALOGPLUGIN_ENTRY ); + + OstTraceFunctionExit0( EAPDIALOGPLUGIN_DEAPDIALOGPLUGIN_EXIT ); +} + +/** + * Create device dialog widget + */ +HbDeviceDialogInterface *EapDialogPlugin::createDeviceDialog( + const QString &deviceDialogType, + const QVariantMap ¶meters) +{ + OstTraceFunctionEntry0( EAPDIALOGPLUGIN_CREATEDEVICEDIALOG_ENTRY ); + qDebug("EapDialogPlugin::createDeviceDialog ENTER"); + + if ( deviceDialogType.compare("com.nokia.eap.usernamepassworddialog/1.0") == 0 ) + { + qDebug("EapDialogPlugin::createDeviceDialog: new EapUsernamePwdDialog"); + return ( new EapUsernamePwdDialog(parameters) ); + } + else + { + qDebug("EapDialogPlugin::createDeviceDialog: ELSE --> ERRORISMO"); + } + OstTraceFunctionExit0( EAPDIALOGPLUGIN_CREATEDEVICEDIALOG_EXIT ); + qDebug("EapDialogPlugin::createDeviceDialog EXIT"); + + return NULL; +} + +/** + * Check if client is allowed to use device dialog widget + */ +bool EapDialogPlugin::accessAllowed(const QString &deviceDialogType, + const QVariantMap ¶meters, const QVariantMap &securityInfo) const +{ + OstTraceFunctionEntry0( EAPDIALOGPLUGIN_ACCESSALLOWED_ENTRY ); + + Q_UNUSED(deviceDialogType) + Q_UNUSED(parameters) + Q_UNUSED(securityInfo) + + // This plugin doesn't perform operations that may compromise security. + // All clients are allowed to use. + return true; +} + +/** + * Return information of device dialog the plugin creates + */ +bool EapDialogPlugin::deviceDialogInfo(const QString &deviceDialogType, + const QVariantMap ¶meters, DeviceDialogInfo *info) const +{ + OstTraceFunctionEntry0( EAPDIALOGPLUGIN_DEVICEDIALOGINFO_ENTRY ); + qDebug("EapDialogPlugin::deviceDialogInfo"); + + Q_UNUSED(parameters) + Q_UNUSED(deviceDialogType) + + info->group = GenericDeviceDialogGroup; + info->flags = NoDeviceDialogFlags; + info->priority = DefaultPriority; + + OstTraceFunctionExit0( EAPDIALOGPLUGIN_DEVICEDIALOGINFO_EXIT ); + qDebug("EapDialogPlugin::deviceDialogInfo EXIT"); + return true; +} + +/** + * Return device dialog types this plugin implements + */ +QStringList EapDialogPlugin::deviceDialogTypes() const +{ + OstTraceFunctionEntry0( EAPDIALOGPLUGIN_DEVICEDIALOGTYPES_ENTRY ); + qDebug("EapDialogPlugin::deviceDialogTypes"); + + QStringList types; + const int numTypes = sizeof(dialogInfos) / sizeof(dialogInfos[0]); + for(int i = 0; i < numTypes; i++) { + types.append(dialogInfos[i].mTypeString); + } + + OstTraceFunctionExit0( EAPDIALOGPLUGIN_DEVICEDIALOGTYPES_EXIT ); + return types; +} + +/** + * Return plugin flags + */ +EapDialogPlugin::PluginFlags EapDialogPlugin::pluginFlags() const +{ + OstTraceFunctionEntry0( EAPDIALOGPLUGIN_PLUGINFLAGS_ENTRY ); + OstTraceFunctionExit0( EAPDIALOGPLUGIN_PLUGINFLAGS_EXIT ); + return NoPluginFlags; +} + +/** + * The last error is not stored, not supported + */ +int EapDialogPlugin::error() const +{ + OstTraceFunctionEntry0( EAPDIALOGPLUGIN_ERROR_ENTRY ); + OstTraceFunctionExit0( EAPDIALOGPLUGIN_ERROR_EXIT ); + return 0; +} +