sodapopcan
Improve this code?
I thought I would make one of these “improve this code” posts even though this problem isn’t really at that interesting (but here we are). I don’t hate my solution but I feel like it could perhaps be a little more readable. I’m not sure. It’s not bad, but maybe it could be better? Maybe there is an existing way to do this? I am aware of breadcrumble_ex but it’s too explicit for my use-case. I’d also like a better name, though not putting that on you all.
So this function takes a URI path (eg. /path/to/some/place) and turns it into a list of tuples suitable for a presenter to blindly turn it into breadcrumbs. Here it is:
defmodule ExampleModule do
@doc """
Takes a path and return a list of tuples in the form of:
[{"segment", "/path/to/segment"}]
## Example:
iex> ExampleModule.segment_path("/path/to/segment")
iex> [{"path", "/path"}, {"to", "/path/to"}, {"segement", "/path/to/segment"}]
This is useful for making breadcrumbs.
"""
def segment_path(path) when is_binary(path) do
path
|> String.split("/")
|> Enum.reverse()
|> do_segment_path([])
end
defp do_segment_path([""], acc), do: acc
defp do_segment_path([segment | rest] = path, acc) do
path =
path
|> Enum.reverse()
|> Enum.join("/")
acc = [{segment, path} | acc]
do_segment_path(rest, acc)
end
end
That’s it!
Not too exciting, I know. I mostly like this little problem since this is one of those cases where building a list from the end is actually what we want to do. Of course, this just means we reverse it at the beginning as opposed to the end, and then again each iteration to put each segment in its correct form. That’s the big thing I think I would find confusing about this coming back to it later with no context.
Code-golf answers are welcome, but I’m ultimately looking for readability improvements.
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 10 of 18 Posts
al2o3cr
YMMV as to where this falls on the golf-vs-readability spectrum, but it’s shorter:
The tricky part here is that we only care about part of the “accumulator” for
Enum.scan.Alternatively, you could divide the work into clearer parts:
The
scanhere builds a list of lists with (reversed) paths:Then the
mapconverts those into the desired output shape.msimonborg
Here’s another option!
What makes this more readable IMHO:
list |> Enum.reverse() |> Enum.join()Enum.reduce/3which is very familiar to most Elixir devsYou can of course pipe the
reduceblock intoEnum.reverse()instead of inlining it in thezipcall, if that’s your preferenceAs an added bonus this implementation benchmarks 20% faster on my machine than your original
GPrimola
Another way:
The solution with this code unfolds like this:
Then it’s reversed.
I won’t add reasoning on why (or whether) this is better, but just another implementation.
sodapopcan
Awesome, thank you all for your responses!
Enum.scan.3is actually what I was looking for, but the name didn’t poke out to me. Looks like I need to just do another read-through of the entire Enum module as it’s been quite a while.Stream.iterate/2is super interesting and was wholly unaware of it.@msimonborg I like your points but interestingly or not, I always do my best to find an alternative whenever I find myself needing
reduce. It’s not that I think it should never be used, and it certainly is sometimes, but I feel it hurts code “scannability”. Since reduce is the most generalized enumerator you can get, just reading its name alone tells an incredibly generalized story about what is about to happen. This forces me to read through a bit of the implementation, even if I don’t care about it, thus hurting scannability. So I always look for an alternative inEnumthat is going that is more tailored to what I want to accomplish. Of course, in this instance, not only did I completely missscan/3, I chose recursion which is definitely not more “scannable”. While I don’t avoid reduce at all costs, I was definitely trying to do so and took it a little too far this time.That said, I would say that the
scan/3solution is my favourite here. While I somewhat agree that it is better to use functions that more people are familiar with, I feel like once you come across a function a couple of times and look it up it becomes pretty ingrained. Now that I know aboutscan, just seeing the name itself will give a lot of information about what’s about to happen, and I prefer optimizing for that.Anyway, thanks again, all—Glad I asked!
BradS2S
Still a newb so looking for feedback on if this would work:
BartOtten
+1 haha. Wonder what your final solution is as a certain lib I am building could use this as extension…
sodapopcan
This was for one of my several abandon projects so it never grew. At one point I had my personal site in LiveView until I decide to switch over to Hugo. This is what I landed on but it didn’t have time to grow. It’s based off of @al2o3cr’s first suggestion suggested along with a component. I just build up segments are two-tuples with
{segment, path}.As this is old code I’m not going to look over it to see if I’m embarrassed by it or not as I might not post it
Ok, I did look it over. It’s a little more complex than it needs to be for a show-and-tell but the admin specific stuff is because I was only using them in the admin section.
segment_path/1is the main thing. This was pre-verified routes and one of the reasons I was excited about them.EDITED: Man, I really didn’t re-read this thread before posting. Sorry for the repeated context.
Ninigi
Just my 2 cents if I was a reviewer:
I’d recommend keeping your original code to segment the path - the new code might be more efficient, but I’d care more about readability than efficiency in code that deals with a string and resulting list of maybe 5 items.
Rename the private functions to something like
Otherwise perfectly fine for what it needs to do.
sodapopcan
For utility functions like these that do one very simple tiny thing that will very likely never change (and I wish were just in a library), I prefer them to be terse. When they take up a lot of lines it psychologically makes me think they are doing something really important when skimming through code. That’s just me and my personal projects, though. If I wrote that as part of a team and someone wanted me to change it, I wouldn’t protest.
If I wrote this today (this was 9 months ago… I just got pinged on this relatively old thread) I would probably expand the shorthand anonymous functions.
The
do_for private functions that recurse is a very common Elixir idiom which is why I do it. I didn’t like it at first but I really like it now as it acts as general visual “glue” for all recursive functions.Ninigi
do_for recursive functions is something the core team has explicitly moved away from, on the base that it’s just lazy naming, and leads to move your core logic into a private function - which is like stuffing your mess into a closet, close the door and call the room “cleaned up”My opinion on this: if you can’t come up with a name for your recursive function other than
do_public_fun, then your logic should probably live in the public function.