-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support to read abnf from stream
- Loading branch information
1 parent
32a195e
commit 23c5adb
Showing
8 changed files
with
599 additions
and
390 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
46 changes: 46 additions & 0 deletions
46
.../io/github/sebastiantoepfer/jsonschema/vocabulary/format/assertion/abnf/reader/ABNFs.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,46 @@ | ||
/* | ||
* The MIT License | ||
* | ||
* Copyright 2023 sebastian. | ||
* | ||
* 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 io.github.sebastiantoepfer.jsonschema.vocabulary.format.assertion.abnf.reader; | ||
|
||
import java.io.InputStream; | ||
import java.io.InputStreamReader; | ||
import java.io.Reader; | ||
import java.nio.charset.Charset; | ||
|
||
public final class ABNFs { | ||
|
||
public static ABNF of(final CharSequence sequence) { | ||
return TextABNF.of(sequence); | ||
} | ||
|
||
public static ABNF of(final InputStream is, final Charset cs) { | ||
return of(new InputStreamReader(is, cs)); | ||
} | ||
|
||
public static ABNF of(final Reader input) { | ||
return StreambasedABNF.of(input); | ||
} | ||
|
||
private ABNFs() {} | ||
} |
70 changes: 70 additions & 0 deletions
70
.../sebastiantoepfer/jsonschema/vocabulary/format/assertion/abnf/reader/StreambasedABNF.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,70 @@ | ||
/* | ||
* The MIT License | ||
* | ||
* Copyright 2023 sebastian. | ||
* | ||
* 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 io.github.sebastiantoepfer.jsonschema.vocabulary.format.assertion.abnf.reader; | ||
|
||
import io.github.sebastiantoepfer.jsonschema.vocabulary.format.assertion.abnf.RuleList; | ||
import java.io.IOException; | ||
import java.io.Reader; | ||
import java.util.Objects; | ||
import java.util.logging.Logger; | ||
|
||
final class StreambasedABNF implements ABNF { | ||
|
||
public static ABNF of(final Reader reader) { | ||
return new StreambasedABNF(reader); | ||
} | ||
|
||
private static final Logger LOG = Logger.getLogger(StreambasedABNF.class.getName()); | ||
|
||
private final Reader reader; | ||
|
||
private StreambasedABNF(final Reader reader) { | ||
this.reader = Objects.requireNonNull(reader); | ||
} | ||
|
||
@Override | ||
public void close() throws IOException { | ||
reader.close(); | ||
} | ||
|
||
@Override | ||
public RuleList rules() { | ||
LOG.entering(StreambasedABNF.class.getName(), "rules"); | ||
final RuleList result; | ||
try { | ||
Extractor extractor = RuleListExtractor.of(); | ||
int codePoint; | ||
while ((codePoint = reader.read()) != -1) { | ||
extractor = extractor.append(codePoint); | ||
} | ||
result = extractor.finish().createAs(RuleList.class); | ||
} catch (IOException ex) { | ||
final IllegalArgumentException thrown = new IllegalArgumentException(ex); | ||
LOG.throwing(StreambasedABNF.class.getName(), "rules", thrown); | ||
throw thrown; | ||
} | ||
LOG.exiting(TextABNF.class.getName(), "rules", result); | ||
return result; | ||
} | ||
} |
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.