This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
VBXVersion.m
92 lines (66 loc) · 2.4 KB
/
VBXVersion.m
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
86
87
88
89
90
91
92
/**
* "The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
* License for the specific language governing rights and limitations
* under the License.
* The Original Code is OpenVBX, released February 18, 2011.
* The Initial Developer of the Original Code is Twilio Inc.
* Portions created by Twilio Inc. are Copyright (C) 2010.
* All Rights Reserved.
* Contributor(s):
**/
#import "VBXVersion.h"
@implementation VBXVersion
@synthesize patchlevel = _patchlevel;
@synthesize major = _major;
@synthesize minor = _minor;
- (VBXVersion *)initWith:(int) major minor:(int) minor patchlevel:(int) patchlevel {
if (self = [super init]) {
self.major = major;
self.minor = minor;
self.patchlevel = patchlevel;
}
return self;
}
+ (VBXVersion *)fromString:(NSString *)versionString {
const char *vstr, *vend;
int i = 0, versions[3] = {0, 0, 0};
if(![versionString length]) {
[NSException raise:NSGenericException format:@"Expected versionString more than zero characters long ???"];
}
vstr = [versionString cStringUsingEncoding:NSASCIIStringEncoding];
/* strtol converts up until the first non-numeric character, which is pointed to by vend.
we use this to walk along the version string. */
do {
versions[i++] = strtol(vstr, &vend, 10);
if( !*vend )
break;
vstr = vend + 1;
} while( i < (sizeof(versions) / sizeof(int)) );
if( !i )
[NSException raise:NSGenericException format:@"No numeric values in versionString"];
return [[VBXVersion alloc] initWith:versions[0] minor:versions[1] patchlevel:versions[2]];
}
- (VBXVersionComparison)compareVersion:(NSString *)comparedVersionString {
VBXVersion *compareTo = [[VBXVersion fromString:comparedVersionString] autorelease];
VBXVersionComparison ret = 0;
int comparison;
#define COMPARE(prop, uprop)\
if( (comparison = (self.prop - compareTo.prop)) ) {\
if( comparison > 0 )\
ret |= uprop##_GREATER;\
else\
ret |= uprop##_LESSER;\
} else\
ret |= uprop##_EQUAL;
COMPARE(major, MAJOR);
COMPARE(minor, MINOR);
COMPARE(patchlevel, PATCHLEVEL);
#undef COMPARE
return ret;
}
@end