aboutsummaryrefslogtreecommitdiff
path: root/qdeduper/sigdb_qt.hpp
blob: 1672915f47798a72fef4d4c6a2888b2a92f65863 (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
#ifndef SIGDB_QT_HPP
#define SIGDB_QT_HPP

#include <filesystem>
#include <map>
#include <unordered_map>
#include <utility>
#include <vector>

#include <QObject>

#include "signature_db.hpp"

namespace fs = std::filesystem;

class SignatureDB : public QObject
{
    Q_OBJECT
private:
    signature_db *sdb;
    std::unordered_map<size_t, fs::path> fmap;
    std::unordered_map<fs::path, size_t> frmap;
    std::map<std::pair<size_t, size_t>, double> distmap;
    std::vector<std::vector<size_t>> groups;

    void create_priv_struct();
public:
    SignatureDB();
    SignatureDB(const fs::path &dbpath);
    ~SignatureDB();

    bool valid();
    bool is_dirty();

    void scan_files(const std::vector<fs::path> &files, int njobs);
    void interrupt_scan();

    std::vector<std::pair<size_t, double>> search_file(const fs::path &files);

    size_t num_groups();
    std::vector<size_t> get_group(size_t gid);
    std::map<std::pair<size_t, size_t>, double> group_distances(size_t gid);

    std::vector<size_t> get_image_ids();
    fs::path get_image_path(size_t id);
    size_t get_path_id(const fs::path &p);

    bool load(const fs::path &p);
    bool save(const fs::path &p);
Q_SIGNALS:
    void image_scanned(size_t n);
};

#endif