summaryrefslogtreecommitdiffstats
path: root/plugins/contacts/symbian/contactsmodel/inc/cntimagesutility.h
blob: e3da491f33fa5c3c1e9f327f3fdace2b711fb256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
* Copyright (c) 2009 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:  
*
*/

#ifndef CNTIMAGESUTILITY_H_
#define CNTIMAGESUTILITY_H_

#include <e32base.h>

class CImageRescaler;

/*
 * Interface for listening to the operations of contacts image utility class
 */
class MContactImageUtilityObserver
{
public:
    
    /**
     * Call back function used to inform the client of completion or error status
     * 
     * @param aDestPath A valid path to the new image, or empty.
     * @param aError KErrNone The operation was successful
     *               KErrNotFound The images directory does not exist
     *               KErrCancel The operation was cancelled while going on
     *               KErrGeneral Any other error while decoding
     *               KErrArgument Source image does not exist
     *               Any other system wide errors
     */
    virtual void UtilityOperationComplete(const TPath& aDestPath, TInt aError) = 0;
};

/**
 * This is a utility class used for operations on the private images folder that is used
 * to store scaled images assigned to contacts on the contacts database.
 * 
 * When user assigns an image to a contact, the contacts database needs to take ownership
 * of the image. Because of this, a copy of the image is stored in an separate directory.
 * If need be, the image is rescaled to a smaller size before being copied. Users of CContactDatabase 
 * API can scale down and store the images in this directory using this utility class. This will avoid
 * any rescaling when saving the contact increasing performance of the save operation.
 */
NONSHARABLE_CLASS(CContactImagesUtility) : public CActive
{
public:
    /**
     * Factory method to create a CContactImagesUtility object
     */
    IMPORT_C static CContactImagesUtility* NewL();
    
    /*
     * Desctuctor
     */
    IMPORT_C ~CContactImagesUtility();
    
    /**
     * Scales down the image, if need be, and store it in the contact images directory
     * 
     * @param aObserver Observer to the events of image processing
     *        
     * @param aSrcPath A valid path to the source image.
     * 
     * @pre aObserver should not be NULL
     */
    IMPORT_C void ScaleAndStoreImage(MContactImageUtilityObserver* aObserver, const TDesC& aSrcPath);
    
    /**
     * Ensures that the image is deleted from the filesystem, if it is owned by 
     * contacts (is in the contacts images directory).
     * 
     * @param aImagePath File path to the image file. 
     */
    IMPORT_C void EnsureImageRemoved(const TDesC& aImagePath);
    
private: // CActive
    void DoCancel();
    void RunL();
    TInt RunError(TInt aError);  
  
private:
    CContactImagesUtility();
    void ConstructL();
    
private:
    CImageRescaler* iRescaler;
    MContactImageUtilityObserver* iObserver;
};
#endif /* CNTIMAGESUTILITY_H_ */