-
-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make actor.Stop
respect the given exit reason
#88
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,7 +139,7 @@ import gleam/dynamic.{type Dynamic} | |
import gleam/erlang/atom | ||
import gleam/erlang/charlist.{type Charlist} | ||
import gleam/erlang/process.{ | ||
type ExitReason, type Pid, type Selector, type Subject, Abnormal, | ||
type ExitReason, type Pid, type Selector, type Subject, Abnormal, Killed, | ||
} | ||
import gleam/option.{type Option, None, Some} | ||
import gleam/otp/system.{ | ||
|
@@ -189,7 +189,7 @@ pub fn with_selector( | |
) -> Next(message, state) { | ||
case value { | ||
Continue(state, _) -> Continue(state, Some(selector)) | ||
_ -> value | ||
Stop(_) -> value | ||
} | ||
} | ||
|
||
|
@@ -257,7 +257,12 @@ pub type Spec(state, msg) { | |
|
||
// TODO: Check needed functionality here to be OTP compatible | ||
fn exit_process(reason: ExitReason) -> ExitReason { | ||
// TODO | ||
case reason { | ||
Abnormal(reason) -> process.send_abnormal_exit(process.self(), reason) | ||
Killed -> process.kill(process.self()) | ||
_ -> Nil | ||
} | ||
|
||
reason | ||
} | ||
|
||
|
@@ -404,10 +409,10 @@ fn initialise_actor( | |
loop(self) | ||
} | ||
|
||
// The init failed. Exit with an error. | ||
// The init failed. Send the reason back to the parent, but exit normally. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we now exit normally? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
"shuts down" implies a clean exit to me. The reason the test wasn't failing before is that If we don't want a clean exit, then I think |
||
Failed(reason) -> { | ||
process.send(ack, Error(Abnormal(reason))) | ||
exit_process(Abnormal(reason)) | ||
exit_process(process.Normal) | ||
} | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No catch all patterns ever please 🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replaced it with
Stop(_)
👍I also removed the dependency to gleam-lang/erlang#65 / gleam-lang/erlang#67, even though one of the tests is a bit wonky now 🤷