Skip to content

vincent-zurczak/Xml-Region-Analyzer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

XML Region Analyzer

Build Status Coverage Status License

A light and simple lexical analyzer for XML.

This project was created because I needed a simple way to add syntax highlighting in a stand-alone SWT application. Since there was no simple solution, I created one. Given a string representing a XML document, it finds regions and their positions.

Here is an example.

List<XmlRegion> regions = new XmlRegionAnalyzer().analyzeXml( yourXmlAsAString );
for( XmlRegion xr : regions ) {
   switch( xr.getXmlRegionType ()) {
   	case XmlRegionType.MARKUP: break;
   	case XmlRegionType.ATTRIBUTE: break;
   	case XmlRegionType.ATTRIBUTE_VALUE: break;
   	case XmlRegionType.MARKUP_VALUE: break;
   	case XmlRegionType.COMMENT: break;
   	case XmlRegionType.INSTRUCTION: break;
   	case XmlRegionType.CDATA: break;
   	case XmlRegionType.WHITESPACE: break;
   	default: break;
   }
   
   int regionLength = xr.getEnd() - xr.getStart();
   System.out.println( "Region Length:" + regionLength );
}

Using it

You can add this project in your Maven dependencies.

<dependency>
	<groupId>com.github.vincent-zurczak</groupId>
	<artifactId>xml-region-analyzer</artifactId>
	<version>1.0.0</version>
</dependency>

This project has no dependency towards other libraries.

Development

# Compile and package
mvn clean package

# Run the tests
mvn clean test

# Get code coverage (then check target/site/cobertura/)
mvn clean cobertura:cobertura

License

The source code is licensed under the terms of the Apache license v2.

About

A light and simple lexical analyzer for XML

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages