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 185 186 187 188 189 190 191 192 193 194 195 196 197
|
;+
; NAME:
; CONVERT_TO_TYPE
;
; PURPOSE:
;
; Converts its input argument to a specified data type.
;
; AUTHOR:
;
; FANNING SOFTWARE CONSULTING
; David Fanning, Ph.D.
; 1645 Sheely Drive
; Fort Collins, CO 80526 USA
; Phone: 970-221-0438
; E-mail: david@idlcoyote.com
; Coyote's Guide to IDL Programming: http://www.idlcoyote.com
;
; CATEGORY:
;
; Utilities
;
; CALLING SEQUENCE:
;
; result = Convert_To_Type(input, type)
;
; INPUT_PARAMETERS:
;
; input: The input data to be converted.
; type: The data type. Accepts values as given by Size(var, /TNAME) or Size(var, /TYPE).
; If converting to integer types, values are truncated (similar to FLOOR keyword below),
; unless keywords are set.
;
; OUTPUT_PARAMETERS:
;
; result: The input data is converted to specified data type.
;
; KEYWORDS:
;
; CEILING: If set and converting to an integer type, the CEIL function is applied before conversion.
;
; FLOOR: If set and converting to an integer type, the FLOOR function is applied before conversion.
;
; ROUND: If set and converting to an integer type, the ROUND function is applied before conversion.
;
;
; RESTRICTIONS:
;
; Data types STRUCT, POINTER, and OBJREF are not allowed.
;
; MODIFICATION HISTORY:
;
; Written by David W. Fanning, 19 February 2006.
; Typo had "UNIT" instead of "UINT". 23 February 2009. DWF.
; Added CEILING, FLOOR, and ROUND keywords. 1 April 2009. DWF.
; Modified so that the "type" variable is not changed by the program. 5 May 2009. DWF.
;-
;******************************************************************************************;
; Copyright (c) 2008-2009, by Fanning Software Consulting, Inc. ;
; All rights reserved. ;
; ;
; Redistribution and use in source and binary forms, with or without ;
; modification, are permitted provided that the following conditions are met: ;
; ;
; * Redistributions of source code must retain the above copyright ;
; notice, this list of conditions and the following disclaimer. ;
; * Redistributions in binary form must reproduce the above copyright ;
; notice, this list of conditions and the following disclaimer in the ;
; documentation and/or other materials provided with the distribution. ;
; * Neither the name of Fanning Software Consulting, Inc. nor the names of its ;
; contributors may be used to endorse or promote products derived from this ;
; software without specific prior written permission. ;
; ;
; THIS SOFTWARE IS PROVIDED BY FANNING SOFTWARE CONSULTING, INC. ''AS IS'' AND ANY ;
; EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ;
; OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT ;
; SHALL FANNING SOFTWARE CONSULTING, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, ;
; INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED ;
; TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; ;
; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ;
; ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ;
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ;
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;
;******************************************************************************************;
FUNCTION Convert_To_Type, input, theType, $
CEILING=ceiling, $
FLOOR=floor, $
ROUND=round
; Return to caller on error.
On_Error, 2
; Two positional parameters are required.
IF N_Params() NE 2 THEN Message, 'Two input parameters (INPUT and TYPE) are required.'
; If type is a string, turn it into a number.
IF Size(theType, /TNAME) EQ 'STRING' THEN BEGIN
type = StrUpCase(theType[0])
CASE type OF
'BYTE': type = 1
'INT': type = 2
'LONG': type = 3
'FLOAT': type = 4
'DOUBLE': type = 5
'COMPLEX': type = 6
'STRING': type = 7
'DCOMPLEX': type = 9
'UINT': type = 12
'ULONG': type = 13
'LONG64': type = 14
'ULONG64': type = 15
ELSE: Message, 'Unable to convert input to type: ' + StrUpCase(theType)
ENDCASE
ENDIF ELSE BEGIN
; Only certain kinds of data conversions can occur.
type = theType[0]
CASE 1 OF
(type LT 1): Message, 'Unable to convert input to UNDEFINED data type.'
(type EQ 8): Message, 'Unable to convert input to STRUCTURE data type.'
(type EQ 10): Message, 'Unable to convert input to POINTER data type.'
(type EQ 11): Message, 'Unable to convert input to OBJECT data type.'
(type GT 15): Message, 'Unable to convert undefined data type: ' + StrTrim(theType) + '.'
ELSE:
ENDCASE
ENDELSE
; Do the conversion.
CASE type OF
1: BEGIN
CASE 1 OF
Keyword_Set(ceiling): output = BYTE(CEIL(input))
Keyword_Set(round): output = BYTE(ROUND(input))
Keyword_Set(floor): output = BYTE(FLOOR(input))
ELSE: output = BYTE(input)
ENDCASE
END
2: BEGIN
CASE 1 OF
Keyword_Set(ceiling): output = FIX(CEIL(input))
Keyword_Set(round): output = FIX(ROUND(input))
Keyword_Set(floor): output = FIX(FLOOR(input))
ELSE: output = FIX(input)
ENDCASE
END
3: BEGIN
CASE 1 OF
Keyword_Set(ceiling): output = LONG(CEIL(input))
Keyword_Set(round): output = LONG(ROUND(input))
Keyword_Set(floor): output = LONG(FLOOR(input))
ELSE: output = LONG(input)
ENDCASE
END
4: output = FLOAT(input)
5: output = DOUBLE(input)
6: output = COMPLEX(input)
7: output = STRING(input)
9: output = DCOMPLEX(input)
12: BEGIN
CASE 1 OF
Keyword_Set(ceiling): output = UINT(CEIL(input))
Keyword_Set(round): output = UINT(ROUND(input))
Keyword_Set(floor): output = UINT(FLOOR(input))
ELSE: output = UINT(input)
ENDCASE
END
13: BEGIN
CASE 1 OF
Keyword_Set(ceiling): output = ULONG(CEIL(input))
Keyword_Set(round): output = ULONG(ROUND(input))
Keyword_Set(floor): output = ULONG(FLOOR(input))
ELSE: output = ULONG(input)
ENDCASE
END
14: BEGIN
CASE 1 OF
Keyword_Set(ceiling): output = LONG64(CEIL(input))
Keyword_Set(round): output = LONG64(ROUND(input))
Keyword_Set(floor): output = LONG64(FLOOR(input))
ELSE: output = LONG64(input)
ENDCASE
END
15: BEGIN
CASE 1 OF
Keyword_Set(ceiling): output = ULONG64(CEIL(input))
Keyword_Set(round): output = ULONG64(ROUND(input))
Keyword_Set(floor): output = ULONG64(FLOOR(input))
ELSE: output = ULONG64(input)
ENDCASE
END
ENDCASE
RETURN, output
END
|