Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Messaging / AttachmentFactory.h
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License. 
15 */
16
17
18 /**
19  * @file       AttachmentFactory.h
20  * @author     Lukasz Marek (l.marek@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24 #ifndef ATTACHMENTFACTORY_H
25 #define ATTACHMENTFACTORY_H
26
27 #include <string>
28 #include <JavaScriptCore/JavaScript.h>
29
30 #include "IAttachment.h"
31
32 namespace TizenApis {
33 namespace Api {
34 namespace Messaging {
35
36 //--------------------------------------------------------------------------
37
38 class AttachmentFactory
39 {
40   public:
41
42     /**
43      * Generate attachment object
44      * @param[in] fullPath path to file
45      * @param[in] isVirtualPath false when path is real file system path, true when it's path on file system exposed to user
46      */
47     static IAttachmentPtr createAttachment(const std::string& fullPath,
48             bool isVirtualPath);
49
50     static IAttachmentPtr createAttachment(const std::string& path,
51             const std::string& mimeType = "");
52         
53     static std::string getRealPathFromVirtualPath(JSContextRef context, 
54                 const std::string& path);
55
56     static std::string getVirtualPathFromRealPath(JSContextRef context, 
57                 const std::string& realpath);
58
59 private:        
60     static const char m_pathSeparator;
61
62 };
63
64 }
65 }
66 }
67 #endif