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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
|
# Paths and Files
Tomo supports a built-in syntax for file and directory paths, with some logic
to help prevent or mitigate the risks of errors caused by string manipulations
of file paths. Tomo does not have a built-in datatype to represent files
specifically, but instead relies on Paths as the API to do filesystem
operations.
## Syntax
Paths are [domain-specific languages](langs.md) that have their own dedicated
syntax. A path literal begins with either `(/`, `(./`, `(../`, or `(~/` and continues
until a matching closing parenethesis:
```tomo
>> (/tmp)
= (/tmp)
>> (~/path with/(parens) is/ok/)
= (~/path with/(parens) is/ok/)
```
### Interpolation
Paths can contain interpolations using `$`, just like strings. However, there are
certain values that _cannot_ be interpolated:
- The literal string `.`
- The literal string `..`
- Any text that contains a forward slash (`/`)
The intended use for path interpolation is to take user input which may or may
not be trustworthy and interpret that value as a single path component name,
i.e. the name of a directory or file. If a user were to supply a value like
`..` or `foo/baz`, it would risk navigating into a directory other than
intended. Paths can be created from text with slashes using
`Path.from_unsafe_text(text)` if you need to use arbitrary text as a file path.
## Path Methods
### `append`
**Description:**
Appends the given text to the file at the specified path, creating the file if it doesn't already exist. Failure to write will result in a runtime error.
**Usage:**
```markdown
append(path: Path, text: Text, permissions: Int32 = 0o644_i32) -> Void
```
**Parameters:**
- `path`: The path of the file to append to.
- `text`: The text to append to the file.
- `permissions` (optional): The permissions to set on the file if it is being created (default is `0o644`).
**Returns:**
Nothing.
**Example:**
```markdown
(./log.txt):append("extra line$(\n)")
```
---
### `base_name`
**Description:**
Returns the base name of the file or directory at the specified path.
**Usage:**
```markdown
base_name(path: Path) -> Text
```
**Parameters:**
- `path`: The path of the file or directory.
**Returns:**
The base name of the file or directory.
**Example:**
```markdown
>> (./path/to/file.txt):base_name()
= "file.txt"
```
---
### `by_line`
**Description:**
Returns an iterator that can be used to iterate over a file one line at a time.
**Usage:**
```markdown
by_line(path: Path) -> func()->NextLine
```
**Parameters:**
- `path`: The path of the file.
**Returns:**
An iterator that can be used to get lines from a file one at a time.
**Example:**
```markdown
for line in (/dev/stdin):by_line():
say(line:upper())
```
---
### `children`
**Description:**
Returns a list of children (files and directories) within the directory at the specified path. Optionally includes hidden files.
**Usage:**
```markdown
children(path: Path, include_hidden=no) -> [Path]
```
**Parameters:**
- `path`: The path of the directory.
- `include_hidden` (optional): Whether to include hidden files, which start with a `.` (default is `no`).
**Returns:**
A list of paths for the children.
**Example:**
```markdown
>> (./directory):children(include_hidden=yes)
= [".git", "foo.txt"]
```
---
### `create_directory`
**Description:**
Creates a new directory at the specified path with the given permissions.
**Usage:**
```markdown
create_directory(path: Path, permissions=0o644_i32) -> Void
```
**Parameters:**
- `path`: The path of the directory to create.
- `permissions` (optional): The permissions to set on the new directory (default is `0o644`).
**Returns:**
Nothing.
**Example:**
```markdown
(./new_directory):create_directory()
```
---
### `exists`
**Description:**
Checks if a file or directory exists at the specified path.
**Usage:**
```markdown
exists(path: Path) -> Bool
```
**Parameters:**
- `path`: The path to check.
**Returns:**
`True` if the file or directory exists, `False` otherwise.
**Example:**
```markdown
>> (/):exists()
= yes
```
---
### `extension`
**Description:**
Returns the file extension of the file at the specified path. Optionally returns the full extension.
**Usage:**
```markdown
extension(path: Path, full=yes) -> Text
```
**Parameters:**
- `path`: The path of the file.
- `full` (optional): Whether to return everything after the first `.` in the
base name, or only the last part of the extension (default is `yes`).
**Returns:**
The file extension (not including the leading `.`) or an empty text if there is
no file extension.
**Example:**
```markdown
>> (./file.tar.gz):extension()
= "tar.gz"
>> (./file.tar.gz):extension(full=no)
= "gz"
>> (/foo):extension()
= ""
>> (./.git):extension()
= ""
```
---
### `files`
**Description:**
Returns a list of files within the directory at the specified path. Optionally includes hidden files.
**Usage:**
```markdown
files(path: Path, include_hidden=no) -> [Path]
```
**Parameters:**
- `path`: The path of the directory.
- `include_hidden` (optional): Whether to include hidden files (default is `no`).
**Returns:**
A list of file paths.
**Example:**
```markdown
>> (./directory):files(include_hidden=yes)
= [(./directory/file1.txt), (./directory/file2.txt)]
```
---
### `is_directory`
**Description:**
Checks if the path represents a directory. Optionally follows symbolic links.
**Usage:**
```markdown
is_directory(path: Path, follow_symlinks=yes) -> Bool
```
**Parameters:**
- `path`: The path to check.
- `follow_symlinks` (optional): Whether to follow symbolic links (default is `yes`).
**Returns:**
`True` if the path is a directory, `False` otherwise.
**Example:**
```markdown
>> (./directory/):is_directory()
= yes
>> (./file.txt):is_directory()
= no
```
---
### `is_file`
**Description:**
Checks if the path represents a file. Optionally follows symbolic links.
**Usage:**
```markdown
is_file(path: Path, follow_symlinks=yes) -> Bool
```
**Parameters:**
- `path`: The path to check.
- `follow_symlinks` (optional): Whether to follow symbolic links (default is `yes`).
**Returns:**
`True` if the path is a file, `False` otherwise.
**Example:**
```markdown
>> (./file.txt):is_file()
= yes
>> (./directory/):is_file()
= no
```
---
### `is_socket`
**Description:**
Checks if the path represents a socket. Optionally follows symbolic links.
**Usage:**
```markdown
is_socket(path: Path, follow_symlinks=yes) -> Bool
```
**Parameters:**
- `path`: The path to check.
- `follow_symlinks` (optional): Whether to follow symbolic links (default is `yes`).
**Returns:**
`True` if the path is a socket, `False` otherwise.
**Example:**
```markdown
>> (./socket):is_socket()
= yes
```
---
### `is_symlink`
**Description:**
Checks if the path represents a symbolic link.
**Usage:**
```markdown
is_symlink(path: Path) -> Bool
```
**Parameters:**
- `path`: The path to check.
**Returns:**
`True` if the path is a symbolic link, `False` otherwise.
**Example:**
```markdown
>> (./link):is_symlink()
= yes
```
---
### `parent`
**Description:**
Returns the parent directory of the file or directory at the specified path.
**Usage:**
```markdown
parent(path: Path) -> Path
```
**Parameters:**
- `path`: The path of the file or directory.
**Returns:**
The path of the parent directory.
**Example:**
```markdown
>> (./path/to/file.txt):parent()
= (./path/to/)
```
---
### `read`
**Description:**
Reads the contents of the file at the specified path.
**Usage:**
```markdown
read(path: Path) -> Text
```
**Parameters:**
- `path`: The path of the file to read.
**Returns:**
The contents of the file. If the file does not exist, an error will be raised.
**Example:**
```markdown
content := (./file.txt):read()
```
---
### `relative`
**Description:**
Returns the path relative to a given base path. By default, the base path is the current directory.
**Usage:**
```markdown
relative(path: Path, relative_to=(./)) -> Path
```
**Parameters:**
- `path`: The path to convert.
- `relative_to` (optional): The base path for the relative path (default is `./`).
**Returns:**
The relative path.
**Example:**
```markdown
>> (./path/to/file.txt):relative(relative_to=(./path))
= (./to/file.txt)
```
---
### `remove`
**Description:**
Removes the file or directory at the specified path. A runtime error is raised if something goes wrong.
**Usage:**
```markdown
remove(path: Path, ignore_missing=no) -> Void
```
**Parameters:**
- `path`: The path to remove.
- `ignore_missing` (optional): Whether to ignore errors if the file or directory does not exist (default is `no`).
**Returns:**
Nothing.
**Example:**
```markdown
(./file.txt):remove()
```
---
### `resolved`
**Description:**
Resolves the absolute path of the given path relative to a base path. By default, the base path is the current directory.
**Usage:**
```markdown
resolved(path: Path, relative_to=(./)) -> Path
```
**Parameters:**
- `path`: The path to resolve.
- `relative_to` (optional): The base path for resolution (default is `./`).
**Returns:**
The resolved absolute path.
**Example:**
```markdown
>> (~/foo):resolved()
= (/home/user/foo)
>> (./path/to/file.txt):resolved(relative_to=(/foo))
= (/foo/path/to/file.txt)
```
---
### `subdirectories`
**Description:**
Returns a list of subdirectories within the directory at the specified path. Optionally includes hidden subdirectories.
**Usage:**
```markdown
subdirectories(path: Path, include_hidden=no) -> [Path]
```
**Parameters:**
- `path`: The path of the directory.
- `include_hidden` (optional): Whether to include hidden subdirectories (default is `no`).
**Returns:**
A list of subdirectory paths.
**Example:**
```markdown
>> (./directory):subdirectories()
= [(./directory/subdir1), (./directory/subdir2)]
>> (./directory):subdirectories(include_hidden=yes)
= [(./directory/.git), (./directory/subdir1), (./directory/subdir2)]
```
---
### `unique_directory`
**Description:**
Generates a unique directory path based on the given path. Useful for creating temporary directories.
**Usage:**
```markdown
unique_directory(path: Path) -> Path
```
**Parameters:**
- `path`: The base path for generating the unique directory. The last six letters of this path must be `XXXXXX`.
**Returns:**
A unique directory path after creating the directory.
**Example:**
```
>> created := (/tmp/my-dir.XXXXXX):unique_directory()
= (/tmp/my-dir-AwoxbM/)
>> created:is_directory()
= yes
created:remove()
```
---
### `write`
**Description:**
Writes the given text to the file at the specified path, creating the file if
it doesn't already exist. Sets the file permissions as specified. If the file
writing cannot be successfully completed, a runtime error is raised.
**Usage:**
```markdown
write(path: Path, text: Text, permissions=0o644_i32) -> Void
```
**Parameters:**
- `path`: The path of the file to write to.
- `text`: The text to write to the file.
- `permissions` (optional): The permissions to set on the file if it is created (default is `0o644`).
**Returns:**
Nothing.
**Example:**
```markdown
(./file.txt):write("Hello, world!")
```
---
### `write_unique`
**Description:**
Writes the given text to a unique file path based on the specified path. The
file is created if it doesn't exist. This is useful for creating temporary
files.
**Usage:**
```markdown
write_unique(path: Path, text: Text) -> Path
```
**Parameters:**
- `path`: The base path for generating the unique file. This path must include
the string `XXXXXX` in the file base name.
- `text`: The text to write to the file.
**Returns:**
The path of the newly created unique file.
**Example:**
```markdown
>> created := (./file-XXXXXX.txt):write_unique("Hello, world!")
= (./file-27QHtq.txt)
>> created:read()
= "Hello, world!"
created:remove()
```
|