summaryrefslogtreecommitdiffstats
path: root/xbmc/utils/EmbeddedArt.cpp
blob: 3af2259daaee179d3ab189786a2a091fc4bc6b8f (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
63
64
65
66
67
68
69
70
71
72
/*
 *  Copyright (C) 2005-2018 Team Kodi
 *  This file is part of Kodi - https://kodi.tv
 *
 *  SPDX-License-Identifier: GPL-2.0-or-later
 *  See LICENSES/README.md for more information.
 */

#include "EmbeddedArt.h"

#include "Archive.h"

EmbeddedArtInfo::EmbeddedArtInfo(size_t size,
                                 const std::string &mime, const std::string& type)
{
  Set(size, mime, type);
}

void EmbeddedArtInfo::Set(size_t size, const std::string &mime, const std::string& type)
{
  m_size = size;
  m_mime = mime;
  m_type = type;
}

void EmbeddedArtInfo::Clear()
{
  m_mime.clear();
  m_size = 0;
}

bool EmbeddedArtInfo::Empty() const
{
  return m_size == 0;
}

bool EmbeddedArtInfo::Matches(const EmbeddedArtInfo &right) const
{
  return (m_size == right.m_size &&
          m_mime == right.m_mime &&
          m_type == right.m_type);
}

void EmbeddedArtInfo::Archive(CArchive &ar)
{
  if (ar.IsStoring())
  {
    ar << m_size;
    ar << m_mime;
    ar << m_type;
  }
  else
  {
    ar >> m_size;
    ar >> m_mime;
    ar >> m_type;
  }
}

EmbeddedArt::EmbeddedArt(const uint8_t *data, size_t size,
                         const std::string &mime, const std::string& type)
{
  Set(data, size, mime, type);
}

void EmbeddedArt::Set(const uint8_t *data, size_t size,
                      const std::string &mime, const std::string& type)
{
  EmbeddedArtInfo::Set(size, mime, type);
  m_data.resize(size);
  m_data.assign(data, data+size);
}