Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

# Copyright (C) 2015 Chintalagiri Shashank 

# 

# This file is part of Tendril. 

# 

# This program is free software: you can redistribute it and/or modify 

# it under the terms of the GNU Affero General Public License as published by 

# the Free Software Foundation, either version 3 of the License, or 

# (at your option) any later version. 

# 

# This program is distributed in the hope that it will be useful, 

# but WITHOUT ANY WARRANTY; without even the implied warranty of 

# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 

# GNU Affero General Public License for more details. 

# 

# You should have received a copy of the GNU Affero General Public License 

# along with this program.  If not, see <http://www.gnu.org/licenses/>. 

""" 

This file is part of tendril 

See the COPYING, README, and INSTALL files for more information 

""" 

 

from decimal import Decimal 

import numbers 

import re 

 

from tendril.utils import log 

logger = log.get_logger(__name__, log.DEFAULT) 

 

 

lrex = re.compile(r'^((?P<m>[-+]?\d*\.*\d+) *(m|mtr) *$)|((?P<um>[-+]?\d*\.*\d+) *um *$)|((?P<cm>[-+]?\d*\.*\d+) *cm *$)|((?P<mm>[-+]?\d*\.*\d+) *mm *$)|((?P<mil>[-+]?\d*\.*\d+) *mil *$)|((?P<cmil>[-+]?\d*\.*\d+) *cmil *$)|((?P<in>[-+]?\d*\.*\d+) *(in|inch) *$)',  # noqa 

                  re.IGNORECASE) 

 

 

class Length(object): 

    def __init__(self, lstr=None, length=None, defunit='mm'): 

        self._lstr = None 

        self._olength = None 

        self._ounit = None 

        if lstr is not None: 

            try: 

                float(lstr) 

                lstr += defunit 

            except ValueError: 

                pass 

            self._lstr = lstr 

        elif length is not None and defunit is not None: 

            self._lstr = str(length) + defunit 

        self._parse_length() 

 

    def _parse_length(self): 

        match = lrex.match(self._lstr) 

        if match is None: 

            logger.warning("Length not parsed : " + self._lstr) 

            self._olength = 0 

            self._ounit = 'mm' 

            raise ValueError(self._lstr) 

 

        mm = match.group('um') 

        if mm is not None: 

            self._olength = Decimal(mm) 

            self._ounit = 'um' 

            return 

 

        mm = match.group('mm') 

        if mm is not None: 

            self._olength = Decimal(mm) 

            self._ounit = 'mm' 

            return 

 

        cm = match.group('cm') 

        if cm is not None: 

            self._olength = Decimal(cm) 

            self._ounit = 'cm' 

 

        m = match.group('m') 

        if m is not None: 

            self._olength = Decimal(m) 

            self._ounit = 'm' 

 

        inch = match.group('in') 

        if inch is not None: 

            self._olength = Decimal(inch) 

            self._ounit = 'in' 

 

        mil = match.group('mil') 

        if mil is not None: 

            self._olength = Decimal(mil) 

            self._ounit = 'mil' 

 

        cmil = match.group('cmil') 

        if cmil is not None: 

            self._olength = Decimal(cmil) 

            self._ounit = 'cmil' 

 

    def __repr__(self): 

        if self.__float__() < 10: 

            return str(round(self.__float__(), 2)) + "mm" 

        elif self.__float__() < 1000: 

            return str(round(self.__float__() / 10, 2)) + "cm" 

        else: 

            return str(round(self.__float__() / 1000, 2)) + "m" 

 

    def __float__(self): 

        return float(self._length) 

 

    @property 

    def decimal(self): 

        return self._length 

 

    @property 

    def _length(self): 

        if self._ounit == 'um': 

            return self._olength / 1000 

        elif self._ounit == 'mm': 

            return self._olength 

        elif self._ounit == 'cm': 

            return self._olength * 10 

        elif self._ounit == 'm': 

            return self._olength * 1000 

        elif self._ounit == 'in': 

            return self._olength * Decimal(25.4) 

        elif self._ounit == 'mil': 

            return self._olength * Decimal(25.4) / 1000 

        elif self._ounit == 'cmil': 

            return self._olength * Decimal(25.4) / 100000 

 

    @property 

    def lstr(self): 

        return self._lstr 

 

    def __add__(self, other): 

        if isinstance(other, numbers.Number) and other == 0: 

            return Length(length=self._length) 

        else: 

            return Length(length=self._length + other.decimal) 

 

    def __radd__(self, other): 

        if other == 0: 

            return self 

        else: 

            return self.__add__(other) 

 

    def __mul__(self, other): 

        if isinstance(other, numbers.Number): 

            return Length(length=self._length * other) 

        else: 

            raise TypeError 

 

    def __div__(self, other): 

        if isinstance(other, numbers.Number): 

            return Length(length=self._length / other) 

        elif isinstance(other, Length): 

            return self._length / other.decimal 

        else: 

            raise TypeError 

 

    def __rmul__(self, other): 

        return self.__mul__(other) 

 

    def __sub__(self, other): 

        if other == 0: 

            return self 

        else: 

            return self.__add__(other.__mul__(-1)) 

 

    def __cmp__(self, other): 

        if isinstance(other, numbers.Number): 

            if other == 0: 

                cval = 0 

            else: 

                raise NotImplementedError( 

                    "Can't Compare :: " + str(self) + ' ' + str(other) 

                ) 

        elif isinstance(other, Length): 

            cval = other.decimal 

        else: 

            raise NotImplementedError 

 

        if self._length == cval: 

            return 0 

        elif self._length < cval: 

            return -1 

        else: 

            return 1