Giter Club home page Giter Club logo

xmlrip's Introduction

A very simple streaming XPath processor. I created this tool for querying XML files that were too large for building a DOM or loading into an editor. Grep and Less work OK until you want to extract multiline elements. Xmlrip only support some very basic XPath features (basically only what I needed).

The full list of things you can do is:

  • Find elements by name /outer
  • Find elements at any depth //inner
  • Find elements by path /outer/inner or /outer//inner
  • Filter elements on specific attribute value /outer/inner[@c="EP1234"]
  • Filter elements on attribute values beginning with a sequence of characters /outer/inner[starts-with(@c,"EP")]

Building

Linux

Requires GCC, cmake and make installed:

sudo apt-get install libxml2-dev gcc g++ make cmake

From the folder containing the checked out code do:

mkdir build
cd build
cmake ..
make

To run the tests:

./testxmlrip/testxmlrip

To run the app:

./xmlrip/xmlrip ../test3.xml '//outer'

Windows

Use Visual Studio 2017 and use the "File > Open Folder" feature to open the checkout folder. VS will then run cmake for you. Use the the drop down in the toolbar to select build target. If you install the Google Test adapter then the IDE will discover and run the unit tests for you.

xmlrip's People

Contributors

gazzyt avatar

Stargazers

 avatar

Watchers

 avatar James Cloos avatar  avatar

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.