Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@dovyih/x-tree-diff

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dovyih/x-tree-diff

A implementation for *X-tree Diff: An Efficient Change Detection Algorithm for Tree-structured Data*

  • 0.0.2-alpha.21
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

X-Tree Diff

A implementation for X-tree Diff: An Efficient Change Detection Algorithm for Tree-structured Data.

Paper link: https://link.springer.com/chapter/10.1007/3-540-45036-X_74.

install

npm install --save @dov/x-tree-diff
# or
yarn add @dov/x-tree-diff

Usage

import { XMLXTreeDiff } from '@dov/x-tree-diff'

const xmlStr = `<Meta>
  <Author>yidafu(dov yih)</Author>
  <Title>x-tree-diff</Title>
</Meta>`;

const xmlStr2 =  `<Meta>
<Author>yidafu(dov yih)</Author>
<Name>x-tree-diff</Name>
</Meta>`;

const xmlDiff = new XMLXTreeDiff(xmlStr, xmlStr2);
const { oldTree, newTree } = xmlDiff.diff();
/*
oldTree:
<Meta op="0">
  <Author op="0">yidafu(dov yih)</Author>
  <Title op="2">x-tree-diff</Title>
</Meta>

newTree:
<Meta op="0">
  <Author op="0">yidafu(dov yih)</Author>
  <Name op="1">x-tree-diff</Name>
</Meta>
*/

Advanced Usage

if you want to implement your own Tree Struct Diff,you should implement XTreeDiff class -- two method you need impl buildXTree dumpXTree.

abstract class XTreeDiff<T> {
  public abstract buildXTree(rawTree: T): XTree;

  public abstract dumpXTree(xTree: XTree): T;
}

see src/XMLXTreeDiff.ts for more detail.

API

Implement:

  • XMLXTreeDiff xml impl
  • HTMLXTreeDiff Dom impl

Othor:

  • XTreeDiff abstract class. Implemetn core X-Tree Diff alogrithm
  • XTree core data struct
  • EditOption, five option: NOP,INS,DEL,UPD,MOV

Date Structure

propertydescription
labletag name
typeElement or Text Node
valuetext string value
index
nMD
tMD
nPtr
OpEditOption
nId
pPtr
dataextra data field

Keywords

FAQs

Package last updated on 02 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc