Thanks, good to know these use cases. The way you describe it, it looks like these would work in the new system. The whole point of exposing Tasty trees is to allow decompositions like the ones you describe.
Hi folks new poster here! just to let you know we (me+NEU/CTU folks) are working on a large-scale analysis of macro usage for exactly this purpose. The idea is to look at how macros (of all kinds) are used in the wild and generate some use cases so we can have an informed decision of how many constructs would be supported by a transition. It seems there is some interest in this already so it would be interesting to hear your thoughts if you haven’t posted already!
Hi there!
We use macros in couple projects:
It allows getting handy and efficient JSON/binary serialization. Here are code and results of benchmarks which compares (in some custom domain) both of them with the best Scala/Java serializers that have binding to Scala case classes and collections:
The most interesting feature that we are waiting for is opaque types (SIP-35) that would be work properly with macros. It would allow us to avoid using annotations (like @named, @stringified, etc.) for case class fields to tune representation properties or binding.
Instead, we want to use some configuration functions for macro calls which will override defaults without touching sources of data structures, like some of these configuration functions:
But instead of strings, they should have some type parameter(s) like it is modeled here:
Kotlin now has a ticket on this and looks like they are working towards it:
https://youtrack.jetbrains.net/issue/KT-25128
It would be great for scala to also support creating and consuming API jars (or any API description), which would enable much better interop with buck, bazel, pants and similar tools.
In AVSystem commons library we’re using macros for:
- materialization of
GenCodec
instances - classic typeclass derivation for ADTs - standalone sealed hierarchy inspection -
SealedUtils
, also used for enums, e.g.SealedEnumCompanion
-
compile time reflection of interfaces and proxy materialization in
RPCFramework
- this is the base for RPC and REST subsystems of Udash Framework
The last use case is the one that doesn’t seem to have gotten enough love so far in all the macro discussions and it would be a serious blow for us if it wasn’t supported in Scala 3.
Also, our macro engines rely heavily on annotation processing, i.e. accessing annotations of inspected types, classes, methods, parameters, etc which influence how code is generated.
When using macros, we also try to follow these principles where possible:
- use only blackbox macros
- avoid implicit macros, especially the ones that generate a lot of code
- avoid arbitrarily deep type inspection (e.g. only inspect the shallow structure of case class, don’t go into fields) - this means e.g. lack of fully recursive typeclass derivation
- in order to avoid problems with incremental compilation, macros that inspect types should only be invoked in the same compilation unit where inspected types are defined (e.g. in companion object of inspected class)
I agree with you.
I think it would be great if Scala 3 has ability to do it with black box macros.
May be It can be done with something like:
Pre-SIP: export, dual* of import
@RpcProxy
class SomeThingProxy extend SomeThing{
//Generate empty method for black box macros.
export SomeThing
}
There is a new proposal for typelevel programming on the table, which is intended as a safer alternative for whitebox macros.
In a nutshell:
-
If you need to create new types and see these types in the same compilation run, transparent functions are the mechanism to use.
-
If you need to create new data and types for usage in a downstream projects, you can use principled meta programming and Tasty reflection.
I like the new transparent
mechanism quite a lot, and can see its power. The only thing that seems to be missing, offhand, is something equivalent to Generic
and LabelledGeneric
– a way to convert between the various sorts of strongly-typed products. Are there plans to add a mechanism for that?
Wouldn’t the new breed of macro annotations (which generate code that becomes visible in dependent projects) fulfill this use case?
Quite possibly, but I’m concerned that it may make applications structurally messy. Or possibly I’m misunderstanding how these macro annotations would come into play.
I guess the question is, if I am writing an application that is depending New Circe (however that works in the new world), can I do my serialization without having to break things down into multiple projects? I don’t mind things getting a little complex for libraries; I’m more concerned if that’s the case for routine applications.
That’s really the use case that I’d like to see fully-worked in the new world – my observation is that many problems seem to be Circe-complete. (That is, they turn out to want essentially the same machinery as Circe.) So if a consumer of New Circe could operate with reasonably minimal boilerplate, I’ll believe that many use cases are solved. But so far, I don’t quite grok how that would work in the new environment.
No. Generics are currently generated on the fly for any case class and are available in the same project where case class is defined. Limiting them only to dependent projects would kill the entire ecosystem of typeclass derivation…
In that case, I think we would need one standard Generic
-like instance generated by the Scala compiler for each case class, so that libraries like circe can leverage it via implicits. And transparent methods could simplify this process (reducing the amount of implicit definitions needed). Additionally, it would be really cool if transparent methods and/or implicits could be cached somehow, so we don’t end up generating as much duplicated code as today.
I think we would need one standard Generic-like instance generated by the Scala compiler for each case class
I’d rather that we retain a generic way to do compile-time reflection and surfacing that information in generated code - terms or types, rather than blessing one compiler-baked Generic
implementation. Many projects rely on the ability to do their own compile-time and runtime reflection, such as beanpuree - https://github.com/limansky/beanpuree/blob/master/README.md - that inspects Java classes, not Scala classes, and as such can’t be served by scala-specific Generic
, jsoniter - https://github.com/plokhotnyuk/jsoniter-scala - that relies on compile-time reflection and macros to generate very efficient low-level JSON parsing code, distage - https://github.com/pshirshov/izumi-r2 - our own project, hybrid runtime and compile-time dependency injection framework that crucially relies on TypeTags - but we’re also generating custom type tags for higher-kinded types - https://github.com/pshirshov/izumi-r2/blob/develop/distage/distage-model/src/main/scala/com/github/pshirshov/izumi/distage/model/reflection/universe/WithDITypeTags.scala
Additionally, it would be really cool if transparent methods and/or implicits could be cached somehow, so we don’t end up generating as much duplicated code as today.
Implicits cannot be cached because they’re not coherent and not pure. Transparent methods are all that + dependent on call site scope.
We plan to put typeclass derivation in the language, by adding a scheme where typeclasses can be defined automatically for case class hierarchies. What transparent functions give us in this respect is that we can have a simple fold-based derivation mechanism and still get the full power of Generic
and LabelledGeneric
. At least I hope so - we still have to try that out.
How to minimize def mImpl(x: Expr[T])
invocation?
If I understand correctly in the case:
transparent def m(x: T) = ~mImpl('x)
...
def mImpl(x: Expr[T]) = ...
The mImpl
will be called in every usage of method m
:
val m1 = m(1) //first call mImpl
val m2 = m(2) //second call mImpl
It can be very expensive.
Is it posible mImpl('x)
to be called only in class definition?
transparent trait Factory(val a:T){
transparent def apply(x: T) = ~mImpl('x,'a)
}
object Factory extends Factory("type")
At compile time it transforms
object Factory extends Factory("type"){
transparent def apply(x: T) = x match {
case 0 => ...
case _ => ...
}
}
-compilation time
-code size
If we had 4 000 000 lines of code, and 10000 custom generated types it would be very important
(These are real numbers from one of our projects)
@AMatveev It seems that something like what you’re asking for (run a macro once per class) could be achieved by typeclass derivation. But a macro like transparent def apply(x: T)
is too powerful to be optimized like you ask: it must be expanded at each invocation (just like with current macros) because it can generate different code for each x
.
I know, but I was asking about the difference between transparent
and Scala 2 macros in this regard, which seems to be “none”.
It will be great. We use code generation at this time.
It has disadvantages. But I can not see any simple alternative.
I’m not sure how relevant this thread is anymore, but one more note:
I recently started to play with quill which is an awesome lib for DB access. It relies on quoted dsl to construct sql queries during compilation. I believe it won’t be possible without the whitebox macros. It would be very sad if such libs won’t be possible in scala 3.
Excuse me if it was discussed before, but I could find neither quill
nor quoted DSL
in this thread.