psmservices/psmserver/inc/client/psmsession.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 31 Aug 2010 16:29:05 +0300
branchRCL_3
changeset 60 ccb4f6b3db21
parent 0 4e1aa6a622a0
permissions -rw-r--r--
Revision: 201033 Kit: 201035

/*
* Copyright (c) 2007 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:  PSM client-server session class.
*
*/


#ifndef PSMSESSION_H
#define PSMSESSION_H

#include <e32base.h>
#include <psmtypes.h>
#include "psmclientserver.h"

/**
 * Main session class for PSM server. This is only for PSM client's 
 * internal use. R-classes are hidden to actual clients.
 * 
 * @since S60 5.0
 */
NONSHARABLE_CLASS ( RPsmServer ) : public RSessionBase
    {
    public:
        /**
         * Creates a session with a server.
         */
        TInt Connect();

        /**
         * Send message to server
         *
         * @param aRequest The function number identifying the request.
         * @param aArgs A set of up to arguments
         * @return KErrNone if connect succesfully, otherwise system wide error
         */
        TInt SendReceiveSync( TPsmServerRequest aRequest, const TIpcArgs& aArgs ) const;

        /**
         * Send asynchronous message to server
         *
         * @param aRequest The function number identifying the request.
         * @param aArgs A set of up to arguments
         * @param aStatus The request status object used to contain the completion status of the request.
         */
        void SendReceiveAsync( TPsmServerRequest aRequest, 
                               const TIpcArgs& aArgs, 
                               TRequestStatus& aStatus ) const;

    private:

        /**
         * Return server location
         *
         * @return location of server
         */
        TFullName ServerLocation() const;

        /**
         * Return version of server
         *
         * @return version of server
         */
        TVersion ServerVersion() const;

        /**
         * Starts server
         *
         * @return KErrNone if started succesfully, otherwise system wide error
         */
        TInt StartServer() const;

    };

#endif // PSMSESSION_H