Allow pre and post-conditions in defprotocol and deftype macros
Description
Environment
Dos not matter.
Activity

Michael Drogalis January 7, 2013 at 11:28 PM
@Alexander Indeed, your points are correct. Dire is meant to be exactly what you described. Lexically removed from application logic, and opportunity to recover from crashing. That was my best shot at aiding your needs quickly, anyway.

Alexander Kiel January 7, 2013 at 5:52 PM
@Michael I read your gist and the README of Dire. I think the supervision concept of Erlang has it's places but I don't like it for pre- and post-conditions. For me, such conditions have two proposes:
they should document the code and
they should fail fast to detect failures early.
To support my first point, your pre- and post-conditions are just lexical too far away from the actual function definition. For the second point: I think in the case of violations the program should just crash. One could maybe wrap some part of the program with one of your exception supervisors handling an AssertionError. But I don't think that handling pre- and post-condition violations for individual functions is a good thing.

Michael Drogalis January 7, 2013 at 12:22 AM
Using re
and ost
, IMO, isn't a good idea. Handling assertions is a two part game. The mechanism needs to account for both detection and reaction, and the latter is missing.
This isn't a perfect work-around, as it's a little verbose, but using Dire might work better than using extend. In addition, you get the "reaction" functionality that's missing from re
and ost
Example for protocol preconditions: https://gist.github.com/4471276
Details
Assignee
UnassignedUnassignedReporter
Alexander KielAlexander KielPriority
MinorAffects versions
Details
Details
Assignee
Reporter

The fn special form and the defn macro allow pre- and post-conditions. It would be nice if one could use that conditions also in method declarations of the defprotocol and deftype macro.
Currently I use the extend function as workaround where one can specify the methods using a map of keyword-name and fn special form.