aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCRange.h
blob: 582a840799fee5b074cfe94a53170ca7c2e48525 (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
#ifndef __MAILCORE_MCRANGE_H_

#define __MAILCORE_MCRANGE_H_

#ifdef __cplusplus

#include <inttypes.h>

#ifndef UINT64_MAX
# define UINT64_MAX 18446744073709551615ULL
#endif

namespace mailcore {
    
    class IndexSet;
    class String;
    
    // infinite length : UINT64_MAX
    // empty range : location = UINT64_MAX
    struct Range {
        uint64_t location;
        uint64_t length;
    };
    
    extern Range RangeEmpty;
    
    Range RangeMake(uint64_t location, uint64_t length);
    IndexSet * RangeRemoveRange(Range range1, Range range2);
    IndexSet * RangeUnion(Range range1, Range range2);
    Range RangeIntersection(Range range1, Range range2);
    bool RangeHasIntersection(Range range1, Range range2);
    uint64_t RangeLeftBound(Range range);
    uint64_t RangeRightBound(Range range);
    String * RangeToString(Range range);
    Range RangeFromString(String * rangeString);
}

#endif

#endif