You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Marco Gaido (JIRA)" <ji...@apache.org> on 2018/08/13 09:59:00 UTC

[jira] [Commented] (SPARK-25093) CodeFormatter could avoid creating regex object again and again

    [ https://issues.apache.org/jira/browse/SPARK-25093?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16578038#comment-16578038 ] 

Marco Gaido commented on SPARK-25093:
-------------------------------------

I just marked this as a minor priority ticket, anyway I agree with the proposed improvement. Are you submitting a PR for it? Thanks.

> CodeFormatter could avoid creating regex object again and again
> ---------------------------------------------------------------
>
>                 Key: SPARK-25093
>                 URL: https://issues.apache.org/jira/browse/SPARK-25093
>             Project: Spark
>          Issue Type: Improvement
>          Components: Spark Core
>    Affects Versions: 2.4.0
>            Reporter: Izek Greenfield
>            Priority: Minor
>
> in class `CodeFormatter` 
> method: `stripExtraNewLinesAndComments`
> could be refactored to: 
> {code:scala}
> // Some comments here
>  val commentReg =
>     ("""([ |\t]*?\/\*[\s|\S]*?\*\/[ |\t]*?)|""" +    // strip /*comment*/
>       """([ |\t]*?\/\/[\s\S]*?\n)""").r              // strip //comment
>   val emptyRowsReg = """\n\s*\n""".r
> def stripExtraNewLinesAndComments(input: String): String = {
>     val codeWithoutComment = commentReg.replaceAllIn(input, "")
>     emptyRowsReg.replaceAllIn(codeWithoutComment, "\n") // strip ExtraNewLines
>   }
> {code}
> so the Regex would be compiled only once.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org