summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/path_parser.h
blob: 184f59d553eaf19444410d889bd8e8b2e41cc7c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <string>
#include <vector>
#include "core/file_sys/filesystem.h"

namespace FileSys {

/**
 * A helper class parsing and verifying a string-type Path.
 * Every archives with a sub file system should use this class to parse the path argument and check
 * the status of the file / directory in question on the host file system.
 */
class PathParser {
public:
    explicit PathParser(const Path& path);

    /**
     * Checks if the Path is valid.
     * This function should be called once a PathParser is constructed.
     * A Path is valid if:
     *  - it is a string path (with type LowPathType::Char or LowPathType::Wchar),
     *  - it starts with "/" (this seems a hard requirement in real 3DS),
     *  - it doesn't contain invalid characters, and
     *  - it doesn't go out of the root directory using "..".
     */
    bool IsValid() const {
        return is_valid;
    }

    /// Checks if the Path represents the root directory.
    bool IsRootDirectory() const {
        return is_root;
    }

    enum HostStatus {
        InvalidMountPoint,
        PathNotFound,   // "/a/b/c" when "a" doesn't exist
        FileInPath,     // "/a/b/c" when "a" is a file
        FileFound,      // "/a/b/c" when "c" is a file
        DirectoryFound, // "/a/b/c" when "c" is a directory
        NotFound        // "/a/b/c" when "a/b/" exists but "c" doesn't exist
    };

    /// Checks the status of the specified file / directory by the Path on the host file system.
    HostStatus GetHostStatus(const std::string& mount_point) const;

    /// Builds a full path on the host file system.
    std::string BuildHostPath(const std::string& mount_point) const;

private:
    std::vector<std::string> path_sequence;
    bool is_valid{};
    bool is_root{};
};

} // namespace FileSys