![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.spark.linalg.NumericParser.scala Maven / Gradle / Ivy
/*
* Tencent is pleased to support the open source community by making Angel available.
*
* Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed 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
*
* https://opensource.org/licenses/Apache-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.linalg
import java.util.StringTokenizer
import org.apache.spark.SparkException
import scala.collection.mutable
import scala.collection.mutable.ListBuffer
/**
* Simple parser for a numeric structure consisting of three types:
*
* - number: a double in Java's floating number format
* - array: an array of numbers stored as `[v0,v1,...,vn]`
* - tuple: a list of numbers, arrays, or tuples stored as `(...)`
*/
object NumericParser {
/** Parses a string into a Double, an Array[Double], or a Seq[Any]. */
def parse(s: String): Any = {
val tokenizer = new StringTokenizer(s, "()[],", true)
if (tokenizer.hasMoreTokens()) {
val token = tokenizer.nextToken()
if (token == "(") {
parseTuple(tokenizer)
} else if (token == "[") {
parseArray(tokenizer)
} else {
// expecting a number
parseDouble(token)
}
} else {
throw new SparkException(s"Cannot find any token from the input string.")
}
}
private def parseArray(tokenizer: StringTokenizer): Array[Double] = {
val values = mutable.ArrayBuilder.make[Double]
var parsing = true
var allowComma = false
var token: String = null
while (parsing && tokenizer.hasMoreTokens()) {
token = tokenizer.nextToken()
if (token == "]") {
parsing = false
} else if (token == ",") {
if (allowComma) {
allowComma = false
} else {
throw new SparkException("Found a ',' at a wrong position.")
}
} else {
// expecting a number
values += parseDouble(token)
allowComma = true
}
}
if (parsing) {
throw new SparkException(s"An array must end with ']'.")
}
values.result()
}
private def parseTuple(tokenizer: StringTokenizer): Seq[_] = {
val items = ListBuffer.empty[Any]
var parsing = true
var allowComma = false
var token: String = null
while (parsing && tokenizer.hasMoreTokens()) {
token = tokenizer.nextToken()
if (token == "(") {
items.append(parseTuple(tokenizer))
allowComma = true
} else if (token == "[") {
items.append(parseArray(tokenizer))
allowComma = true
} else if (token == ",") {
if (allowComma) {
allowComma = false
} else {
throw new SparkException("Found a ',' at a wrong position.")
}
} else if (token == ")") {
parsing = false
} else if (token.trim.isEmpty) {
// ignore whitespaces between delim chars, e.g. ", ["
} else {
// expecting a number
items.append(parseDouble(token))
allowComma = true
}
}
if (parsing) {
throw new SparkException(s"A tuple must end with ')'.")
}
items
}
private def parseDouble(s: String): Double = {
try {
java.lang.Double.parseDouble(s)
} catch {
case e: NumberFormatException =>
throw new SparkException(s"Cannot parse a double from: $s", e)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy