aboutsummaryrefslogtreecommitdiff
path: root/include/Path.hpp
blob: 95a5d23a93f80d29ac33dc980dc02d3fd3969e70 (plain)
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
#pragma once

#include <string>

namespace QuickMedia {
    class Path {
    public:
        Path() = default;
        ~Path() = default;
        Path(const Path &other) = default;
        Path& operator=(const Path &other) = default;
        Path(const char *path) : data(path) {}
        Path(const std::string &path) : data(path) {}
        Path(Path &&other) {
            data = std::move(other.data);
        }

        Path& join(const Path &other) {
            data += "/";
            data += other.data;
            return *this;
        }

        Path& append(const std::string &str) {
            data += str;
            return *this;
        }

        const char* filename() const {
            size_t index = data.rfind('/');
            if(index == std::string::npos)
                return "/";
            return data.c_str() + index + 1;
        }

        // Returns empty string if no extension
        const char* ext() const {
            size_t slash_index = data.rfind('/');
            size_t index = data.rfind('.');
            if(index != std::string::npos && (slash_index == std::string::npos || index > slash_index))
                return data.c_str() + index;
            return "";
        }

        std::string data;
    };
}