Skip to content

Commit 83f2653

Browse files
authored
Merge pull request #1 from delphi-hub/develop
Update to 0.9.1
2 parents a9e80b1 + 7e3435c commit 83f2653

File tree

11 files changed

+142
-11
lines changed

11 files changed

+142
-11
lines changed

.travis.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
language: scala
22
scala:
3-
- 2.12.4
3+
- 2.12.10
4+
- 2.13.1
45
script:
56
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then sbt ++$TRAVIS_SCALA_VERSION test; fi'
6-
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION coverage test coverageReport coverageAggregate codacyCoverage; fi'
7+
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION test; fi'
8+
# - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION coverage test coverageReport coverageAggregate codacyCoverage; fi'
79
after_success:
8-
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash <(curl -s https://codecov.io/bash); fi'
10+
# - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash <(curl -s https://codecov.io/bash); fi'

build.sbt

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ThisBuild / publishTo := {
2929
}
3030
ThisBuild / publishMavenStyle := true
3131

32-
ThisBuild / version := "0.9.0"
32+
ThisBuild / version := "0.9.1"
3333

3434
lazy val scala212 = "2.12.10"
3535
lazy val scala213 = "2.13.1"
@@ -38,8 +38,6 @@ lazy val supportedScalaVersions = List(scala212, scala213)
3838
ThisBuild / scalaVersion := scala213
3939

4040

41-
useGpg := true
42-
4341
lazy val root = (project in file("."))
4442
.settings (
4543
crossScalaVersions := Nil,

client/build.sbt

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name := "delphi-client"
22

3-
libraryDependencies += "io.spray" %% "spray-json" % "1.3.5"
43
libraryDependencies += "joda-time" % "joda-time" % "2.10.5"
54

5+
6+
libraryDependencies ++= Seq(
7+
"com.softwaremill.sttp" %% "core" % "1.7.2",
8+
"com.softwaremill.sttp" %% "spray-json" % "1.7.2"
9+
)
10+
611
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % "test"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package de.upb.cs.swt.delphi.client
2+
3+
import com.softwaremill.sttp._
4+
import com.softwaremill.sttp.sprayJson._
5+
import spray.json._
6+
7+
import scala.util.Try
8+
import de.upb.cs.swt.delphi.core.model.Artifact
9+
import de.upb.cs.swt.delphi.client.QueryJson._
10+
11+
abstract class DelphiClient(baseUri : String) {
12+
def search(query : Query, prettyPrint : Boolean = false) : Try[Seq[SearchResult]]
13+
/* = {
14+
val queryParams = prettyPrint match {
15+
case true => Map("pretty" -> "")
16+
case false => Map()
17+
}
18+
val searchUri = uri"${baseUri}/search?$queryParams"
19+
20+
val request = sttp.body(query.toJson).post(searchUri)
21+
22+
//val (res, time) = processRequest(request)
23+
//res.foreach(processResults(_, time))
24+
}*/
25+
26+
def features() : Try[Seq[FieldDefinition]]
27+
28+
def retrieve(identifier : String) : Try[Artifact]
29+
30+
def version() : Try[String]
31+
32+
def statistics() : Try[Statistics]
33+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Copyright (C) 2018 The Delphi Team.
2+
// See the LICENCE file distributed with this work for additional
3+
// information regarding copyright ownership.
4+
//
5+
// Licensed under the Apache License, Version 2.0 (the "License");
6+
// you may not use this file except in compliance with the License.
7+
// You may obtain a copy of the License at
8+
//
9+
// http://www.apache.org/licenses/LICENSE-2.0
10+
//
11+
// Unless required by applicable law or agreed to in writing, software
12+
// distributed under the License is distributed on an "AS IS" BASIS,
13+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
// See the License for the specific language governing permissions and
15+
// limitations under the License.
16+
17+
package de.upb.cs.swt.delphi.client
18+
19+
import spray.json.DefaultJsonProtocol
20+
21+
case class FieldDefinition(name : String, description : String)
22+
23+
object FieldDefinitionJson extends DefaultJsonProtocol {
24+
implicit val transform = jsonFormat2(FieldDefinition)
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package de.upb.cs.swt.delphi.client
2+
3+
import spray.json.DefaultJsonProtocol
4+
5+
case class Query(query : String, limit : Option[Int] = Some(50))
6+
7+
object QueryJson extends DefaultJsonProtocol {
8+
implicit val queryRequestFormat = jsonFormat2(Query)
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package de.upb.cs.swt.delphi.client
2+
3+
case class Statistics(total : Long, hermesEnabled : Long)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package de.upb.cs.swt.delphi.client
2+
3+
import spray.json.DefaultJsonProtocol
4+
5+
object StatisticsJson extends DefaultJsonProtocol {
6+
implicit val statisticsFormat = jsonFormat2(Statistics)
7+
}

core/src/main/scala/de/upb/cs/swt/delphi/core/ql/Syntax.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ class Syntax(val input : ParserInput) extends Parser {
6767
def IsTrue = rule { FieldReferenceRule ~> IsTrueExpr }
6868

6969
// Literals
70-
def FieldReferenceRule = rule { "[" ~ capture(oneOrMore(CharPredicate.AlphaNum ++ '-' ++ ' ' ++ '_' ++ '(' ++ ':' ++')')) ~ "]" ~> FieldReference }
70+
def FieldReferenceRule = rule { "[" ~ capture(oneOrMore(CharPredicate.AlphaNum ++ '.' ++ '-' ++ ' ' ++ '_' ++ '(' ++ ':' ++')')) ~ "]" ~> FieldReference }
7171

7272
def IntegerLiteral = rule { capture(oneOrMore(CharPredicate.Digit)) }
73-
def StringLiteral = rule { '"' ~ capture(oneOrMore(CharPredicate.AlphaNum)) ~ '"'}
73+
def StringLiteral = rule { '"' ~ capture(oneOrMore(CharPredicate.Printable -- '"' )) ~ '"'}
7474

7575
def Literal = rule { (IntegerLiteral | StringLiteral ) ~> (_.toString) }
7676

core/src/test/scala/de/upb/cs/swt/delphi/core/SyntaxTest.scala

+22-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
package de.upb.cs.swt.delphi.core
1818

19-
import de.upb.cs.swt.delphi.core.ql.Syntax
19+
import de.upb.cs.swt.delphi.core.ql._
20+
import org.parboiled2.ParseError
2021
import org.scalatest.{FlatSpec, Matchers}
2122

2223
import scala.util.{Failure, Success}
@@ -166,7 +167,7 @@ class SyntaxTest extends FlatSpec with Matchers {
166167

167168
"Syntax.notConditionComplex" should "be valid" in {
168169
val parseResult = new Syntax("!!([Filter1])&&!([Filter2]<=0||!([Filter3]&&![Filter4]%\"abc\"))").QueryRule.run()
169-
parseResult shouldBe a [Success[_]]
170+
parseResult shouldBe a[Success[_]]
170171
parseResult match {
171172
case Success(ast) => {
172173
ast.toString shouldEqual "AndExpr(NotExpr(NotExpr(IsTrueExpr(FieldReference(Filter1))))," +
@@ -175,4 +176,23 @@ class SyntaxTest extends FlatSpec with Matchers {
175176
}
176177
}
177178
}
179+
180+
"Complex query" should "be valid" in {
181+
val parser = new Syntax("[metrics.classversion.9] > 0 && [metrics.classversion.8] = 0 && [maven.groupId] = \"com.github.xmlet\"")
182+
val parseResult = parser.QueryRule.run()
183+
parseResult match {
184+
case Success(ast) => {
185+
ast shouldEqual
186+
AndExpr(
187+
AndExpr(
188+
GreaterThanExpr(FieldReference("metrics.classversion.9"),"0"),
189+
EqualExpr(FieldReference("metrics.classversion.8"),"0")),
190+
EqualExpr(FieldReference("maven.groupId"),"com.github.xmlet"))
191+
}
192+
case Failure(exception : ParseError) => {
193+
fail(parser.formatError(exception))
194+
}
195+
case _ => fail()
196+
}
197+
}
178198
}

project/plugins.sbt

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// Copyright (C) 2019 The Delphi Team.
2+
// See the LICENCE file distributed with this work for additional
3+
// information regarding copyright ownership.
4+
//
5+
// Licensed under the Apache License, Version 2.0 (the "License");
6+
// you may not use this file except in compliance with the License.
7+
// You may obtain a copy of the License at
8+
//
9+
// http://www.apache.org/licenses/LICENSE-2.0
10+
//
11+
// Unless required by applicable law or agreed to in writing, software
12+
// distributed under the License is distributed on an "AS IS" BASIS,
13+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
// See the License for the specific language governing permissions and
15+
// limitations under the License.
16+
17+
// build management and packaging
18+
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")
19+
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.5.1")
20+
21+
// coverage
22+
//addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1")
23+
//addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "3.0.3")
24+
25+
// preparation for dependency checking
26+
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.1")
27+
28+
// scalastyle
29+
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")

0 commit comments

Comments
 (0)