Add SDcard password confirm popup
[platform/core/security/ode.git] / server / ext4-tool.h
1 /*
2  *  Copyright (c) 2016 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 #ifndef __EXT4_TOOL_H__
18 #define __EXT4_TOOL_H__
19
20 #include <string>
21 #include <vector>
22
23 namespace ode {
24
25 class Ext4Tool final {
26 public:
27         Ext4Tool(const std::string &src);
28         Ext4Tool(const Ext4Tool &) = delete;
29         Ext4Tool(Ext4Tool &&) = delete;
30         ~Ext4Tool();
31
32         Ext4Tool &operator=(const Ext4Tool &) = delete;
33         Ext4Tool &operator=(Ext4Tool &&) = delete;
34
35         typedef std::vector<unsigned char> data;
36
37         unsigned int getBlockSize();
38         unsigned int getTotalBlockCount();
39         bool isUsedBlock(unsigned int blockIndex);
40
41         void forceCleanUp();
42
43 private:
44         std::string source;
45         unsigned int blockSize, totalBlockCount;
46         data bitmap;
47 };
48
49 } // namespace ode
50
51 #endif // __EXT4_TOOL_H__