blob: f7fdf91aacf49fc5e618882343052dece16401af [file] [log] [blame]
Fairphone ODM6c3a4e22021-09-14 15:15:31 +08001/*
2 * Copyright (C) 2014-2021 Tuxera Inc.
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 ANDROID_VOLD_FILESYSTEMS_H
18#define ANDROID_VOLD_FILESYSTEMS_H
19
20#include <utils/Errors.h>
21
22#include <string>
23
24namespace android {
25namespace vold {
26
27typedef enum {
28 FSTYPE_UNRECOGNIZED,
29 FSTYPE_FAT,
30 FSTYPE_EXFAT,
31 FSTYPE_NTFS,
32 FSTYPE_HFSPLUS,
33 FSTYPE_APFS,
34} FSType;
35
36namespace filesystems {
37
38int Detect(const std::string& source, FSType *outFsType);
39
40bool IsSupported(FSType fsType);
41
42status_t Check(FSType fsType, const std::string& source);
43status_t Mount(FSType fsType, const std::string& source, const std::string& target, bool ro,
44 bool remount, bool executable, int ownerUid, int ownerGid, int permMask,
45 bool createLost);
46status_t Format(FSType fsType, const std::string& source, unsigned long numSectors);
47
48const char* FsName(FSType fsType);
49
50} // namespace filesystems
51} // namespace vold
52} // namespace android
53
54#endif