O XMLStarlet ( http://xmlstar.sourceforge.net/overview.php ) está escrito em C e usa libxml2
e libxslt
.
Dado o documento XML
<?xml version="1.0"?>
<root>
<tag>data</tag>
</root>
um subnó root
pode ser inserido usando
xml ed -s '/root' -t elem -n 'newtag' -v 'newdata' file.xml
que produz
<?xml version="1.0"?>
<root>
<tag>data</tag>
<newtag>newdata</newtag>
</root>
Inserindo muitas coisas (usando o original file.xml
na parte superior aqui):
xml ed -s '/root' -t elem -n 'newtag' \
-s '/root/newtag' -t elem -n 'subtag' -v 'subdata' file.xml
Isso produz
<?xml version="1.0"?>
<root>
<tag>data</tag>
<newtag>
<subtag>subdata</subtag>
</newtag>
</root>
Para o exemplo na pergunta:
xml ed -N x="http://maven.apache.org/POM/4.0.0" \
-s '/x:project' -t elem -n 'distributionManagement' \
-s '/x:project/distributionManagement' -t elem -n 'repository' \
-s '/x:project/distributionManagement/repository' -t elem -n 'id' \
-v 'private-releases' \
-s '/x:project/distributionManagement/repository' -t elem -n 'url' \
-v 'https://my.private.server.com/nexus/repository/maven-releases/' \
file.xml
Resultado:
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- a lot of other tags-->
<distributionManagement>
<repository>
<id>private-releases</id>
<url>https://my.private.server.com/nexus/repository/maven-releases/</url>
</repository>
</distributionManagement>
</project>
Inserindo um arquivo XML preparado anteriormente em um local no XML:
Supondo que o XML original da pergunta esteja file.xml
e que os bits adicionais que devem aparecer no novo distributinManagement
nó estejam new.xml
(mas não a própria tag do nó), é possível fazer o seguinte para inserir new.xml
no nó raiz:
xml ed -N x="http://maven.apache.org/POM/4.0.0" \
-s '/x:project' -t elem -n 'distributionManagement' \
-v "$(<new.xml)" file.xml | xml unesc | xml fo
Xmlstarlet vai escapar automaticamente os dados que precisa escapar, como <
e >
personagens. O xml unesc
bit remove os dados inseridos (na verdade, remove o documento inteiro, o que pode ou não ser um problema) e xml fo
reformata o documento XML resultante.
O resultado é
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- a lot of other tags-->
<distributionManagement>
<repository>
<id>private-releases</id>
<url>https://my.private.server.com/nexus/repository/maven-releases/</url>
</repository>
</distributionManagement>
</project>
Estou um pouco desconfortável em fazer dessa maneira ", mas funciona".
Consulte também esta pergunta relacionada no StackOverflow: /programming/29298507/xmlstarlet-xinclude-xslt