blob: 7133ca3f53244e28f509b34127de64b3d3eb83e6 (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Versions
*
* Authors:
* MenTaLguY <mental@rydia.net>
* Jon A. Cruz <jon@joncruz.org>
* Kris De Gussem <Kris.DeGussem@gmail.com>
*
* Copyright (C) 2003 MenTaLguY
* Copyright (C) 2012 Kris De Gussem
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <glib.h>
#include <sstream>
#include "version.h"
bool sp_version_from_string(const char *string, Inkscape::Version *version)
{
if (!string) {
return false;
}
try
{
std::stringstream ss;
// Throw exception if error.
ss.exceptions(std::ios::failbit | std::ios::badbit);
ss << string;
ss >> version->_major;
char tmp=0;
ss >> tmp;
ss >>version->_minor;
// Don't throw exception if failbit gets set (empty string OK).
ss.exceptions(std::ios::goodbit);
getline(ss, version->_tail);
return true;
}
catch(...)
{
version->_major = 0;
version->_minor = 0;
version->_tail.clear();
return false;
}
}
char *sp_version_to_string(Inkscape::Version version)
{
return g_strdup_printf("%u.%u%s", version._major, version._minor, version._tail.c_str());
}
bool sp_version_inside_range(Inkscape::Version version,
unsigned major_min, unsigned minor_min,
unsigned major_max, unsigned minor_max)
{
if ( version._major < major_min || version._major > major_max ) {
return false;
} else if ( version._major == major_min &&
version._minor <= minor_min )
{
return false;
} else if ( version._major == major_max &&
version._minor >= minor_max )
{
return false;
} else {
return true;
}
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
|