aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorPrashant Sharma <prashant.s@imaginea.com>2014-09-16 09:21:03 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-09-16 09:21:03 -0700
commit7b8008f5a4d413b61aa88fbc60959e98e59f17dd (patch)
treed88caf62c6414c5356d1134f09e376c3cbf1ccfa /project
parent61e21fe7f478e7b06b72851f26b87d99cbbdf117 (diff)
downloadspark-7b8008f5a4d413b61aa88fbc60959e98e59f17dd.tar.gz
spark-7b8008f5a4d413b61aa88fbc60959e98e59f17dd.tar.bz2
spark-7b8008f5a4d413b61aa88fbc60959e98e59f17dd.zip
[SPARK-2182] Scalastyle rule blocking non ascii characters.
...erators. Author: Prashant Sharma <prashant.s@imaginea.com> Closes #2358 from ScrapCodes/scalastyle-unicode and squashes the following commits: 12a20f2 [Prashant Sharma] [SPARK-2182] Scalastyle rule blocking (non keyboard typeable) unicode operators.
Diffstat (limited to 'project')
-rw-r--r--project/spark-style/src/main/scala/org/apache/spark/scalastyle/NonASCIICharacterChecker.scala39
1 files changed, 39 insertions, 0 deletions
diff --git a/project/spark-style/src/main/scala/org/apache/spark/scalastyle/NonASCIICharacterChecker.scala b/project/spark-style/src/main/scala/org/apache/spark/scalastyle/NonASCIICharacterChecker.scala
new file mode 100644
index 0000000000..3d43c35299
--- /dev/null
+++ b/project/spark-style/src/main/scala/org/apache/spark/scalastyle/NonASCIICharacterChecker.scala
@@ -0,0 +1,39 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+package org.apache.spark.scalastyle
+
+import java.util.regex.Pattern
+
+import org.scalastyle.{PositionError, ScalariformChecker, ScalastyleError}
+
+import scalariform.lexer.Token
+import scalariform.parser.CompilationUnit
+
+class NonASCIICharacterChecker extends ScalariformChecker {
+ val errorKey: String = "non.ascii.character.disallowed"
+
+ override def verify(ast: CompilationUnit): List[ScalastyleError] = {
+ ast.tokens.filter(hasNonAsciiChars).map(x => PositionError(x.offset)).toList
+ }
+
+ private def hasNonAsciiChars(x: Token) =
+ x.rawText.trim.nonEmpty && !Pattern.compile( """\p{ASCII}+""", Pattern.DOTALL)
+ .matcher(x.text.trim).matches()
+
+}