update tizen source
[framework/messaging/msg-service.git] / plugin / mms_plugin / include / MmsPluginTransport.h
1 /*
2 *
3 * Copyright (c) 2000-2012 Samsung Electronics Co., Ltd. All Rights Reserved.
4 *
5 * This file is part of msg-service.
6 *
7 * Contact: Jaeyun Jeong <jyjeong@samsung.com>
8 *          Sangkoo Kim <sangkoo.kim@samsung.com>
9 *          Seunghwan Lee <sh.cat.lee@samsung.com>
10 *          SoonMin Jung <sm0415.jung@samsung.com>
11 *          Jae-Young Lee <jy4710.lee@samsung.com>
12 *          KeeBum Kim <keebum.kim@samsung.com>
13 *
14 * PROPRIETARY/CONFIDENTIAL
15 *
16 * This software is the confidential and proprietary information of
17 * SAMSUNG ELECTRONICS ("Confidential Information"). You shall not
18 * disclose such Confidential Information and shall use it only in
19 * accordance with the terms of the license agreement you entered
20 * into with SAMSUNG ELECTRONICS.
21 *
22 * SAMSUNG make no representations or warranties about the suitability
23 * of the software, either express or implied, including but not limited
24 * to the implied warranties of merchantability, fitness for a particular
25 * purpose, or non-infringement. SAMSUNG shall not be liable for any
26 * damages suffered by licensee as a result of using, modifying or
27 * distributing this software or its derivatives.
28 *
29 */
30
31 #ifndef MMS_PLUGIN_TRANSPORT_H
32 #define MMS_PLUGIN_TRANSPORT_H
33
34
35 /*==================================================================================================
36                                                         INCLUDE FILES
37 ==================================================================================================*/
38 #include <map>
39
40 #include "MsgTransportTypes.h"
41 #include "MmsPluginTypes.h"
42
43
44 /*==================================================================================================
45                                                         CLASS DEFINITIONS
46 ==================================================================================================*/
47 class MmsPluginTransport
48 {
49         public:
50                 static MmsPluginTransport *instance();
51
52                 void submitRequest(const MSG_REQUEST_INFO_S *pReqInfo);
53                 void cancelRequest(MSG_REQUEST_ID_T reqId);
54
55         private:
56                 MmsPluginTransport();
57                 ~MmsPluginTransport();
58
59                 void submitProcess(mmsTranQEntity req);
60                 MMS_NET_ERROR_T submitHandler(mmsTranQEntity *qEntity);
61                 bool processReceivedData(int msgId, char *pRcvdBody, int rcvdBodyLen, char *retrievedFilePath);
62
63                 static MmsPluginTransport *pInstance;
64 };
65
66 #endif //MMS_PLUGIN_TRANSPORT_H
67