-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstringlib.f
More file actions
237 lines (199 loc) · 7.26 KB
/
Copy pathstringlib.f
File metadata and controls
237 lines (199 loc) · 7.26 KB
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
******************************* STRINGLIB.FOR **********************************
C+______________________________________________________________________________
!
!Facility: STRINGLIB
!Version: 2.1
!
!Purpose: A Library of string manipulation routines. See entry points for
! details.
!
!Entry points:
!
! last_char(string)
! strip(cmd,p1)
! rd_logical(cmd,l)
! rd_int(cmd,i)
! rd_real(cmd,x)
! rd_hex(cmd,i)
!
!Author: David Potterveld - May 1985
!
!Modification History:
!
! Jan-13-1990 (DHP) Added routine RD_HEX.
! Mar-24-1992 (DHP) Conversion for UNIX F77 compatibility. STRIP, and RD_xxxx
! routines are now LOGICAL*4 functions. VAX RTL routines replaced.
! Mar-25-1992 (DHP) Added routine RD_LOGICAL.
! Aug-24-1993 (DHP) Fixed bug in STRIP.
C-______________________________________________________________________________
!###############################################################################
integer*4 function last_char(string)
C+______________________________________________________________________________
!
! LAST_CHAR - Return the position of the last character in the string which
! is neither a space or a tab. Returns zero for null or empty strings.
C-______________________________________________________________________________
implicit none
integer*4 i
character*(*) string
character*1 sp/' '/
character*1 tab/' '/
save
C ============================= Executable Code ================================
last_char = 0
do i = 1,len(string)
if (string(i:i).ne.sp.and.string(i:i).ne.tab) last_char = i
enddo
return
end
!###############################################################################
logical*4 function strip(cmd,p1)
C+______________________________________________________________________________
!
! STRIP - strip space and tab separated substrings out of a string.
!
! Operation:
! 1 - Strip off leading separators (blanks and tabs) from CMD.
! 2 - If no non-separator characters encountered, return .FALSE.
! 3 - PUT all characters up to next separator into P1.
! 4 - Strip off all characters including separators from CMD until
! either the next word is positioned at the beginning of CMD, or
! the end of the orginal CMD is reached.
! 5 - Return .TRUE.
C-______________________________________________________________________________
implicit none
integer*4 char_cnt,len_cmd,len_word,len_p1
integer*4 pos_of_sp,pos_of_sep,pos_of_tab
character*(*) cmd,p1
character*1 c1,sp,tab
logical more,stripped
data sp/' '/
data tab/' '/
save
C ============================= Executable Code ================================
char_cnt = 0 !count processed characters
len_cmd = len(cmd) !length of command string
len_p1 = len(p1) !length of substring
more = .true. !more work to do
stripped = .false. !haven't stripped word
do while (more.and.char_cnt.lt.len_cmd)
c1 = cmd(1:1) !get leading character
if (c1.eq.sp.or.c1.eq.tab) then !strip away separators
cmd = cmd(2:)
char_cnt = char_cnt + 1
else !Found non-separator char.
if (stripped) then
more = .false. !All done.
else !Extract substring.
stripped = .true.
pos_of_sp = index(cmd,sp) !find position of next sep.
pos_of_tab = index(cmd,tab)
if (pos_of_sp.eq.0) pos_of_sp = len_cmd + 1
if (pos_of_tab.eq.0) pos_of_tab = len_cmd + 1
pos_of_sep = min(pos_of_sp,pos_of_tab)
len_word = pos_of_sep - 1
p1 = cmd(1:min(len_word,len_p1)) !save the word
cmd = cmd(min(pos_of_sep,len_cmd):len_cmd) !remove word from cmd
char_cnt = char_cnt + len_word
endif
endif
enddo
strip = stripped !return strip condition
return
end
!###############################################################################
logical*4 function rd_int(string,number)
C+______________________________________________________________________________
!
! Strip the leading substring out of STRING and try to convert it into
! An integer. If STRING is blank, or the conversion failed, the function
! returns .FALSE. Otherwise, .TRUE. is returned, and the integer value
! is returned in NUMBER.
C-______________________________________________________________________________
implicit none
integer*4 l,last_char
integer*4 number
character*(*) string
character*32 str1
logical*4 strip
save
C ============================= Executable Code ================================
rd_int = .false. !assume failure
if (.not.strip(string,str1)) return !Return if no words
l = last_char(str1)
read (str1(1:l),*,err=999) number !Try to read word as integer.
rd_int = .true. !Success.
999 return
end
!###############################################################################
logical*4 function rd_logical(string,value)
C+______________________________________________________________________________
!
! Strip the leading substring out of STRING and try to convert it into
! a logical*4 value. If STRING is blank, or the conversion failed, the function
! returns .FALSE. Otherwise, .TRUE. is returned, and the integer value
! is returned in value.
C-______________________________________________________________________________
implicit none
integer*4 l,last_char
logical*4 value
character*(*) string
character*32 str1
logical*4 strip
save
C ============================= Executable Code ================================
rd_logical = .false. !assume failure
if (.not.strip(string,str1)) return !Return if no words
l = last_char(str1)
read (str1(1:l),*,err=999) value !Try to read word as logical.
rd_logical = .true. !Success.
999 return
end
!###############################################################################
logical*4 function rd_hex(string,number)
C+______________________________________________________________________________
!
! Strip the leading substring out of STRING and try to convert it from a
! HEX string into an integer. If STRING is blank, or the conversion failed,
! the function returns .FALSE. Otherwise, .TRUE. is returned, and the
! integer value is returned in NUMBER.
C-______________________________________________________________________________
implicit none
integer*4 l,last_char
integer*4 number
character*(*) string
character*32 str1
logical*4 strip
save
C ============================= Executable Code ================================
rd_hex = .false. !assume failure
if (.not.strip(string,str1)) return
l = last_char(str1)
read (str1(1:l),*,err=999) number
rd_hex = .true.
999 return
end
!###############################################################################
logical*4 function rd_real(string,number)
C+______________________________________________________________________________
!
! Strip the leading substring out of STRING and try to convert it into
! An R*4 number. If STRING is blank, or the conversion failed, the function
! returns .FALSE. Otherwise, .TRUE. is returned, and the R*4 value
! is returned in NUMBER.
C-______________________________________________________________________________
implicit none
integer*4 l,last_char
real*8 number
character*(*) string
character*32 str1
logical*4 strip
save
C ============================= Executable Code ================================
rd_real = .false. !assume failure
if (.not.strip(string,str1)) return
l = last_char(str1)
read (str1(1:l),*,err=999) number
rd_real = .true.
999 return
end