Giter VIP home page Giter VIP logo

Comments (3)

apenski avatar apenski commented on May 28, 2024

Indeed this is supported by saxon and is definitely a good idea to reduce memory usage of the validator. Changings this requires some rewrite of Input and InputFactory but this should not break the api.

Nevertheless, I tested a litte bit and have trouble at least with the SchemaValidationAction which is not producing errors with line and col information. I reused the XdmNode parsed in the first step (DocumentParseAction) so that the document is just read once e.g.

final Validator validator = ObjectFactory.createValidator(scenarioType.getSchema());
validator.setErrorHandler(errorHandler);
validator.validate(new DOMSource(NodeOverNodeInfo.wrap(parseDocument.getUnderlyingNode())));

With this, I miss the line and column information. When using the byte-array from Input I get them. I'd think they are useful for debugging, so I wouldn't change this until this problem is solved. Any ideas?

@rkottmann what do you think?

from validator.

apenski avatar apenski commented on May 28, 2024

Since Saxon HE has no support for schema, things are more complicated. To run the schema validation, I need to re-read the source. Nevertheless, this reduces overall footprint and is implemented in current master branch.

When using an InputStream, the re-read requires a serialization prior validation. So using a stream is somewhat suboptimal:

  • The stream is read when necessary
  • must be serialized prior validation

Using an URI based Input is better, since the re-read is based on a new stream. Nevertheless, unless you are using the ByteArrayInput by using the corresponding read in InputFactory the target is not read into memory. It's directly parsed to XdmNode.

I also implemented support for using java.xml.transform.Source as an Input. The actual implemenation regarding streams is in SourceInput. In future version we may extend for other Source-Implementations as well.

@JannickWeisshaupt Feel free to test this implementation. Any help on spotting errors with this is welcome.

from validator.

apenski avatar apenski commented on May 28, 2024

Fixed with Release 1.3.0

from validator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.