Add privilege check code.
[platform/framework/native/appfw.git] / inc / FBaseUtilFileZipper.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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  * @file                FBaseUtilFileZipper.h
19  * @brief               This is the header file for the %FileZipper class.
20  *
21  * This header file contains the declarations of the %FileZipper class.
22  */
23
24 #ifndef _FBASE_UTIL_FILE_ZIPPER_H_
25 #define _FBASE_UTIL_FILE_ZIPPER_H_
26
27 #include <FBaseUtilTypes.h>
28 #include <FBaseString.h>
29
30
31 namespace Tizen { namespace Base { namespace Utility
32 {
33 /**
34  * @class       FileZipper
35  * @brief       This class provides methods that compress data to a zip-archive using zlib.
36  *
37  * @since 2.0
38  *
39  * The %FileZipper class provides a zip operation for a simple and efficient file-based access to a zip-archive.
40  * It is possible to create a zip file, and add the file to an already existing zip-archive.
41  *
42  * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/base/utility_namespace.htm">Utility</a>.
43  *
44  * The following example demonstrates how to use the %FileZipper class.
45  *
46  * @code
47  *      #include <FBase.h>
48  *
49  *      using namespace Tizen::App;
50  *      using namespace Tizen::Base;
51  *      using namespace Tizen::Base::Utility;
52  *
53  *      void
54  *      MyClass::FileZipperSample(void)
55  *      {
56  *              FileZipper zip;
57  *              String dataPath = App::GetInstance()->GetAppDataPath();
58  *              zip.Construct(dataPath + L"sample.zip");
59  *
60  *              // Adds files to the zip file-archive
61  *              zip.AddToZip(dataPath + L"data1.txt");
62  *              zip.AddToZip(dataPath + L"dataDir/data2.txt");
63  *      }
64  * @endcode
65  */
66 class _OSP_EXPORT_ FileZipper
67         : public Tizen::Base::Object
68 {
69 public:
70         /**
71          * The object is not fully constructed after this constructor is called. @n
72          * For full construction, the Construct() method must be called right after calling this constructor.
73          *
74          * @since 2.0
75          */
76         FileZipper(void);
77
78         /**
79          * This destructor overrides Tizen::Base::Object::~Object().
80          *
81          * @since 2.0
82          */
83         virtual ~FileZipper(void);
84
85         /**
86          * Initializes this instance of %FileZipper with the specified filepath. @n
87          * This method opens an existing zip file in append mode. If the file does not exist, it creates and opens the file in
88          * append mode.
89          *
90          * @if OSPCOMPAT
91          * @brief <i> [Compatibility] </i>
92          * @endif
93          * @since 2.0
94          * @if OSPCOMPAT
95          * @compatibility       This method has compatibility issues with OSP compatible applications. @n
96          *                                      For more information, see @ref CompIoPathPage "here".
97          * @endif
98          *
99          * @return                      An error code
100          * @param [in]          filePath                The path of the zip file to open or create
101          * @exception           E_SUCCESS               The method is successful.
102          * @exception           E_INVALID_ARG           Either of the following conditions has occurred: @n
103          *                                                                              - The length of the specified path is @c 0 or exceeds system limitations. @n
104          *                                                                              - The specified path contains prohibited character(s). @n
105          *                                                                              - The specified path is invalid.
106          * @exception           E_ILLEGAL_ACCESS        The specified path is not permitted, or
107          *                                                                              access is denied due to insufficient permission.
108          * @exception           E_IO                    An unexpected device failure has occurred.
109          * @remarks                     The paths for @b Tizen::App::AppManager::GetAppSharedPath(appId) + L"data" and @b Tizen::App::AppManager::GetAppSharedPath(appId) + L"trusted" are not supported.
110          * @see                         Tizen::Io::File
111          */
112         result Construct(const String& filePath);
113
114         /**
115          * Adds a new file to an already opened zip file.
116          *
117          * @if OSPCOMPAT
118          * @brief <i> [Compatibility] </i>
119          * @endif
120          * @since 2.0
121          * @if OSPCOMPAT
122          * @compatibility       This method has compatibility issues with OSP compatible applications. @n
123          *                                      For more information, see @ref CompIoPathPage "here".
124          * @endif
125          *
126          * @return                      An error code
127          * @param [in]          filePath        The path of the file to add to the zip file
128          * @param [in]          excludePath     Set to @c true to exclude the path and to store only the file name, @n
129          *                                                               else @c false to insert the entire path name in the zip-archive
130          * @param [in]          level           Set to @c BEST_SPEED or @c BEST_COMPRESSION @n
131          *                                                              By default, it is set to @c DEFAULT_COMPRESSION.
132          * @exception           E_SUCCESS                       The method is successful.
133          * @exception           E_INVALID_ARG           Either of the following conditions has occurred: @n
134          *                                                                              - The length of the specified path is @c 0 or exceeds system limitations. @n
135          *                                                                              - The specified path contains prohibited character(s). @n
136          *                                                                              - The specified path is invalid.
137          * @exception           E_ILLEGAL_ACCESS        The specified path is not permitted, or
138          *                                                                              access is denied due to insufficient permission.
139          * @exception           E_FILE_NOT_FOUND        The specified file cannot be found.
140          * @exception           E_FILE_ALREADY_EXIST    The specified file already exists in the zip-archive, but the
141          *                                                                                      flag for overwriting the file is not set.
142          * @exception           E_IO                    An unexpected device failure has occurred.
143          * @remarks                     The paths for @b Tizen::App::AppManager::GetAppSharedPath(appId) + L"data" and @b Tizen::App::AppManager::GetAppSharedPath(appId) + L"trusted" are not supported.
144          * @remarks                     If the value of @c excludePath is set to @c false, full path name is inserted to the zip-
145          *                                      archive. Therefore, developers should handle the path name carefully. @n
146          *                                      For example, if you add @b '/Test/data.txt' file to the zip-archive, and if the
147          *                                      @c excludePath parameter is set to @c false, while unzipping the file in @b '/Test'
148          *                                      directory, then the file is extracted in @b '/Test/Test/data.txt'.
149          * @see                         Tizen::Io::File
150          */
151         result AddToZip(const String& filePath, bool excludePath = true, CompressionLevel level = DEFAULT_COMPRESSION);
152
153         /**
154          * Gets the value of the overwritten flag. @n
155          * If @c true, it overwrites the existing file.
156          *
157          * @since 2.0
158          *
159          * @return                      The value of the overwrite flag for the zip file
160          */
161         bool GetOverwriteFlag(void) const;
162
163         /**
164          * Sets the value of the overwritten flag. @n
165          * If @c true, the existing file gets overwritten during file addition.
166          * The default value of this flag is @c false.
167          *
168          * @since 2.0
169          *
170          * @param [in]          flag    The flag value to set
171          */
172         void SetOverwriteFlag(bool flag);
173
174
175 private:
176         /**
177          * The implementation of this copy constructor is intentionally blank and declared as private to prohibit copying of objects.
178          *
179          * @param [in]          fileZipper              The instance of the FileZip class to copy from
180          * @remarks                     This constructor is hidden.
181          */
182         FileZipper(const FileZipper& fileZipper);
183
184         /**
185          * The implementation of this copy assignment operator is intentionally blank and declared as private to prohibit copying of objects.
186          *
187          * @param [in]          fileZipper              An instance of %FileZipper
188          * @remarks                     This operator is hidden.
189          */
190         FileZipper& operator =(const FileZipper& fileZipper);
191
192
193         friend class _FileZipperImpl;
194         class _FileZipperImpl* __pFileZipperImpl;
195
196 }; // FileZipper
197
198 }}} // Tizen::Base::FileZipper
199
200 #endif // _FBASE_UTIL_FILE_ZIPPER_H_