Skip to content

Get the name of an variable, class member, or type as a string--at compile-time!

License

Notifications You must be signed in to change notification settings

testwhat/scala-nameof

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

"nameOf" macro for scala

Get the name of an variable, class member, or type as a string--at compile-time!

Inspired by the nameof operator in C#

Used to obtain the simple (unqualified) string name of a variable, type, or member. When reporting errors in code, hooking up model-view-controller (MVC) links, firing property changed events, etc., you often want to capture the string name of a method. Using nameof helps keep your code valid when renaming definitions. Before you had to use string literals to refer to definitions, which is brittle when renaming code elements because tools do not know to check these string literals.

Usage

Add the library as "provided", because it's only needed during compilation and not at runtime:

libraryDependencies += "com.github.dwickern" %% "scala-nameof" % "1.0" % "provided"

Now you can use nameOf to get the name of a variable or class member:

  import com.github.dwickern.macros.NameOf._

  case class Person(name: String, age: Int)

  def toMap(person: Person) = Map(
    nameOf(person.name) -> person.name,
    nameOf(person.age) -> person.age
  )

  // compiles to:

  def toMap(person: Person) = Map(
    "name" -> person.name,
    "age" -> person.age
  )

To get the name of a function:

  import com.github.dwickern.macros.NameOf._

  def startCalculation(value: Int): Unit = {
    println(s"Entered ${nameOf(startCalculation _)}")
  }

  // compiles to:

  def startCalculation(value: Int): Unit = {
    println(s"Entered startCalculation")
  }

Without having an instance of the type:

  import com.github.dwickern.macros.NameOf._

  case class Person(name: String, age: Int)

  println(nameOf[Person](_.age))

  // compiles to:

  println("age")

You can also use nameOfType to get the unqualified name of a type:

  import com.github.dwickern.macros.NameOf._

  println(nameOf[java.lang.String])

  // compiles to:

  println("String")

Development

To run tests for all compilation targets:

sbt +test

To publish to your local ivy repository:

sbt +publishLocal

To publish to maven central:

sbt +publishSigned

License

See LICENSE (MIT).

About

Get the name of an variable, class member, or type as a string--at compile-time!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Scala 100.0%