Uploaded image for project: 'Groovy'
  1. Groovy
  2. GROOVY-8301

break/return/continue support in "Appended Block Closures"

    XMLWordPrintableJSON

Details

    Description

      This proposal revisits the idea to change the semantics of the break, return, and continue keyword for closures that are used in a way that mimics Java block constructs such as if, for, or while.

      Example 1:

      // Iterate over all PERSON rows in the result set
      sqe.forEachRow("select * from PERSON") { final row ->
        if(row.TAG == 0) { break } // Leave forEachRow loop
        if(row.TAG == 1) { return } // return from the method enclosing the forEachRow loop
        if(row.TAG == 2) { continue } // Move to next iteration in the forEachRow loop
      }
      

      Example 2:

      // Encapsulate with statically imported helper method that catches exceptions and ignores them, if the passed parameter is true
      execWithOptionalIgnoreErrors(ignoreErrorsQ) {
        final x = dangerousOperation() 
        if(x == 1) { return } // return from the enclosing method
        // Note: break & continue are not allowed here
      }
      

      Support for continue can trivially be mapped to a return statement inside the closure, so what one needs to look at is how to support leaving the iteration ("break" semantics) and returning from the enclosing method ("return" semantics). With current Groovy closures there are two known potential approaches to achieve this behavior:

      1. Use try-catch to simulate a non-local goto to "jump" to the right spot.
      2. Use special return values that indicate whether to break or return.
        • This evidently works for all cases which have no return value (e.g. forEach)
        • For all other cases one could make the closure return an Object, which would again allow to discern regular return values from break/return-semantics return values, if specific classes (e.g. GroovyClosureBreak) are returned
          • Since casting is required in this case, as small overhead is again incurred
        • A big drawback is that for both cases for "return" semantics all surrounding methods would need to have / made to have Object as return type.
        • This approach could be used to supply "continue" and "break" semantics only.
          • Note that having more than one return in a method is also often considered bad style, so one could argue that "continue" and "break" semantics are the more important of the three to support.

      A different approach would be to introduce "inline closures" to Groovy. These closures would effectively be treated as inline block constructs, the same as they already exist for e.g. regular for loops. This feature would make contine/break/return support for "closures" trivial, since the keywords would just automatically work as expected if the closure code is inlined.

      • This approach is used e.g. by the Kotlin programming language https://kotlinlang.org/docs/reference/inline-functions.html
      • Kotlin uses a seperate "inline" keyword for this. I feel like supplying an annotatio in Groovy to indicate inlining would be the more Groovy/flexible (can be combined with other annotations) approach (Kotlin to me generally seems to suffer from an overabundance of keywords)
      • Allowing inlining is also a feature that could also be applied for general methods.
      • Leaving implementation effort aside, this approach to me looks like the best way forward, it
        1. never breaks
        2. never incurs any performance overhead
        3. is elegant
        4. potentially can be used for applications that go beyond the topic of this issue
      • Note: The general version of this feature has already been suggested in GROOVY-6880 with regards to performance improvements. I agree that potential performance improvements are not a strong enough argument to introduce this, automatic break/contine/return support for inlined closures to me is.

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              emge mgroovy
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated: