1 | ---
|
2 | title: Builtin Functions (Oils Reference)
|
3 | all_docs_url: ..
|
4 | body_css_class: width40
|
5 | default_highlighter: oils-sh
|
6 | preserve_anchor_case: yes
|
7 | ---
|
8 |
|
9 | <div class="doc-ref-header">
|
10 |
|
11 | [Oils Reference](index.html) —
|
12 | Chapter **Builtin Functions**
|
13 |
|
14 | </div>
|
15 |
|
16 | This chapter describes builtin functions (as opposed to [builtin
|
17 | commands](chap-builtin-cmd.html).)
|
18 |
|
19 | <span class="in-progress">(in progress)</span>
|
20 |
|
21 | <div id="dense-toc">
|
22 | </div>
|
23 |
|
24 | ## Values
|
25 |
|
26 | ### len()
|
27 |
|
28 | Returns the
|
29 |
|
30 | - number of entries in a `List`
|
31 | - number of pairs in a `Dict`
|
32 | - number of bytes in a `Str`
|
33 | - TODO: `countRunes()` can return the number of UTF-8 encoded code points.
|
34 |
|
35 | ### func/type()
|
36 |
|
37 | Given an arbitrary value, returns a string representing the value's runtime
|
38 | type.
|
39 |
|
40 | For example:
|
41 |
|
42 | var d = {'foo': 'bar'}
|
43 | var n = 1337
|
44 |
|
45 | $ = type(d)
|
46 | (Str) 'Dict'
|
47 |
|
48 | $ = type(n)
|
49 | (Str) 'Int'
|
50 |
|
51 | Similar names: [type][]
|
52 |
|
53 | [type]: chap-index.html#type
|
54 |
|
55 |
|
56 | ## Conversions
|
57 |
|
58 | ### bool()
|
59 |
|
60 | Returns the truth value of its argument. Similar to `bool()` in python, it
|
61 | returns `false` for:
|
62 |
|
63 | - `false`, `0`, `0.0`, `''`, `{}`, `[]`, and `null`.
|
64 |
|
65 | Returns `true` for all other values.
|
66 |
|
67 | ### int()
|
68 |
|
69 | Given a float, returns the largest integer that is less than its argument (i.e. `floor()`).
|
70 |
|
71 | $ = int(1.99)
|
72 | (Int) 1
|
73 |
|
74 | Given a string, `Int()` will attempt to convert the string to a base-10
|
75 | integer. The base can be overridden by calling with a second argument.
|
76 |
|
77 | $ = int('10')
|
78 | (Int) 10
|
79 |
|
80 | $ = int('10', 2)
|
81 | (Int) 2
|
82 |
|
83 | ysh$ = Int('foo')
|
84 | # fails with an expression error
|
85 |
|
86 | ### float()
|
87 |
|
88 | Given an integer, returns the corresponding floating point representation.
|
89 |
|
90 | $ = float(1)
|
91 | (Float) 1.0
|
92 |
|
93 | Given a string, `Float()` will attempt to convert the string to float.
|
94 |
|
95 | $ = float('1.23')
|
96 | (Float) 1.23
|
97 |
|
98 | ysh$ = float('bar')
|
99 | # fails with an expression error
|
100 |
|
101 | ### str()
|
102 |
|
103 | Converts a `Float` or `Int` to a string.
|
104 |
|
105 | ### list()
|
106 |
|
107 | Given a list, returns a shallow copy of the original.
|
108 |
|
109 | Given an iterable value (e.g. a range or dictionary), returns a list containing
|
110 | one element for each item in the original collection.
|
111 |
|
112 | $ = list({'a': 1, 'b': 2})
|
113 | (List) ['a', 'b']
|
114 |
|
115 | $ = list(1:5)
|
116 | (List) [1, 2, 3, 4, 5]
|
117 |
|
118 | ### dict()
|
119 |
|
120 | Given a dictionary, returns a shallow copy of the original.
|
121 |
|
122 | ### runes()
|
123 |
|
124 | TODO
|
125 |
|
126 | Given a string, decodes UTF-8 into a List of integer "runes" (aka code points).
|
127 |
|
128 | Each rune is in the range `U+0` to `U+110000`, and **excludes** the surrogate
|
129 | range.
|
130 |
|
131 | runes(s, start=-1, end=-1)
|
132 |
|
133 | TODO: How do we signal errors?
|
134 |
|
135 | (`runes()` can be used to implement implemented Python's `ord()`.)
|
136 |
|
137 | ### encodeRunes()
|
138 |
|
139 | TODO
|
140 |
|
141 | Given a List of integer "runes" (aka code points), return a string.
|
142 |
|
143 | (`encodeRunes()` can be used to implement implemented Python's `chr()`.)
|
144 |
|
145 | ### bytes()
|
146 |
|
147 | TODO
|
148 |
|
149 | Given a string, return a List of integer byte values.
|
150 |
|
151 | Each byte is in the range 0 to 255.
|
152 |
|
153 | ### encodeBytes()
|
154 |
|
155 | TODO
|
156 |
|
157 | Given a List of integer byte values, return a string.
|
158 |
|
159 | ## Str
|
160 |
|
161 | ### strcmp()
|
162 |
|
163 | TODO
|
164 |
|
165 | ### split()
|
166 |
|
167 | TODO
|
168 |
|
169 | If no argument is passed, splits by whitespace
|
170 |
|
171 | <!-- respecting Unicode space? -->
|
172 |
|
173 | If a delimiter Str with a single byte is given, splits by that byte.
|
174 |
|
175 | Modes:
|
176 |
|
177 | - Python-like algorithm
|
178 | - Is awk any different?
|
179 | - Split by eggex
|
180 |
|
181 | ### shSplit()
|
182 |
|
183 | Split a string into a List of strings, using the shell algorithm that respects
|
184 | `$IFS`.
|
185 |
|
186 | Prefer `split()` to `shSplit()`.
|
187 |
|
188 |
|
189 | ## List
|
190 |
|
191 | ### join()
|
192 |
|
193 | Given a List, stringify its items, and join them by a separator. The default
|
194 | separator is the empty string.
|
195 |
|
196 | var x = ['a', 'b', 'c']
|
197 |
|
198 | $ echo $[join(x)]
|
199 | abc
|
200 |
|
201 | $ echo $[join(x, ' ')] # optional separator
|
202 | a b c
|
203 |
|
204 |
|
205 | It's also often called with the `=>` chaining operator:
|
206 |
|
207 | var items = [1, 2, 3]
|
208 |
|
209 | json write (items => join()) # => "123"
|
210 | json write (items => join(' ')) # => "1 2 3"
|
211 | json write (items => join(', ')) # => "1, 2, 3"
|
212 |
|
213 | ## Dict
|
214 |
|
215 | ### keys()
|
216 |
|
217 | Returns all existing keys from a dict as a list of strings.
|
218 |
|
219 | var en2fr = {
|
220 | hello: "bonjour",
|
221 | friend: "ami",
|
222 | cat: "chat"
|
223 | }
|
224 | = keys(en2fr)
|
225 | # => (List 0x4689) ["hello","friend","cat"]
|
226 |
|
227 | ### values()
|
228 |
|
229 | Similar to `keys()`, but returns the values of the dictionary.
|
230 |
|
231 | var person = {
|
232 | name: "Foo",
|
233 | age: 25,
|
234 | hobbies: :|walking reading|
|
235 | }
|
236 | = values(en2fr)
|
237 | # => (List 0x4689) ["Foo",25,["walking","reading"]]
|
238 |
|
239 | ### get()
|
240 |
|
241 | Return value for given key, falling back to the default value if the key
|
242 | doesn't exist.
|
243 |
|
244 | var book = {
|
245 | title: "Hitchhiker's Guide",
|
246 | published: 1979,
|
247 | }
|
248 |
|
249 | var published = get(book, 'published', null)
|
250 | = published
|
251 | # => (Int) 1979
|
252 |
|
253 | var author = get(book, 'author', "???")
|
254 | = author
|
255 | # => (Str) "???"
|
256 |
|
257 | If not specified, the default value is `null`:
|
258 |
|
259 | var author = get(book, 'author')
|
260 | = author
|
261 | # => (Null) null
|
262 |
|
263 | ## Float
|
264 |
|
265 | ### floatsEqual()
|
266 |
|
267 | Check if two floating point numbers are equal.
|
268 |
|
269 | = floatsEqual(42.0, 42.0)
|
270 | (Bool) true
|
271 |
|
272 | It's usually better to make an approximate comparison:
|
273 |
|
274 | = abs(float1 - float2) < 0.001
|
275 | (Bool) false
|
276 |
|
277 | ## Obj
|
278 |
|
279 | ### first()
|
280 |
|
281 | Get the Dict that contains an object's properties.
|
282 |
|
283 | ysh$ = first(obj)
|
284 | (Dict) {x: 42}
|
285 |
|
286 | The Dict and Obj share the same storage. So if the Dict is modified, the
|
287 | object is too.
|
288 |
|
289 | If you want a copy, use `dict(obj)`.
|
290 |
|
291 | ### rest()
|
292 |
|
293 | Get the "prototype" of an Obj, which is another Obj, or null:
|
294 |
|
295 | ysh$ = rest(obj)
|
296 | (Null) null
|
297 |
|
298 | ## Word
|
299 |
|
300 | ### glob()
|
301 |
|
302 | See `glob-pat` topic for syntax.
|
303 |
|
304 | ### maybe()
|
305 |
|
306 | ## Serialize
|
307 |
|
308 | ### toJson()
|
309 |
|
310 | Convert an object in memory to JSON text:
|
311 |
|
312 | $ = toJson({name: "alice"})
|
313 | (Str) '{"name":"alice"}'
|
314 |
|
315 | Add indentation by passing the `space` param:
|
316 |
|
317 | $ = toJson([42], space=2)
|
318 | (Str) "[\n 42\n]"
|
319 |
|
320 | Similar to `json write (x)`, except the default value of `space` is 0.
|
321 |
|
322 | See [err-json-encode][] for errors.
|
323 |
|
324 | [err-json-encode]: chap-errors.html#err-json-encode
|
325 |
|
326 | ### fromJson()
|
327 |
|
328 | Convert JSON text to an object in memory:
|
329 |
|
330 | = fromJson('{"name":"alice"}')
|
331 | (Dict) {"name": "alice"}
|
332 |
|
333 | Similar to `json read <<< '{"name": "alice"}'`.
|
334 |
|
335 | See [err-json-decode][] for errors.
|
336 |
|
337 | [err-json-decode]: chap-errors.html#err-json-decode
|
338 |
|
339 | ### toJson8()
|
340 |
|
341 | Like `toJson()`, but it also converts binary data (non-Unicode strings) to
|
342 | J8-style `b'foo \yff'` strings.
|
343 |
|
344 | In contrast, `toJson()` will do a lossy conversion with the Unicode replacement
|
345 | character.
|
346 |
|
347 | See [err-json8-encode][] for errors.
|
348 |
|
349 | [err-json8-encode]: chap-errors.html#err-json8-encode
|
350 |
|
351 | ### fromJson8()
|
352 |
|
353 | Like `fromJson()`, but it also accepts binary data denoted by J8-style `b'foo
|
354 | \yff'` strings.
|
355 |
|
356 | See [err-json8-decode][] for errors.
|
357 |
|
358 | [err-json8-decode]: chap-errors.html#err-json8-decode
|
359 |
|
360 | ## Pattern
|
361 |
|
362 | ### `_group()`
|
363 |
|
364 | Like `Match => group()`, but accesses the global match created by `~`:
|
365 |
|
366 | if ('foo42' ~ / d+ /) {
|
367 | echo $[_group(0)] # => 42
|
368 | }
|
369 |
|
370 | ### `_start()`
|
371 |
|
372 | Like `Match => start()`, but accesses the global match created by `~`:
|
373 |
|
374 | if ('foo42' ~ / d+ /) {
|
375 | echo $[_start(0)] # => 3
|
376 | }
|
377 |
|
378 | ### `_end()`
|
379 |
|
380 | Like `Match => end()`, but accesses the global match created by `~`:
|
381 |
|
382 | if ('foo42' ~ / d+ /) {
|
383 | echo $[_end(0)] # => 5
|
384 | }
|
385 |
|
386 | ## Introspection
|
387 |
|
388 | ### `id()`
|
389 |
|
390 | Returns an integer ID for mutable values like List, Dict, and Obj.
|
391 |
|
392 | You can use it to test if two names refer to the same instance.
|
393 |
|
394 | `id()` is undefined on immutable values like Bool, Int, Float, Str, etc.
|
395 |
|
396 | ### `shvarGet()`
|
397 |
|
398 | Given a variable name, return its value. It uses the "dynamic scope" rule,
|
399 | which looks up the stack for a variable.
|
400 |
|
401 | It's meant to be used with `shvar`:
|
402 |
|
403 | proc proc1 {
|
404 | shvar PATH=/tmp { # temporarily set PATH in this stack frame
|
405 | my-proc
|
406 | }
|
407 |
|
408 | proc2
|
409 | }
|
410 |
|
411 | proc proc2 {
|
412 | proc3
|
413 | }
|
414 |
|
415 | proc proc3 {
|
416 | var path = shvarGet('PATH') # Look up the stack (dynamic scoping)
|
417 | echo $path # => /tmp
|
418 | }
|
419 |
|
420 | proc1
|
421 |
|
422 | Note that `shvar` is usually for string variables, and is analogous to `shopt`
|
423 | for "booleans".
|
424 |
|
425 | If the variable isn't defined, `shvarGet()` returns `null`. So there's no way
|
426 | to distinguish an undefined variable from one that's `null`.
|
427 |
|
428 | ### `getVar()`
|
429 |
|
430 | Given a variable name, return its value.
|
431 |
|
432 | $ var x = 42
|
433 | $ echo $[getVar('x')]
|
434 | 42
|
435 |
|
436 | The variable may be local or global. (Compare with `shvarGet()`.) the "dynamic
|
437 | scope" rule.)
|
438 |
|
439 | If the variable isn't defined, `getVar()` returns `null`. So there's no way to
|
440 | distinguish an undefined variable from one that's `null`.
|
441 |
|
442 | ### `setVar()`
|
443 |
|
444 | Bind a name to a value, in the local scope. Returns nothing.
|
445 |
|
446 | call setVar('myname', 42)
|
447 |
|
448 | This is like
|
449 |
|
450 | setvar myname = 42
|
451 |
|
452 | except the name can is a string, which can be constructed at runtime.
|
453 |
|
454 | ### `parseCommand()`
|
455 |
|
456 | Given a code string, parse it as a command (with the current parse options).
|
457 |
|
458 | Returns a `value.Command` instance, or raises an error.
|
459 |
|
460 | ### `parseExpr()`
|
461 |
|
462 | TODO:
|
463 |
|
464 | Given a code string, parse it as an expression.
|
465 |
|
466 | Returns a `value.Expr` instance, or raises an error.
|
467 |
|
468 | ## Hay Config
|
469 |
|
470 | ### parseHay()
|
471 |
|
472 | ### evalHay()
|
473 |
|
474 |
|
475 | ## Hashing
|
476 |
|
477 | ### sha1dc()
|
478 |
|
479 | Git's algorithm.
|
480 |
|
481 | ### sha256()
|
482 |
|
483 |
|
484 | <!--
|
485 |
|
486 | ### Better Syntax
|
487 |
|
488 | These functions give better syntax to existing shell constructs.
|
489 |
|
490 | - `shQuote()` for `printf %q` and `${x@Q}`
|
491 | - `trimLeft()` for `${x#prefix}` and `${x##prefix}`
|
492 | - `trimRight()` for `${x%suffix}` and `${x%%suffix}`
|
493 | - `trimLeftGlob()` and `trimRightGlob()` for slow, legacy glob
|
494 | - `upper()` for `${x^^}`
|
495 | - `lower()` for `${x,,}`
|
496 | - `strftime()`: hidden in `printf`
|
497 |
|
498 | -->
|