-
Notifications
You must be signed in to change notification settings - Fork 1
/
utils-script.r
517 lines (425 loc) · 10.6 KB
/
utils-script.r
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
REBOL [
; -- Core Header attributes --
title: "script/application handling tools."
file: %utils-script.r
version: 1.0.1
date: 2013-9-12
author: "Maxim Olivier-Adlhoch"
purpose: "Collection of generic, re-useable functions"
web: http://www.revault.org/modules/utils-script.rmrk
source-encoding: "Windows-1252"
note: {Steel Library Manager (SLiM) is Required to use this module.}
; -- slim - Library Manager --
slim-name: 'utils-script
slim-version: 1.2.1
slim-prefix: none
slim-update: http://www.revault.org/downloads/modules/utils-script.r
; -- Licensing details --
copyright: "Copyright © 2013 Maxim Olivier-Adlhoch"
license-type: "Apache License v2.0"
license: {Copyright © 2013 Maxim Olivier-Adlhoch
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.}
;- / history
history: {
v1.0.1 - 2013-09-12
-added source-entab}
;- \ history
;- / documentation
documentation: {
Documentation goes here
}
;- \ documentation
]
;--------------------------------------
; unit testing setup
;--------------------------------------
;
; test-enter-slim 'utils-script
;
;--------------------------------------
slim/register [
slim/open/expose 'utils-strings none [ international-datestring ]
;- .
;-----------------------------------------------------------------------------------------------------------
;-
;- FUNCTIONS
;-
;-----------------------------------------------------------------------------------------------------------
;-----------------
;- get-application-title()
;-----------------
get-application-title: funcl [
][
parent: system/script
until [
script: parent
parent: script/parent
any [
none? parent
none? parent/header
]
]
all [
ttl: get in script 'title
to-string ttl
]
]
;-----------------
;- get-application-path()
;-----------------
get-application-path: funcl [
][
parent: system/script
until [
script: parent
parent: script/parent
any [
none? parent
none? parent/header
]
]
all [
file? dir: dirize get in script 'path
copy dir
]
]
;--------------------------
;- source-entab()
;--------------------------
; purpose: similar to 'ENTAB, but only at the head of the lines... not within.
;
; inputs: string to entab
;
; returns: entabed string
;
; notes:
; -if the first column contains a semi-colon (';') we should entab until the non-space character.
;
; bugs: -if there is a multi-line string with spaces at the begining, it will be entabbed"
;
; tests:
;
; test [ source-entab utils-string.r] [ von (source-entab 4 { this is tabbed^/; this is not^/ ^- ; this is.}) = { ^-this is tabbed;^/^-this is too^/^-; folowing tab is not.} ]
;--------------------------
source-entab: funcl [
tab-length [ none! integer! ]
source [string!]
][
vin "source-entab()"
default tab-length 4
result: make string! to-integer ( 1.25 * length? source )
;v?? source
;vprint "============================================>>>>>>>>>>>>>"
end-rule: copy/deep [ to end ( end-rule: [thru end] ) ]
space-rule: [
( i: 0 )
any [
" " ( i: i + 1 )
| "^-" ( i: i + tab-length - ( i // tab-length ) )
]
]
ws: charset " ^-"
parse/all source [
some [
here:
space-rule
[
copy txt [ thru "^/" ]
|
copy txt end-rule
]
there:
(
;vprint "--"
;vprobe i
insert/dup tail result "^-" to-integer (i / tab-length)
insert/dup tail result " " i // tab-length
append result any [txt ""] ; prevent adding a none at the end of all results!
)
]
]
;vprint "<<<<<<<<<<<<============================================"
;print result
;probe result
vout
result
]
;- .
;-----------------------------------------------------------------------------------------------------------
;
;- HEADER MANIPULATION FUNCS
;
;-----------------------------------------------------------------------------------------------------------
;--------------------------
;- get-header-value()
;--------------------------
; purpose: a generic func to get header info, not fast, but effective.
;--------------------------
get-header-value: funcl [
src [file! string! object!]
attr [word!]
][
vin "get-header-value()"
if file? src [
src: read src
]
src-hdr: switch type?/word src [
object! [src]
string! [
first load/header src
]
]
unless value: in src-hdr attr [
to-error rejoin ["source has no '" attr " to get!"]
]
value: get value
v?? value
vout
value
]
;--------------------------
;- get-script-version()
;--------------------------
; purpose: a generic func to get header info, not fast, but effective.
;--------------------------
get-script-version: funcl [
src [file! string! object!]
][
vin "get-script-version()"
ver: get-header-value src 'version
v?? ver
ver: switch/default type?/word ver [
decimal! [
to-tuple to-string ver
]
integer! [
1.0.0 * ver
]
string! [
any [
all [
tuple? ver: attempt [to-tuple ver]
ver
]
0.0.0
]
]
tuple! [
ver
]
][
0.0.0
]
v?? ver
vout
ver
]
;--------------------------
;- bump-script-version()
;--------------------------
; purpose: automatically find and replace a version value in a header.
;
; notes: The version MUST exist (though it may not be a valid tuple equivalent value... like none).
;--------------------------
bump-script-version: funcl [
[catch]
src [file! string! object!]
][
throw-on-error [
vin "bump-script-version()"
if file? src [
src: read src
]
src-version: get-header-value src 'version
src-version: any [
all [
tuple? v: attempt [ to-tuple to-string src-version ]
v
]
0.0.0
]
v?? src-version
; unless tuple? src-version [
; to-error "source version is not a tuple or numeric scalar value."
; ]
dest-version: src-version + 0.0.1
v?? dest-version
;-------
; do a version substitution within source!
;-------
either object? src [
src/version: dest-version
][
;---
; follow rebol interpreter rules for header identification
;
; but assume a well-formed header with a version inside.
;---
str: find/tail src "REBOL"
;---
; skip block start
str: find/tail str "["
; move ahead until we find a version
value-start: find/tail str "version:"
v: value-start
parse/all value-start [
; skip all whitespace
any [" " | "^-" | "^/" ] v:
]
value-start: v
;---
; find end of that version value
set [tmp value-end] load/next value-start
vprint [ "replacing: " copy/part value-start value-end]
change/part value-start to-string dest-version value-end
]
vout
src
]
]
;--------------------------
;- update-script-date()
;--------------------------
; purpose:
;
; inputs:
;
; returns:
;
; notes:
;
; to do:
;
; tests:
;--------------------------
update-script-date: funcl [
[catch]
src [file! string! object!]
][
throw-on-error [
vin "update-script-date()"
if file? src [
src: read src
]
;unless src-date: get-header-value src 'date
dest-date: international-datestring now
v?? dest-date
;-------
; do a date substitution within source!
;-------
either object? src [
src/date: dest-date
][
;---
; follow rebol interpreter rules for header identification
;
; but assume a well-formed header with a date inside.
;---
str: find/tail src "REBOL"
;---
; skip block start
str: find/tail str "["
; move ahead until we find a date
value-start: find/tail str "date:"
v: value-start
parse/all value-start [
any [" " | "^-" | "^/" ] v:
]
value-start: v
;---
; find end of that version value
set [tmp value-end] load/next value-start
vprint [ "replacing: " copy/part value-start value-end]
change/part value-start to-string dest-date value-end
]
vout
src
]
]
;--------------------------
;- extend-script-history()
;--------------------------
; purpose:
;
; inputs:
;
; returns:
;
; notes:
;
; to do:
;
; tests:
;--------------------------
extend-script-history: funcl [
[catch]
src [ file! string! object! ]
comment [ string! ]
][
throw-on-error [
vin "extend-script-history()"
if file? src [
src: read src
]
history: any [
get-header-value src 'history
copy ""
]
version: get-header-value src 'version
unless find rejoin ["v" version " - "] history [
append history rejoin [ "^/^-^-v" version " - " international-datestring now "^/^-^-^-"]
]
trim comment
history: rejoin [
"{" history
"-" comment "^/"
"^-}"
]
;-------
; do a date substitution within source!
;-------
either object? src [
src/history: history
][
;---
; follow rebol interpreter rules for header identification
;
; but assume a well-formed header with a date inside.
;---
str: find/tail src "REBOL"
;---
; skip block start
str: find/tail str "["
; move ahead until we find a history
value-start: find/tail str "history:"
v: value-start
parse/all value-start [
any [" " | "^-" | "^/" ] v:
]
value-start: v
;---
; find end of that version value
set [tmp value-end] load/next value-start
vprint [ "replacing: " copy/part value-start value-end]
change/part value-start history value-end
]
vout
src
]
]
]
;------------------------------------
; We are done testing this library.
;------------------------------------
;
; test-exit-slim
;
;------------------------------------