aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform/helpers/HashUtils.h
blob: 91146a525f2e38c9e71c316ad285cd3356896b23 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#pragma once

#include <QString>

#include "modplatform/ModIndex.h"
#include "tasks/Task.h"

namespace Hashing {

class Hasher : public Task {
   public:
    using Ptr = shared_qobject_ptr<Hasher>;

    Hasher(QString file_path) : m_path(std::move(file_path)) {}

    /* We can't really abort this task, but we can say we aborted and finish our thing quickly :) */
    bool abort() override { return true; }

    void executeTask() override = 0;

    QString getResult() const { return m_hash; };
    QString getPath() const { return m_path; };

   protected:
    QString m_hash;
    QString m_path;
};

class FlameHasher : public Hasher {
   public:
    FlameHasher(QString file_path) : Hasher(file_path) { setObjectName(QString("FlameHasher: %1").arg(file_path)); }

    void executeTask() override;
};

class ModrinthHasher : public Hasher {
   public:
    ModrinthHasher(QString file_path) : Hasher(file_path) { setObjectName(QString("ModrinthHasher: %1").arg(file_path)); }

    void executeTask() override;
};

class BlockedModHasher : public Hasher {
   public:
    BlockedModHasher(QString file_path, ModPlatform::ResourceProvider provider);

    void executeTask() override;

    QStringList getHashTypes();
    bool useHashType(QString type);
   private:
    ModPlatform::ResourceProvider provider;
    QString hash_type;
};

Hasher::Ptr createHasher(QString file_path, ModPlatform::ResourceProvider provider);
Hasher::Ptr createFlameHasher(QString file_path);
Hasher::Ptr createModrinthHasher(QString file_path);
Hasher::Ptr createBlockedModHasher(QString file_path, ModPlatform::ResourceProvider provider);
Hasher::Ptr createBlockedModHasher(QString file_path, ModPlatform::ResourceProvider provider, QString type);

}  // namespace Hashing