javaextensions/pim/framework/inc.s60/cpimmanager.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 17 Sep 2010 08:28:21 +0300
changeset 76 4ad59aaee882
parent 26 dc7c549001d5
child 83 26b2b12093af
permissions -rw-r--r--
Revision: v2.2.13 Kit: 201037

/*
* Copyright (c) 2008 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:  PIM manager singleton native side, a starting point to PIM API.
 *
*/


#ifndef CPIMMANAGER_H
#define CPIMMANAGER_H

//  INCLUDES
#include <e32base.h>
#include <e32std.h>
#include <badesca.h>
#include "pimcommon.h"
#include "mpimcontactadaptermanager.h"
#include "mpimeventadaptermanager.h"
#include "mpimtodoadaptermanager.h"
#include "functionserver.h"
#include "pimbasemanager.h"

// FORWARD DECLARATIONS
class MPIMLocalizationManager;
class CPIMVersit;
class CPIMList;
class pimbaselist;
class CPIMContactList;
class CPIMEventList;
class CPIMToDoList;
class CPIMItem;
class CPIMContactValidator;
class CPIMEventValidator;
class CPIMToDoValidator;
class MPIMAdapterAccess;
class CCalSession;

// CLASS DECLARATION

/**
 *  PIM manager class. Provides access to PIM functionalities.
 */
