summaryrefslogtreecommitdiffstats
path: root/xbmc/addons/AddonVersion.h
blob: 78537a551a947e57826a23f89639dc06aec466a2 (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
/*
 *  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.
 */

#pragma once

#include <string>

namespace ADDON
{
/* \brief Addon versioning using the debian versioning scheme

    CAddonVersion uses debian versioning, which means in the each section of the period
    separated version string, numbers are compared numerically rather than lexicographically,
    thus any preceding zeros are ignored.

    i.e. 1.00 is considered the same as 1.0, and 1.01 is considered the same as 1.1.

    Further, 1.0 < 1.0.0

    See here for more info: http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version
    */
class CAddonVersion
{
public:
  explicit CAddonVersion(const char* version = nullptr);
  explicit CAddonVersion(const std::string& version);

  CAddonVersion(const CAddonVersion& other) = default;
  CAddonVersion(CAddonVersion&& other) = default;
  CAddonVersion& operator=(const CAddonVersion& other) = default;
  CAddonVersion& operator=(CAddonVersion&& other) = default;

  virtual ~CAddonVersion() = default;

  int Epoch() const { return mEpoch; }
  const std::string& Upstream() const { return mUpstream; }
  const std::string& Revision() const { return mRevision; }

  bool operator<(const CAddonVersion& other) const;
  bool operator>(const CAddonVersion& other) const;
  bool operator<=(const CAddonVersion& other) const;
  bool operator>=(const CAddonVersion& other) const;
  bool operator==(const CAddonVersion& other) const;
  bool operator!=(const CAddonVersion& other) const;
  std::string asString() const;
  bool empty() const;

  static bool SplitFileName(std::string& ID, std::string& version, const std::string& filename);

protected:
  int mEpoch;
  std::string mUpstream;
  std::string mRevision;

  static int CompareComponent(const char* a, const char* b);
};
} // namespace ADDON