os/textandloc/charconvfw/charconv_fw/test/t_charconvfwserver.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
#include "t_charconvfwserver.h"
sl@0
    19
#include "t_memory.h"
sl@0
    20
#include "t_simple7.h"
sl@0
    21
#include "t_simple8.h"
sl@0
    22
#include "t_rfc1642.h"
sl@0
    23
#include "t_comp7.h"
sl@0
    24
#include "t_comp8.h"
sl@0
    25
#include "t_realut8.h"
sl@0
    26
#include "t_realuni.h"
sl@0
    27
#include "t_error.h"
sl@0
    28
#include "t_newlin7.h"
sl@0
    29
#include "t_java.h"
sl@0
    30
#include "t_partial.h"
sl@0
    31
#include "t_imap.h"
sl@0
    32
sl@0
    33
sl@0
    34
/* Path to the script
sl@0
    35
sl@0
    36
c:\z:\t_TEF\t_TEF_All.script
sl@0
    37
sl@0
    38
*/
sl@0
    39
sl@0
    40
_LIT(KServerName,"T_CharConvFWServer");
sl@0
    41
sl@0
    42
CT_CharConvFwServer *CT_CharConvFwServer::NewL()
sl@0
    43
/**
sl@0
    44
   @return - Instance of the test server
sl@0
    45
   Same code for Secure and non-secure variants
sl@0
    46
   Called inside the MainL() function to create and start the
sl@0
    47
   CTestServer derived server.
sl@0
    48
 */
sl@0
    49
    {
sl@0
    50
    CT_CharConvFwServer * server = new (ELeave) CT_CharConvFwServer();
sl@0
    51
    CleanupStack::PushL(server);
sl@0
    52
    // CServer base class call
sl@0
    53
    server->StartL(KServerName);
sl@0
    54
    CleanupStack::Pop(server);
sl@0
    55
    return server;
sl@0
    56
    }
sl@0
    57
sl@0
    58
sl@0
    59
LOCAL_C void MainL()
sl@0
    60
//
sl@0
    61
// Secure variant
sl@0
    62
// Much simpler, uses the new Rendezvous() call to sync with the client
sl@0
    63
//
sl@0
    64
    {
sl@0
    65
#if (defined __DATA_CAGING__)
sl@0
    66
    RProcess().DataCaging(RProcess::EDataCagingOn);
sl@0
    67
    RProcess().SecureApi(RProcess::ESecureApiOn);
sl@0
    68
#endif
sl@0
    69
    CActiveScheduler* sched=NULL;
sl@0
    70
    sched=new(ELeave) CActiveScheduler;
sl@0
    71
    CActiveScheduler::Install(sched);
sl@0
    72
    CT_CharConvFwServer *server = NULL;
sl@0
    73
    // Create the CTestServer derived server
sl@0
    74
    TRAPD(err,server = CT_CharConvFwServer::NewL());
sl@0
    75
    if(!err)
sl@0
    76
        {
sl@0
    77
        // Sync with the client and enter the active scheduler
sl@0
    78
        RProcess::Rendezvous(KErrNone);
sl@0
    79
        sched->Start();
sl@0
    80
        }
sl@0
    81
    delete server;
sl@0
    82
    delete sched;
sl@0
    83
    }
sl@0
    84
sl@0
    85
/** @return - Standard Epoc error code on process exit
sl@0
    86
    Secure variant only
sl@0
    87
    Process entry point. Called by client using RProcess API
sl@0
    88
*/
sl@0
    89
GLDEF_C TInt E32Main()
sl@0
    90
    {
sl@0
    91
    __UHEAP_MARK;
sl@0
    92
    CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
    93
    if(cleanup == NULL)
sl@0
    94
        {
sl@0
    95
        return KErrNoMemory;
sl@0
    96
        }
sl@0
    97
    TRAPD(err,MainL());
sl@0
    98
    // This if statement is here just to shut up RVCT, which would otherwise warn
sl@0
    99
    // that err was set but never used
sl@0
   100
    if (err)
sl@0
   101
        {
sl@0
   102
        err = KErrNone;
sl@0
   103
        }
sl@0
   104
    delete cleanup;
sl@0
   105
    __UHEAP_MARKEND;
sl@0
   106
    return KErrNone;
sl@0
   107
    }
sl@0
   108
sl@0
   109
CTestStep *CT_CharConvFwServer::CreateTestStep(const TDesC& aStepName)
sl@0
   110
/**
sl@0
   111
   @return - A CTestStep derived instance
sl@0
   112
   Secure and non-secure variants
sl@0
   113
   Implementation of CTestServer pure virtual
sl@0
   114
 */
sl@0
   115
    {
sl@0
   116
    if(aStepName == KTestStep_T_MEMORY)
sl@0
   117
        {
sl@0
   118
        return new CT_MEMORY();
sl@0
   119
        }
sl@0
   120
    else if(aStepName == KTestStep_T_SIMPLE7)
sl@0
   121
        {
sl@0
   122
        return new CT_SIMPLE7();
sl@0
   123
        }
sl@0
   124
    else if(aStepName == KTestStep_T_SIMPLE8)
sl@0
   125
        {
sl@0
   126
        return new CT_SIMPLE8();
sl@0
   127
        }
sl@0
   128
    else if(aStepName == KTestStep_T_RFC1642)
sl@0
   129
        {
sl@0
   130
        return new CT_RFC1642();
sl@0
   131
        }
sl@0
   132
    else if(aStepName == KTestStep_T_COMP7)
sl@0
   133
        {
sl@0
   134
        return new CT_COMP7();
sl@0
   135
        }
sl@0
   136
    else if(aStepName == KTestStep_T_COMP8)
sl@0
   137
        {
sl@0
   138
        return new CT_COMP8();
sl@0
   139
        }
sl@0
   140
    else if(aStepName == KTestStep_T_REALUT8)
sl@0
   141
        {
sl@0
   142
        return new CT_REALUT8();
sl@0
   143
        }
sl@0
   144
    else if(aStepName == KTestStep_T_REALUNI)
sl@0
   145
        {
sl@0
   146
        return new CT_REALUNI();
sl@0
   147
        }
sl@0
   148
    else if(aStepName == KTestStep_T_ERROR)
sl@0
   149
        {
sl@0
   150
        return new CT_ERROR();
sl@0
   151
        }
sl@0
   152
    else if(aStepName == KTestStep_T_NEWLIN7)
sl@0
   153
        {
sl@0
   154
        return new CT_NEWLIN7();
sl@0
   155
        }
sl@0
   156
    else if(aStepName == KTestStep_T_JAVA)
sl@0
   157
        {
sl@0
   158
        return new CT_JAVA();
sl@0
   159
        }
sl@0
   160
    else if(aStepName == KTestStep_T_PARTIAL)
sl@0
   161
        {
sl@0
   162
        return new CT_PARTIAL();
sl@0
   163
        }
sl@0
   164
    else if(aStepName == KTestStep_T_IMAP)
sl@0
   165
        {
sl@0
   166
        return new CT_IMAP();
sl@0
   167
        }
sl@0
   168
    
sl@0
   169
    return NULL;
sl@0
   170
    }
sl@0
   171