O XMLStarlet ( link ) é escrito em C e usa libxml2
e libxslt
.
Dado o documento XML
<?xml version="1.0"?>
<root>
<tag>data</tag>
</root>
um subnó para 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
no topo 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 questão está em file.xml
e os bits adicionais que devem ir no novo nó distributinManagement
estão em new.xml
(mas não a própria tag do nó), um poderia 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
O XMLStarlet escapará automaticamente dos dados que precisam ser salvos, como <
e >
caracteres. O xml unesc
bit remove os dados inseridos (na verdade, ele descarta 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 isso dessa maneira, "mas funciona".
Veja também esta questão relacionada no StackOverflow: link