aboutsummaryrefslogtreecommitdiff
path: root/bpkg/package
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-10-05 08:59:34 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-10-05 08:59:34 +0200
commit87717357b019bc3043d8f2449481c17e8d9b1f4f (patch)
tree5e43931c8900f32cd004fc67397e26a90308f816 /bpkg/package
parent2b8f1d518e5c20b76cc9d12baa7e3529df8c9993 (diff)
Update to work with new version interface
Diffstat (limited to 'bpkg/package')
-rw-r--r--bpkg/package65
1 files changed, 29 insertions, 36 deletions
diff --git a/bpkg/package b/bpkg/package
index 67a80a8..26619b1 100644
--- a/bpkg/package
+++ b/bpkg/package
@@ -97,8 +97,8 @@ namespace bpkg
#pragma db value transient
struct upstream_version: version
{
- #pragma db member(upstream) virtual(string) \
- get(this.upstream ()) \
+ #pragma db member(upstream_) virtual(string) \
+ get(this.upstream) \
set(this = bpkg::version (0, std::move (?), 0))
upstream_version () = default;
@@ -109,16 +109,16 @@ namespace bpkg
void
init (const canonical_version& cv, const upstream_version& uv)
{
- *this = version (cv.epoch, uv.upstream (), cv.revision);
- assert (cv.canonical_upstream == canonical_upstream ());
+ *this = version (cv.epoch, uv.upstream, cv.revision);
+ assert (cv.canonical_upstream == canonical_upstream);
}
};
#pragma db map type(version) as(_version) \
- to(bpkg::_version{(?).epoch (), \
- (?).canonical_upstream (), \
- (?).revision (), \
- (?).upstream ()}) \
+ to(bpkg::_version{(?).epoch, \
+ (?).canonical_upstream, \
+ (?).revision, \
+ (?).upstream}) \
from(bpkg::version ((?).epoch, std::move ((?).upstream), (?).revision))
@@ -398,45 +398,38 @@ namespace bpkg
// Version comparison operators.
//
- // They allow comparing a lhs object that has epoch, canonical_upstream,
- // and revision data members to the rhs version object. The idea is that
- // this works for both query members of types version and canonical_version
- // as well as for comparing canonical_version to version.
+ // They allow comparing objects that have epoch, canonical_upstream,
+ // and revision data members. The idea is that this works for both
+ // query members of types version and canonical_version as well as
+ // for comparing canonical_version to version.
//
- // @@ Still not sure if this is conceptually the right way to do
- // it (should we document it as an advanced technique?).
- //
- template <typename T>
+ template <typename T1, typename T2>
inline auto
- operator== (const T& x, const version& y) -> decltype (x.epoch == 0)
+ operator== (const T1& x, const T2& y) -> decltype (x.epoch == y.epoch)
{
- return x.epoch == y.epoch () &&
- x.canonical_upstream == y.canonical_upstream () &&
- x.revision == y.revision ();
+ return x.epoch == y.epoch &&
+ x.canonical_upstream == y.canonical_upstream &&
+ x.revision == y.revision;
}
- template <typename T>
+ template <typename T1, typename T2>
inline auto
- operator< (const T& x, const version& y) -> decltype (x.epoch < 0)
+ operator< (const T1& x, const T2& y) -> decltype (x.epoch < y.epoch)
{
- return x.epoch < y.epoch () ||
- (x.epoch == y.epoch () &&
- x.canonical_upstream < y.canonical_upstream ()) ||
- (x.epoch == y.epoch () &&
- x.canonical_upstream == y.canonical_upstream () &&
- x.revision < y.revision ());
+ return x.epoch < y.epoch ||
+ (x.epoch == y.epoch && x.canonical_upstream < y.canonical_upstream) ||
+ (x.epoch == y.epoch && x.canonical_upstream == y.canonical_upstream &&
+ x.revision < y.revision);
}
- template <typename T>
+ template <typename T1, typename T2>
inline auto
- operator> (const T& x, const version& y) -> decltype (x.epoch > 0)
+ operator> (const T1& x, const T2& y) -> decltype (x.epoch > y.epoch)
{
- return x.epoch > y.epoch () ||
- (x.epoch == y.epoch () &&
- x.canonical_upstream > y.canonical_upstream ()) ||
- (x.epoch == y.epoch () &&
- x.canonical_upstream == y.canonical_upstream () &&
- x.revision > y.revision ());
+ return x.epoch > y.epoch ||
+ (x.epoch == y.epoch && x.canonical_upstream > y.canonical_upstream) ||
+ (x.epoch == y.epoch && x.canonical_upstream == y.canonical_upstream &&
+ x.revision > y.revision);
}
template <typename T>