--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/epoc32/include/mclient.h Tue Mar 16 16:12:26 2010 +0000
@@ -0,0 +1,178 @@
+// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
+// which accompanies this distribution, and is available
+// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+//
+
+#if !defined(__MCLIENT_H__)
+#define __MCLIENT_H__
+
+#if !defined(__E32BASE_H__)
+#include <e32base.h>
+#endif
+
+#if !defined(__MSVSTD_H__)
+#include <msvstd.h>
+#endif
+
+#if !defined(__MSVIPC_H__)
+#include <msvipc.h>
+#endif
+
+#if !defined(__MSVREG_H__)
+#include <msvreg.h>
+#endif
+
+#include <mmsvstoremanager.h>
+#include <tnonoperationmtmdata.h>
+
+// Forward declarations
+class CMsvClientEntry;
+class TCapabilitySet;
+class TMsvSystemProgress;
+
+//**********************************
+//RMsvSession
+//**********************************
+//
+// NOTE most functions are exported for test purposes only
+//
+/**
+Low level client-side API to access the message server.
+
+It should not be used directly by client applications. They should use higher-level helper classes such as
+CMsvSession, CMsEntry, and CMsvStore. These helper classes access the message server through RMsvServerSession.
+
+@internalTechnology
+*/
+class RMsvServerSession : public RSessionBase, public MRegisteredMtmDllObserver, public MMsvStoreManager
+ {
+public:
+ IMPORT_C RMsvServerSession();
+ IMPORT_C virtual ~RMsvServerSession();
+ IMPORT_C TInt Connect(RFs& aFs);
+ IMPORT_C TVersion Version() const;
+ // Synchronous message
+ IMPORT_C TInt GetEntry(TMsvId aId, TMsvId& aService, TMsvEntry& aEntry);
+ IMPORT_C TInt GetChildren(TMsvId aId, CArrayPtrFlat<CMsvClientEntry>& aEntries, const TMsvSelectionOrdering& aOrdering);
+ IMPORT_C TInt LockEntry(TMsvId aId);
+ IMPORT_C TInt ReleaseEntry(TMsvId aId);
+ IMPORT_C TInt ReadStore(TMsvId aId);
+ IMPORT_C TInt LockStore(TMsvId aId);
+ IMPORT_C TInt ReleaseStore(TMsvId aId);
+ TInt DecStoreReaderCount(TMsvId aId);
+ IMPORT_C TInt OperationProgress(TMsvOp aId, TDes8& aProgress);
+ IMPORT_C TInt OperationSystemProgress(TMsvOp aId, TMsvSystemProgress& aProgress);
+ IMPORT_C TInt OperationCompletion(TMsvOp aId, TDes8& aProgress);
+ IMPORT_C TInt CancelOperation(TMsvOp aId, TDes8& aProgress);
+ IMPORT_C TInt CancelSessionEventRequest();
+ IMPORT_C TInt OperationMtmL(TMsvId aId1, TMsvId aId2, TUid& aMtm, TMsvId& aService);
+ inline TInt OperationMtmL(TMsvId aId1, TUid& aMtm, TMsvId& aService);
+ IMPORT_C void CreateEntryL(const TMsvEntry& aEntry, TMsvOp aOperationId, TSecureId aOwnerId);
+ IMPORT_C void ChangeEntryL(const TMsvEntry& aEntry, TMsvOp aOperationId, TSecureId aOwnerId);
+ IMPORT_C void MoveEntriesL(const CMsvEntrySelection& aSelection, TMsvId aTarget, TMsvOp aOperationId);
+ IMPORT_C void CopyEntriesL(const CMsvEntrySelection& aSelection, TMsvId aTarget, TMsvOp aOperationId);
+ IMPORT_C void DeleteEntriesL(const CMsvEntrySelection& aSelection, TMsvOp aOperationId);
+ IMPORT_C void ChangeAttributesL(const CMsvEntrySelection& aSelection, TUint aSetAttributes, TUint aClearAttributes);
+ IMPORT_C void GetChildIdsL(TMsvId aId, const CMsvEntryFilter& aFilter, CMsvEntrySelection& aSelection);
+ TInt OutstandingOperationsL();
+ // Asynchronous messages
+ IMPORT_C void CreateEntryL(const TMsvEntry& aEntry, TMsvOp aOperationId, TSecureId aOwnerId, TRequestStatus& aRequestStatus);
+ IMPORT_C void ChangeEntryL(const TMsvEntry& aEntry, TMsvOp aOperationId, TSecureId aOwnerId, TRequestStatus& aRequestStatus);
+ IMPORT_C void DeleteEntriesL(const CMsvEntrySelection& aSelection, TMsvOp aOperationId, TRequestStatus& aRequestStatus);
+ IMPORT_C void MoveEntriesL(const CMsvEntrySelection& aSelection, TMsvId aTarget, TMsvOp aOperationId, TRequestStatus& aRequestStatus);
+ IMPORT_C void CopyEntriesL(const CMsvEntrySelection& aSelection, TMsvId aTarget, TMsvOp aOperationId, TRequestStatus& aRequestStatus);
+ IMPORT_C void TransferCommandL(const CMsvEntrySelection& aSelection, TInt aCommandId, const TDesC8& aParameter, TMsvOp aOperationId, TRequestStatus& aStatus);
+ IMPORT_C TInt TransferCommandL(const CMsvEntrySelection& aSelection, TInt aCommandId, const TDesC8& aParameter, TMsvOp aOperationId);
+ IMPORT_C void QueueSessionEventRequest(TDes8& aChange, TDes8& aSequence, TRequestStatus& aRequestStatus);
+ void ChangeDriveL(TInt aDrive, TMsvOp aOperationId, TRequestStatus& aRequestStatus);
+ void CopyStoreL(const TDriveUnit& aDrive, TMsvOp aOperationId, TRequestStatus& aStatus);
+ void DeleteStoreL(const TDriveUnit& aDrive, TMsvOp aOperationId, TRequestStatus& aStatus);
+ // MTM
+ IMPORT_C TInt FillRegisteredMtmDllArray(TUid aMtmDllTypeUid,CRegisteredMtmDllArray& aRegisteredMtmDllArray,TTimeIntervalMicroSeconds32 aTimeoutMicroSeconds32); // Fill array with Dlls whose second uid is aMtmDllTypeUid
+ IMPORT_C TInt InstallMtmGroup(const TDesC& aFullName);
+ IMPORT_C TInt DeInstallMtmGroup(const TDesC& aFullName);
+ IMPORT_C TInt UseMtmGroup(TUid aMtmTypeUid);
+ IMPORT_C TInt ReleaseMtmGroup(TUid aMtmTypeUid);
+ IMPORT_C CMtmGroupData* GetMtmGroupDataL(TUid aMtmTypeUid);
+ void GetMtmRequiredCapabilitiesL(TUid aMtmTypeUid, TCapabilitySet& aCapSet) const;
+ TBool GetAndClearIndexCorruptFlagL();
+ TBool DriveContainsStoreL(TDriveUnit aDrive);
+ // Server
+ IMPORT_C void CloseMessageServer();
+ IMPORT_C void RemoveEntry(TMsvId aId);
+ IMPORT_C TInt GetMessageDirectory(TDes& aDirectory);
+ TInt SetSessionAsObserver();
+ TUint32 NotifySequenceL();
+ IMPORT_C TInt SetReceiveEntryEvents(TBool aReceive);
+ // Services
+ IMPORT_C TInt StopService(TMsvId aServiceId);
+ IMPORT_C TBool ServiceActive(TMsvId aServiceId);
+ IMPORT_C TInt ServiceProgress(TMsvId aServiceId, TDes8& aProgress);
+ //
+ IMPORT_C void SetFailure(TInt aType, TInt aArg1 = 0, TInt aArg2 = 0, TInt aArg3 = 0);
+ TInt GetMessageDrive();
+
+ TInt GetNonOperationMtmData(TMsvId aServiceId, const TNonOperationMtmDataType& aType, TDes8& aMtmData);
+
+ // from MMsvStoreManager
+ IMPORT_C TBool CreateAttachmentForWriteL(TMsvId aEntryId, TDes& aFilename, RFile& aFile);
+ IMPORT_C void ReplaceAttachmentForWriteL(TMsvId aEntryId, TDes& aFilename, RFile& aFile);
+ IMPORT_C void OpenAttachmentL(TMsvId aEntryId, const TDesC& aFilePath, RFile& aFile);
+ IMPORT_C void OpenAttachmentForWriteL(TMsvId aEntryId, const TDesC& aFilePath, RFile& aFile);
+ IMPORT_C TInt DeleteAttachment(TMsvId aEntryId, const TDesC& aFilePath);
+ IMPORT_C TInt RenameAttachment(TMsvId aEntryId, const TDesC& aOldFilePath, const TDesC& aNewName);
+ IMPORT_C TBool FileExistsL(const TDesC& aFilePath);
+ IMPORT_C void AttachmentFilePathL(TMsvId aEntryId, TDes& aFilePath);
+ IMPORT_C TInt OpenFileStoreForRead(TMsvId aEntryId, RFile& aFile);
+ IMPORT_C void OpenTempStoreFileL(TMsvId aEntryId, RFile& aFile);
+ IMPORT_C void ReplaceFileStoreL(TMsvId aEntryId);
+ IMPORT_C void DeleteFileStoreL(TMsvId aEntryId);
+ IMPORT_C TBool FileStoreExistsL(TMsvId aEntryId) const;
+ IMPORT_C TBool MessageStoreDrivePresentL();
+ IMPORT_C TBool CreateShareProtectedAttachmentForWriteL(TMsvId aEntryId, TDes& aFilename, RFile& aFile);
+ IMPORT_C void BodyTextFilePathL(TMsvId aBodyTextId, TDes& aFilePath);
+ IMPORT_C void OpenBodyTextFileForReadL(RFile& aFile, TMsvId aBodyTextId, const TDesC& aFilePath);
+ IMPORT_C void CreatePlainTextFileL(RFile& aFile, TMsvId aBodyTextId);
+ IMPORT_C void DeletePlainTextFileL(TMsvId aBodyTextId);
+ IMPORT_C void ReplacePlainTextFileL(TMsvId aBodyTextId);
+private:
+ void DoGetChildrenL(TMsvId aId, CArrayPtrFlat<CMsvClientEntry>& aEntries, const TMsvSelectionOrdering& aOrdering);
+ void DoGetRemainingChildrenL(TPckgBuf<TMsvChildrenDetails>& aDetails, CArrayPtrFlat<CMsvClientEntry>& aEntries);
+ void PackEntryIntoBufferL(const TMsvEntry& aEntry);
+ void SendEntryDataL(TMsvOp aOperationId, const TMsvEntry& aEntry);
+ void SendOperationDataL(TMsvOp aOperationId, const CMsvEntrySelection& aSelection, TInt aParameter1=0, TInt aParameter2=0);
+ void SendCommandDataL(TMsvOp aOperationId, const CMsvEntrySelection& aSelection, TInt aCommand, const TDesC8& aParameter);
+ void TestSlotAvailableL();
+ void PackOperationDataL(const CMsvEntrySelection& aSelection, TInt aParameter1, TInt aParameter2);
+ void DoGetEntryL(TMsvId aId, TMsvId& aService, TMsvEntry& aEntry);
+
+private:
+ HBufC8* iBuffer;
+ };
+
+/**
+Gets the MTM that would perform an operation on a specified entry.
+
+@param aId1 ID of the entry
+@param aMtm On return, the UID of the MTM that would be used
+@param aService On return, the ID of the service that would be used
+@return System wide error code
+
+@capability None
+*/
+inline TInt RMsvServerSession::OperationMtmL(TMsvId aId1, TUid& aMtm, TMsvId& aService)
+ {
+ return OperationMtmL(aId1, aId1, aMtm, aService);
+ }
+
+#endif // __MCLIENT_H__