wojtekmach
Hex Core Team
Hi everyone,
I created a library to work with calendar intervals:
- GitHub - wojtekmach/calendar_interval: Functions for working with calendar intervals · GitHub
- calendar_interval | Hex
Key ideas:
- Time is enumerable: “2018” is a collection of “2018-01/2018-12” months, “2018-01-01/2018-12-31” days etc
- Everything is an interval: “2018” is an interval of 1 year, or 12 months, or 365 days etc.
A timestamp with microsecond precision is an interval 1 microsecond long - Allen’s Interval Algebra: formalism for relations between time intervals
Examples
use CalendarInterval
iex> ~I"2018-06".precision
:month
iex> CalendarInterval.next(~I"2018-12-31")
~I"2019-01-01"
iex> CalendarInterval.nest(~I"2018-06-15", :minute)
~I"2018-06-15 00:00/23:59"
iex> CalendarInterval.relation(~I"2018-01", ~I"2018-02/12")
:meets
iex> Enum.count(~I"2016-01-01/12-31")
366
References
This library is heavily inspired by “Exploring Time” talk by Eric Evans [1] where he mentioned the concept of “Countable Time” and introduced me to “Allen’s Interval Algebra” [2].
- [1] https://www.youtube.com/watch?v=Zm95cYAtAa8
- [2] https://www.ics.uci.edu/~alspaugh/cls/shr/allen.html
I’ve also given a talk about some of these ideas at Empex NYC 2018: video, slides.
Feedback is very appreciated here or in the issue tracker.
Happy hacking!
Trending in Announcing
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi all!
I want to present a small library which provides a mix task for generating an Entity-Relationship Diagram for Ecto schemas.
You...
New
Hello
Published a new library - ProcessHub!
ProcessHub is a library designed to manage process distribution within the Elixir cluster. ...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
This showed up on my feed.. anyone heard of it? Just hype?
Ox Alpha is a reasoning model designed for coding, sustained ag...
New
It’s not that it’s vocabulary is too advanced. It’s something worse.
I get lost trying to follow even a paragraph written by Claude. It’...
New
Today we’re releasing Oban for Python. Not an Oban client in Python. Not a pythonx wrapper embedded in Elixir. Nope, it’s a fully operati...
New
@hugobarauna, Dr. Dimitrios Koutmos (my brother) and I (Alex Koutmos) have been hard at work on writing a book on how you can use Elixir ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
OvermindDL1
Well this looks quite cool! Does it have an associated Ecto type for PostgreSQL datetime/date/time ranges? I’m using a lot of fragments for that currently and this whole style would fit really well.
wojtekmach
Thanks!
Btw, I probably should have emphasised this more, to get background for all this, folks should really watch https://www.youtube.com/watch?v=Zm95cYAtAa8. I think Eric described very well the problems he was trying to solve with this approach; I cannot recommend this enough.
No and no concrete plans for this at the moment, but yes I do eventually want to support it.
There are at least two things that would need to happen first to support that:
In Postgres, ranges may have inclusive (e.g.
[1, 10]) or exclusive (e.g.:[1, 10)) bounds. This intervals implementation follows Elixir ranges and is always inclusive, but I can see how exclusive ranges can be useful too. I believe ISO 8601 intervals are always inclusive but I’d have to double-check the spec.Worth mentioning that both Postgrex’s and Timex’s intervals support inclusive and exclusive bounds.
While date and datetime intervals are supported by design, time (without date) intervals are not. It is a bit tricky, because currently the underlying interval structs holds:
first :: NaiveDateTime.t, last :: NaiveDateTime.t, precision: :year | :month | ..., so it can’t represent time. (I really don’t want to shoehorn it in into the same struct.)I’ve been actually thinking a lot about this recently, and I think I could define a protocol and have implementations for
CalendarInterval.NaiveDateTimeIntervalandCalendarInterval.TimeIntervalstructs. That would be one way to support DateTime intervals, which I also want to eventually have, too.I really like the
~Isigil and on one hand I’d like to have just that, but on the other hand I’m not yet sure how I feel about~I"2019"representing one struct, but, say,~I"T09:00/17:00"a completely different struct.Last but not least, as far as I could tell, ISO 8601 does not specify time (without date) intervals but that’s not necessarily a reason not to have them, I think they’d be quite useful.
OvermindDL1
Is there a text version? I rarely am in a place where I can watch videos. ^.^;
Wooo.
Hmm, just having inclusive without exclusive is a bit painful at times, causes more checks have to be performed on occasion…
Honestly I’d think there should be separate structs for each datetime, date, and time. They cover different ranges and concepts.
Could always force a trailing modifier to distinguish, that way you know at the call site what it is (and things like include/exclude first/last bounds)? Or put it in the string somewhere.
+1
wojtekmach
Sorry, no idea.
Yeah, notice I added a leading “T” in
But yeah, one sigil for different structs is probably the way to go, thanks for validating this.
~I"T09:00", maybe it’s a bit hard to seeSpeaking of one sigil, there’s a sister library for this: GitHub - wojtekmach/calendar_recurrence: Recurrence is an Elixir library for working with recurring dates · GitHub. It’s even less stable so I’m not yet announcing it. Since RRULE-style recurring intervals are part of new ISO 8601 draft, we could use the sigil for yet another struct (that implements the protocol!):
~I"R3/2019-01-01/FREQ=DA;INTR=2"(every other day since 2019-01-01, total 3 dates). Maybe it’s complicating things too much though so that’s why I started with separate libraries, but yeah, that’s another thing I’m thinking about.thojanssens1
Hi. Thank you for this library!
I have watched the video, and it seems that Eric talks about intervals (among other concepts) as a possible general way to work with time. I.e. as an alternative to NaiveDateTime, DateTime, and so on.
But this library’s purpose is only to work with intervals, and includes some ideas shown by Eric for working with them, right?
Second question, how do I get for example a
Date.Rangefrom an interval such as~I"2018-01"? Or aDatefrom the first element of the interval~I"2018-01"?More generally, if I work with such intervals, at some point you have to work with Ecto or other components of the application, and you want Elixir types; or am I wrong?
wojtekmach
My takeaway from Eric Evans’ work is a time instant and a time interval are one and the same so in that vein the library does work as a potential (definitely incomplete :)) replacement for a general Date/NaiveDateTime manipulation library (there’s no support for Time and DateTime yet), we have things that are not directly related to ranges like:
Agreed.