Skip to content

Commit 76f5475

Browse files
committed
process.pid_from_dynamic
Closes #41
1 parent 4386834 commit 76f5475

11 files changed

+164
-159
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: erlef/setup-beam@v1
1616
with:
17-
otp-version: "25.2"
17+
otp-version: "26.2"
1818
rebar3-version: "3"
19-
gleam-version: "0.32"
19+
gleam-version: "1.0.0"
2020
- run: gleam test
2121
- run: gleam format --check src test

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.25.0 - 2024-03-20
4+
5+
- Updated for `gleam_stdlib` v0.33.0.
6+
37
## v0.24.0 - 2024-01-03
48

59
- Updated for `gleam_stdlib` v0.33.0.

gleam.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "gleam_erlang"
22

3-
version = "0.24.0"
3+
version = "0.25.0"
44
licences = ["Apache-2.0"]
55
description = "A Gleam library for working with Erlang"
66

src/gleam/erlang.gleam

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import gleam/dynamic.{type Dynamic}
2-
import gleam/list
32
import gleam/erlang/atom.{type Atom}
43
import gleam/erlang/charlist.{type Charlist}
4+
import gleam/list
55

66
@external(erlang, "io_lib", "format")
77
fn erl_format(a: String, b: List(a)) -> Charlist

src/gleam/erlang/process.gleam

+20-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import gleam/string
2-
import gleam/dynamic.{type Dynamic}
1+
import gleam/dynamic.{type DecodeErrors, type Dynamic}
32
import gleam/erlang.{type Reference}
43
import gleam/erlang/atom.{type Atom}
4+
import gleam/string
55

66
/// A `Pid` (or Process identifier) is a reference to an Erlang process. Each
77
/// process has a `Pid` and it is one of the lowest level building blocks of
@@ -563,10 +563,9 @@ pub fn try_call(
563563
let result =
564564
new_selector()
565565
|> selecting(reply_subject, Ok)
566-
|> selecting_process_down(
567-
monitor,
568-
fn(down: ProcessDown) { Error(CalleeDown(reason: down.reason)) },
569-
)
566+
|> selecting_process_down(monitor, fn(down: ProcessDown) {
567+
Error(CalleeDown(reason: down.reason))
568+
})
570569
|> select(timeout)
571570

572571
// Demonitor the process and close the channels as we're done
@@ -744,3 +743,18 @@ pub fn unregister(name: Atom) -> Result(Nil, Nil)
744743
///
745744
@external(erlang, "gleam_erlang_ffi", "process_named")
746745
pub fn named(name: Atom) -> Result(Pid, Nil)
746+
747+
/// Checks to see whether a `Dynamic` value is a pid, and return the pid if
748+
/// it is.
749+
///
750+
/// ## Examples
751+
///
752+
/// > import gleam/dynamic
753+
/// > from_dynamic(dynamic.from(process.self()))
754+
/// Ok(process.self())
755+
///
756+
/// > from_dynamic(dynamic.from(123))
757+
/// Error([DecodeError(expected: "Pid", found: "Int", path: [])])
758+
///
759+
@external(erlang, "gleam_erlang_ffi", "pid_from_dynamic")
760+
pub fn pid_from_dynamic(from from: Dynamic) -> Result(Pid, DecodeErrors)

src/gleam_erlang_ffi.erl

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
new_selector/0, link/1, insert_selector_handler/3, select/1, select/2,
77
trap_exits/1, map_selector/2, merge_selector/2, flush_messages/0,
88
priv_directory/1, connect_node/1, register_process/2, unregister_process/1,
9-
process_named/1, identity/1
9+
process_named/1, identity/1, pid_from_dynamic/1
1010
]).
1111

1212
-spec atom_from_string(binary()) -> {ok, atom()} | {error, atom_not_loaded}.
@@ -20,6 +20,11 @@ atom_from_dynamic(Data) when is_atom(Data) ->
2020
atom_from_dynamic(Data) ->
2121
{error, [{decode_error, <<"Atom">>, gleam@dynamic:classify(Data), []}]}.
2222

23+
pid_from_dynamic(Data) when is_pid(Data) ->
24+
{ok, Data};
25+
pid_from_dynamic(Data) ->
26+
{error, [{decode_error, <<"Pid">>, gleam@dynamic:classify(Data), []}]}.
27+
2328
-spec get_line(io:prompt()) -> {ok, unicode:unicode_binary()} | {error, eof | no_data}.
2429
get_line(Prompt) ->
2530
case io:get_line(Prompt) of

test/gleam/erlang/atom_test.gleam

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import gleam/erlang/atom
21
import gleam/dynamic.{DecodeError}
2+
import gleam/erlang/atom
33

44
pub fn from_string_test() {
55
let assert Ok(_) = atom.from_string("ok")

test/gleam/erlang/env_test.gleam

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import gleam/erlang/os
21
import gleam/dict
2+
import gleam/erlang/os
33

44
pub fn get_all_test() {
55
os.set_env("MYVAR", "MYVALUE")

test/gleam/erlang/node_tests.gleam

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import gleam/erlang/node
21
import gleam/erlang/atom
2+
import gleam/erlang/node
33

44
// TODO: Improve these tests by spawning a peer node.
55

0 commit comments

Comments
 (0)