summaryrefslogtreecommitdiffstats
path: root/src/sources/metadatasource.h
blob: 2ee4c65e0101a7d2cb1bf3c1d4a538625aaa10f7 (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
#pragma once

#include <QDateTime>
#include <QImage>

#include <utility>

#include "track/trackmetadata.h"
#include "util/memory.h"

namespace mixxx {

// API and abstract base class for parsing track metadata and
// cover art.
//
// The time stamp returned from the source when importing/exporting
// metadata reflects the current version of the metadata at the source
// and can be used for synchronization purposes.
class MetadataSource {
  public:
    virtual ~MetadataSource() = default;

    enum class ImportResult {
        Succeeded,
        Failed,
        Unavailable,
    };

    // Read both track metadata and cover art at once, because this
    // is the most common use case. Both pointers are output parameters
    // and might be passed a nullptr if their result is not needed.
    // If no metadata is available for a track then the source should
    // return Unavailable as this default implementation does.
    virtual std::pair<ImportResult, QDateTime> importTrackMetadataAndCoverImage(
            TrackMetadata* /*pTrackMetadata*/,
            QImage* /*pCoverImage*/) const {
        return std::make_pair(ImportResult::Unavailable, QDateTime());
    }

    enum class ExportResult {
        Succeeded,
        Failed,
        Unsupported,
    };

    // Update track metadata of the source.
    // Sources that are read-only and don't support updating of metadata
    // should return Unsupported as this default implementation does.
    virtual std::pair<ExportResult, QDateTime> exportTrackMetadata(
            const TrackMetadata& /*trackMetadata*/) const {
        return std::make_pair(ExportResult::Unsupported, QDateTime());
    }
};

typedef std::shared_ptr<MetadataSource> MetadataSourcePointer;

} // namespace mixxx