-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
483 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
jsurfer-benchmark/src/main/java/org/jsfr/json/BenchmarkCollectObject.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* | ||
* The MIT License | ||
* | ||
* Copyright (c) 2015 WANG Lingsong | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
|
||
package org.jsfr.json; | ||
|
||
import com.google.common.io.Resources; | ||
import org.openjdk.jmh.annotations.Benchmark; | ||
import org.openjdk.jmh.annotations.Fork; | ||
import org.openjdk.jmh.annotations.Measurement; | ||
import org.openjdk.jmh.annotations.Scope; | ||
import org.openjdk.jmh.annotations.Setup; | ||
import org.openjdk.jmh.annotations.State; | ||
import org.openjdk.jmh.annotations.Threads; | ||
import org.openjdk.jmh.annotations.Warmup; | ||
import org.openjdk.jmh.infra.Blackhole; | ||
import org.openjdk.jmh.runner.Runner; | ||
import org.openjdk.jmh.runner.RunnerException; | ||
import org.openjdk.jmh.runner.options.Options; | ||
import org.openjdk.jmh.runner.options.OptionsBuilder; | ||
|
||
import java.nio.charset.StandardCharsets; | ||
import java.util.Map; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
@Warmup(iterations = 10, time = 1, timeUnit = TimeUnit.SECONDS) | ||
@Measurement(iterations = 10, time = 1, timeUnit = TimeUnit.SECONDS) | ||
@Threads(1) | ||
@Fork(1) | ||
@State(Scope.Benchmark) | ||
public class BenchmarkCollectObject { | ||
|
||
private JsonSurfer gsonSurfer; | ||
private JsonSurfer jacksonSurfer; | ||
private JsonSurfer simpleSurfer; | ||
private SurfingConfiguration surfingConfiguration; | ||
private String json; | ||
|
||
@Setup | ||
public void setup() throws Exception { | ||
gsonSurfer = JsonSurfer.gson(); | ||
jacksonSurfer = JsonSurfer.jackson(); | ||
simpleSurfer = JsonSurfer.simple(); | ||
TypedJsonPathListener collectOneListener = new TypedJsonPathListener() { | ||
|
||
private Blackhole blackhole = new Blackhole(); | ||
|
||
@Override | ||
public void onTypedValue(Object value, ParsingContext context) throws Exception { | ||
blackhole.consume(value); | ||
} | ||
}; | ||
surfingConfiguration = SurfingConfiguration.builder().bind("$.store.book[*]", Map.class, collectOneListener).build(); | ||
json = Resources.toString(Resources.getResource("sample.json"), StandardCharsets.UTF_8); | ||
} | ||
|
||
|
||
@Benchmark | ||
public boolean benchmarkGsonWithJsonSurfer() { | ||
gsonSurfer.surf(json, surfingConfiguration); | ||
return true; | ||
} | ||
|
||
@Benchmark | ||
public boolean benchmarkJacksonWithJsonSurfer() { | ||
jacksonSurfer.surf(json, surfingConfiguration); | ||
return true; | ||
} | ||
|
||
@Benchmark | ||
public boolean benchmarkJsonSimpleWithJsonSurfer() { | ||
simpleSurfer.surf(json, surfingConfiguration); | ||
return true; | ||
} | ||
|
||
public static void main(String[] args) throws RunnerException { | ||
Options opt = new OptionsBuilder() | ||
.include(BenchmarkCollectObject.class.getSimpleName()) | ||
// .addProfiler(FlightRecordingProfiler.class) | ||
.build(); | ||
new Runner(opt).run(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 0 additions & 39 deletions
39
jsurfer-core/src/main/java/org/jsfr/json/BuilderFactory.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.