Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #include "nsISupports.idl" |
michael@0 | 7 | |
michael@0 | 8 | /** |
michael@0 | 9 | * Version strings are dot-separated sequences of version-parts. |
michael@0 | 10 | * |
michael@0 | 11 | * A version-part consists of up to four parts, all of which are optional: |
michael@0 | 12 | * |
michael@0 | 13 | * <number-a><string-b><number-c><string-d (everything else)> |
michael@0 | 14 | * |
michael@0 | 15 | * A version-part may also consist of a single asterisk "*" which indicates |
michael@0 | 16 | * "infinity". |
michael@0 | 17 | * |
michael@0 | 18 | * Numbers are base-10, and are zero if left out. |
michael@0 | 19 | * Strings are compared bytewise. |
michael@0 | 20 | * |
michael@0 | 21 | * For additional backwards compatibility, if "string-b" is "+" then |
michael@0 | 22 | * "number-a" is incremented by 1 and "string-b" becomes "pre". |
michael@0 | 23 | * |
michael@0 | 24 | * 1.0pre1 |
michael@0 | 25 | * < 1.0pre2 |
michael@0 | 26 | * < 1.0 == 1.0.0 == 1.0.0.0 |
michael@0 | 27 | * < 1.1pre == 1.1pre0 == 1.0+ |
michael@0 | 28 | * < 1.1pre1a |
michael@0 | 29 | * < 1.1pre1 |
michael@0 | 30 | * < 1.1pre10a |
michael@0 | 31 | * < 1.1pre10 |
michael@0 | 32 | * |
michael@0 | 33 | * Although not required by this interface, it is recommended that |
michael@0 | 34 | * numbers remain within the limits of a signed char, i.e. -127 to 128. |
michael@0 | 35 | */ |
michael@0 | 36 | [scriptable, uuid(e6cd620a-edbb-41d2-9e42-9a2ffc8107f3)] |
michael@0 | 37 | interface nsIVersionComparator : nsISupports |
michael@0 | 38 | { |
michael@0 | 39 | /** |
michael@0 | 40 | * Compare two version strings |
michael@0 | 41 | * @param A The first version |
michael@0 | 42 | * @param B The second version |
michael@0 | 43 | * @returns < 0 if A < B |
michael@0 | 44 | * = 0 if A == B |
michael@0 | 45 | * > 0 if A > B |
michael@0 | 46 | */ |
michael@0 | 47 | long compare(in ACString A, in ACString B); |
michael@0 | 48 | }; |
michael@0 | 49 |