NONSHARABLE_CLASS(CPIMManager): public CBase,
        public pimbasemanager,
        public java::util::FunctionServer
{
public: // Constructors and destructor

    /**
     * Creates a new PIMManager and initializes it.
     * Initialization includes:
     * @li Initializing Validators
     * @li Initializing Adapter Managers from Adapter Access objects
     * @li Initializing Localization Manager
     * @li Initializing proper Localizations for each list
     * @li Initializing Versit
     */

    /**
     * Two-phased constructor.
     * This constructor should be used in unit tests only.
     */
    //static pimbasemanager* CPIMManager::getInstance( ) ;

    static CPIMManager* NewL();

    /**
     * Destructor.
     */
    virtual ~CPIMManager();
    void DeleteSessions();

public: // New functions

    /**
     * LocalizationManager
     * Returns an interface for PIM Localization manager
     * Note that caller does not take the ownership of the instance
     *
     * @return PIM Localization Manager
     */
    MPIMLocalizationManager* localizationManager() const;

    /**
     * Appends a new Adapter Access to the end of the list of
     * Adapter Accesses.
     *
     * The order of Adapter Access objects and the lists provided by
     * them matters; default list of each type is the first list
     * of that type encountered when searched sequentially through
     * the Adapter Access objects and their lists.
     *
     * @param aAdapterAccess The new Adapter Access.
     *        Owhership of the argument is taken.
     *
     * @par Leaving:
     * @li Any - fatal error.
     */
    void AddAdapterAccessL(MPIMAdapterAccess* aAdapterAccess);

    /**
     * Opens a PIM list of given type.
     *
     * @param aPimListType List type.
     * @param aPimListName Name of the list. The name must be valid list
     *        name. If not present, name is resolved to the default list
     *        of the given type.
     * @param aCalName Name of the Canlendar. The name must be valid Canlendar
     *        name. If not present, name is resolved to the default Canlendar.
     *
     * @return PIM list. Type of the list corresponds to
     *         \a aPimListType argument.
     *
     * @par Leaving:
     * The method leaves on error. Error codes should be interpreted as
     * follows:
     * @li \c KErrArgument - \a aPimListType is invalid.
     * @li \c KErrNotSupported - \a aPimListType is not supported.
     * @li \c KErrNotFound - No list was found by \a aPimListName.
     * @li \c KErrAlreadyExists - The list was already opened and multiple
     *     instances of the list are not supported.
     * @li Other - Internal error.
     */
    pimbaselist* openPimList(
        const TPIMListType& aPimListType,
        jstring aPimListName,
        jstring aCalName,
        JNIEnv* aJniEnv);

    /**
     * Lists PIM lists of given type.
     * The first entry in the list is the default list of the given type.
     *
     * @param aPimListType List type.
     *
     * @return Array of list names.
     *         Caller takes the ownership of the returned object.
     *
     * @par Leaving:
     * @li \c KErrArgument - \a aPimListType is not valid PIM list type.
     */

    jobjectArray listPimLists(
        const TPIMListType& aPimListType,
        jintArray aError,
        JNIEnv* aJniEnv);
    /**
     * Lists list of Calendars existsing the mobile database.
     *
     * @return Array of list names.
     *         Caller takes the ownership of the returned object.
     *
     */
    jobjectArray listCalendars(jintArray aError, JNIEnv* aJniEnv);

    /**
     * Lists list of Calendars names existsing the mobile database.
     *
     * @return Array of list names.
     *         Caller takes the ownership of the returned object.
     */
    jobjectArray listCalendarNames(jintArray aError, JNIEnv* aJniEnv);

    /**
     * create new calendar which you given name.
     *
     * @param calendar name Sting type this is used as filename.
     *
     * @param calendar name Sting type this is used as diaplay to the user.
     *
     * @return void.
     *
     * @par Leaving:
     * @li \c KErrArgument - \if name already exists
     */
    void createCalendar(jstring aCalName, jstring aDisplayName, JNIEnv* aJniEnv);

    /**
    * delete the calendar which you given name.
    *
    * @param calendar name Sting type this is used as canlader filename
    *        which it will delete.
    * @return void.
    *
    * @par Leaving:
    * @li \c KErrArgument - \a calendar name is not valid or not exists.
    */
    void deleteCalendar(jstring aCalName, JNIEnv* aJniEnv);

    /**
     * Provides a Contact validator.
     */
    const CPIMContactValidator& ContactValidator();

    /**
     * Provides an Event validator.
     */
    const CPIMEventValidator& EventValidator();

    /**
     * Provides a ToDo validator.
     */
    const CPIMToDoValidator& ToDoValidator();

protected: // New functions

    /**
     * Opens a contact list.
     *
     * @param aListName Name of the list or NULL to indicate
     *        default list.
     *
     * @return A new list or NULL if no matching list was found.
     */
    CPIMContactList* DoOpenContactListL(
        const TDesC* aListName);

    /**
     * Opens an event list.
     *
     * @param aListName Name of the list or NULL to indicate
     *        default list.
     *
     * @return A new list or NULL if no matching list was found.
     */
    CPIMEventList* DoOpenEventListL(
        const TDesC* aListName, const TDesC* aCalName);

    /**
     * Opens a to-do list.
     *
     * @param aListName Name of the list or NULL to indicate
     *        default list.
     * @param aCalName Name of the calendar or NULL to indicate
     *        default calendar.
     * @return A new list or NULL if no matching list and calendar was found.
     */
    CPIMToDoList* DoOpenToDoListL(const TDesC* aListName, const TDesC* aCalName);


    /**
    * Opens a to-do list.
    *
    * @param aPimListType Name of the list or NULL to indicate
    *        default list.
    * @return A new list or NULL if no matching list and calendar was found.
    */
    CDesCArray* CPIMManager::DoListPimListsL(
        const TPIMListType& aPimListType);

    /**
     * list all the calendars this function will call by ListCalendars function
     *
     * @return void.
     */
    void CPIMManager::DoListCalendarsL();

    /**
     * list all the calendars names this function will call by ListCalendatNames function
     *
     * @return void.
     */
    void CPIMManager::DoListCalendarNamesL();


    /**
     * creates the new calendar by given name.
     *
     * @param aFileName name of the calendar file this is string type.
     *
     * @param aDisplayName name of the calendar to display this is string type
     *
     * @return void.
     */
    void CPIMManager::DoCreateCalFileL(const TDesC &aFileName,const TDesC &aDisplayName);

    /**
     * delets the calendar by given name.
     *
     * @param aFileName name of the calendar file this is string type.
     *
     * @return void.
     */
    void CPIMManager::DoDeleteCalFileL(const TDesC& aFileName);

    /**
    * Opens a PIM list of given type.
    *
    * @param aPimListType List type.
    * @param aPimListName Name of the list. The name must be valid list
    *        name. If not present, name is resolved to the default list
    *        of the given type.
    * @param aCalName Name of the Canlendar. The name must be valid Canlendar
    *        name. If not present, name is resolved to the default Canlendar.
    *
    * @return PIM list. Type of the list corresponds to
    *         \a aPimListType argument.
    *
    * @par Leaving:
    * The method leaves on error. Error codes should be interpreted as
    * follows:
    * @li \c KErrArgument - \a aPimListType is invalid.
    * @li \c KErrNotSupported - \a aPimListType is not supported.
    * @li \c KErrNotFound - No list was found by \a aPimListName.
    * @li \c KErrAlreadyExists - The list was already opened and multiple
    *     instances of the list are not supported.
    * @li Other - Internal error.
    */
    pimbaselist* CPIMManager::DoOpenPimListL(
        const TPIMListType& aPimListType,
        const TDesC* aPimListName,
        const TDesC* aCalName);
    /**
     * this method will create the Sessions with every calendar using file server.
     *
     */

    void CPIMManager::createCalSessionL();

    void dispose();


private: // Constructors

    /**
     * C++ default constructor.
     */
    CPIMManager();

    /**
     * Symbian 2nd phase constructor.
     */
    void ConstructL();

private: // Data

    /** Owned. */
    MPIMLocalizationManager* iLocalizationManager;

    /**
     * List of Adapter Access objects. Elements are owned.
     */
    RPointerArray< MPIMAdapterAccess> iAdapterAccesses;

    /** Owned. */
    CPIMContactValidator* iContactValidator;

    /** Owned. */
    CPIMEventValidator* iEventValidator;

    /** Owned. */
    CPIMToDoValidator* iToDoValidator;

    /** (Owned.) */
    RLibrary iLocalizationLibrary;

    CDesCArray* iCalList;
    /** Session to calendar server. Owned. */
    //CCalSession* iCalSession;

    RPointerArray<CCalSession> iCalSessions;

    CDesCArray* iCalendarNamesDesCArray;

    CDesCArray* iCalSessionArray;

    CDesCArray* iCalListName;
    CDesCArrayFlat* iDesCArray;
    CCalSession* iCalSession;


};

#endif // CPIMMANAGER_H
// End of File