os/mm/mmresourcemgmt/mmresctrl/inc/mmrcclient.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//mmrcclient.h
sl@0
     2
sl@0
     3
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     4
// All rights reserved.
sl@0
     5
// This component and the accompanying materials are made available
sl@0
     6
// under the terms of "Eclipse Public License v1.0"
sl@0
     7
// which accompanies this distribution, and is available
sl@0
     8
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     9
//
sl@0
    10
// Initial Contributors:
sl@0
    11
// Nokia Corporation - initial contribution.
sl@0
    12
//
sl@0
    13
// Contributors:
sl@0
    14
//
sl@0
    15
// Description:
sl@0
    16
//
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
/**
sl@0
    21
 @file
sl@0
    22
 @internalTechnology
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef RMMRCCLIENT_H
sl@0
    26
#define RMMRCCLIENT_H
sl@0
    27
sl@0
    28
// INCLUDES
sl@0
    29
#include <e32std.h>
sl@0
    30
#include <e32base.h>
sl@0
    31
#include <a3f/a3fbase.h>
sl@0
    32
#include "maudiostreamadaptationobserver.h"
sl@0
    33
sl@0
    34
class MAudioContext;
sl@0
    35
class MLogicalChain;
sl@0
    36
class MMultimediaResourceControlObserver;
sl@0
    37
class CMMRCServer;
sl@0
    38
class CMMRCServerSession;
sl@0
    39
class CMMRCClientImplementation;
sl@0
    40
class CAudioContext;
sl@0
    41
sl@0
    42
// CLASS DECLARATION
sl@0
    43
//
sl@0
    44
// This class opens connection and provides functions to MMRC server.
sl@0
    45
//
sl@0
    46
// @lib mmrcclient.lib
sl@0
    47
//
sl@0
    48
class RMMRCClient
sl@0
    49
	{
sl@0
    50
public:
sl@0
    51
	IMPORT_C RMMRCClient();
sl@0
    52
sl@0
    53
	IMPORT_C virtual ~RMMRCClient();
sl@0
    54
sl@0
    55
    //
sl@0
    56
     // Open connection to server.
sl@0
    57
     //
sl@0
    58
     // @param aConnection Interface to server, must not be connected.
sl@0
    59
     // @param aCallback Callback interface.
sl@0
    60
     // @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
sl@0
    61
     //
sl@0
    62
	IMPORT_C TInt Open(MMultimediaResourceControlObserver& aCallback);
sl@0
    63
sl@0
    64
    //
sl@0
    65
     // Zero is invalid Context id and indicates error.
sl@0
    66
     // @param aProcessId Process Id.
sl@0
    67
     // @return TUint32 Context Id.
sl@0
    68
     //
sl@0
    69
	IMPORT_C TUint64 LogOn(TProcessId aProcessId);
sl@0
    70
sl@0
    71
    //
sl@0
    72
     // Asynchronous return to ReceiveResourceResponse.
sl@0
    73
     //
sl@0
    74
     // @param aMessage Message to be sent.
sl@0
    75
     // @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
sl@0
    76
     //
sl@0
    77
	IMPORT_C TInt SendResourceRequest(MLogicalChain* aCurrent, MLogicalChain* aDesired, CAudioContext* aContext);
sl@0
    78
sl@0
    79
    //
sl@0
    80
     // Synchronous.
sl@0
    81
     //
sl@0
    82
     // @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
sl@0
    83
     //
sl@0
    84
	IMPORT_C TInt SendResourceConfirmation();
sl@0
    85
sl@0
    86
    //
sl@0
    87
     // Synchronous.
sl@0
    88
     //
sl@0
    89
     // @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
sl@0
    90
     //
sl@0
    91
	IMPORT_C TInt SendResourceUpdateResult();
sl@0
    92
sl@0
    93
    //
sl@0
    94
     // Synchronous.
sl@0
    95
     //
sl@0
    96
     // @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
sl@0
    97
     //
sl@0
    98
	IMPORT_C TInt SendResourceErrorNotification();
sl@0
    99
sl@0
   100
	//
sl@0
   101
     // Close connection to server.
sl@0
   102
	 //
sl@0
   103
	IMPORT_C void Close();
sl@0
   104
	//
sl@0
   105
     // Register a client for notification.
sl@0
   106
	 //
sl@0
   107
	IMPORT_C TInt RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData);
sl@0
   108
	
sl@0
   109
	//
sl@0
   110
     // Cancel the register of a client for notification.
sl@0
   111
	 //
sl@0
   112
	IMPORT_C TInt CancelRegisterAsClient(TUid aEventType);
sl@0
   113
	//
sl@0
   114
     // 
sl@0
   115
	 //
sl@0
   116
	IMPORT_C TInt WillResumePlay();
sl@0
   117
sl@0
   118
	IMPORT_C void ResetMessages();
sl@0
   119
	
sl@0
   120
private:
sl@0
   121
	CMMRCClientImplementation* iImplementation;
sl@0
   122
	};
sl@0
   123
sl@0
   124
#endif  // RMMRCCLIENT_H