Expose installed middlewares via some mechanism
Description
Environment
Activity
Alex Miller June 26, 2019 at 3:52 AM
All nrepl tickets closed, now managed at https://github.com/nrepl/nrepl
Laurent PETIT May 15, 2015 at 10:32 PM
I agree that middlewares should be able to participate, and that it should be declarative.
Short of having special semantics for reporting middlewares instead of ops, what I did for `cider-nrepl` is to declare a dummy op named `pprint-middleware`, even though currently there's no pprint dedicated op.
Chas Emerick May 10, 2015 at 5:48 PM
I've thought about this a bit. I would like to avoid exposing transient implementation details (e.g. the namespace/var name of particular middlewares) to clients like this. Doing so just makes it easy for complications to occur later (e.g. what happens when that name changes due to a project reorg, or when there's N pprint middlewares, rather than just one?).
I think it's reasonable to expect middlewares to participate in the reporting of available operations in the describe
response. Even things like a pprint middleware should offer an operation or two to toggle whether or not it's active. I'd be interested in any counterexamples to this general expectation…?
Laurent PETIT May 7, 2015 at 10:23 AM
Hi Chas, do you have ideas on how to expose middlewares?
Should it be through a new op, mimicking what `describe` does, but for installed middlewares?
Should it leverage the existing `describe` middleware but with an additional (backwards-compatible) key (e.g. key = "type" value = "op" or "middleware") ?
Details
Assignee
Chas EmerickChas EmerickReporter
Laurent PETITLaurent PETITPriority
Major
Details
Details
Assignee
Reporter
Priority

Currently nREPL clients can identify available ops by calling the `describe` op.
But there's no way to identify which `middlewares` are available.
This is a problem for instance for `cider-nrepl` `pprint` middleware which does not define any op, but rather just enhances the return value for the `eval` op.
It would be great if nREPL could be enhanced so that it provides a way to discover which middlewares are installed.