IntelliJ IDEA構成ファイルのバージョンを制御しようとしています。以下は小さなサンプルです。
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<ignored path="tilde.iws" />
<ignored path=".idea/workspace.xml" />
<ignored path=".idea/dataSources.local.xml" />
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
<option name="TRACKING_ENABLED" value="true" />
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="ToolWindowManager">
<frame x="1201" y="380" width="958" height="1179" extended-state="0" />
<editor active="false" />
<layout>
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
<window_info id="Palette	" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
</layout>
</component>
</project>
/project/component[@name='ToolWindowManager']/layout/window_info
IDEが設定を保存するたびに、いくつかの要素がランダムな順序で保存されるように見えます。同じタイプのすべての要素は、常に同じ順序で同じ属性を持つように見えます。要素の順序は、IDEの機能とは何の関係もないことを考慮すると、要素は要素名でソートされ、属性値でソートされます。そして属性とスペースはそのまま残ります。
<stylesheet version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform">
<output method="xml" indent="yes" encoding="UTF-8"/>
<strip-space elements="*"/>
<template match="processing-instruction()|@*">
<copy>
<apply-templates select="node()|@*"/>
</copy>
</template>
<template match="*">
<copy>
<apply-templates select="@*"/>
<apply-templates>
<sort select="name()"/>
<sort select="@*[1]"/>
<sort select="@*[2]"/>
<sort select="@*[3]"/>
<sort select="@*[4]"/>
<sort select="@*[5]"/>
<sort select="@*[6]"/>
</apply-templates>
</copy>
</template>
</stylesheet>
ほぼすべてが来ましたが、いくつかの問題があります。
- ソートされませんすべて属性値(
@*
効果なし) - 空の要素の末尾()の前のスペースを削除
<foo />
します<foo/>
。 - EOFに改行文字を追加します(私の考えではバグではありませんが、結果ファイルを元のものとあまり似ていません)。
答え1
xmllint
正式なXMLソートの詳細とそれが説明するものと一致するかどうかはわかりませんが、ファイルをソース管理に保存する前に正式なXMLソートを使用することをお勧めします。これに対して一貫性を維持する場合、バージョン管理は非常にきれいで便利です。以下をスクリプトに変更するか、gitを使用している場合はgithook
スクリプトを起動するように設定できます。
$ xmllint --c14n originalConfig.xml > sortedConfig.xml
$ mv sortedConfig.xml originalConfig.xml
LinuxまたはMacを使用している場合は、上記の内容が適しています。 Windowsを使用している場合は、cygwinのようなものをインストールする必要があるかもしれません。
答え2
私はperl
それを使って解決しますXML::Twig
。
Perlには、sort
値の範囲を比較するために任意の基準を指定する機能があります。関数が相対順序に従って正、負、またはゼロの値を返す限り。
ここで魔法が発生します。ソート基準を指定します。
- ノード名(ラベル)に基づいて比較
- 次に、属性が存在するかどうかを基準に比較します。
- 次に、属性値を比較します。
さらに、子ノードをソートするには、構造全体でこの操作を再帰的に実行する必要があります。
だから:
#!/usr/bin/env perl
use strict;
use warnings;
use XML::Twig;
my $xml = XML::Twig -> new -> parsefile ('sample.xml');
sub compare_elements {
## perl sort uses $a and $b to compare.
## in this case, it's nodes we expect;
#tag is the node name.
my $compare_by_tag = $a -> tag cmp $b -> tag;
#conditional return - this works because cmp returns zero
#if the values are the same.
return $compare_by_tag if $compare_by_tag;
#bit more complicated - extract all the attributes of both a and b, and then compare them sequentially:
#This is to handle case where you've got mismatched attributes.
#this may be irrelevant based on your input.
my %all_atts;
foreach my $key ( keys %{$a->atts}, keys %{$b->atts}) {
$all_atts{$key}++;
}
#iterate all the attributes we've seen - in either element.
foreach my $key_to_compare ( sort keys %all_atts ) {
#test if this attribute exists. If it doesn't in one, but does in the other, then that gets sorted to the top.
my $exists = ($a -> att($key_to_compare) ? 1 : 0) <=> ($b -> att($key_to_compare) ? 1 : 0);
return $exists if $exists;
#attribute exists in both - extract value, and compare them alphanumerically.
my $comparison = $a -> att($key_to_compare) cmp $b -> att($key_to_compare);
return $comparison if $comparison;
}
#we have fallen through all our comparisons, we therefore assume the nodes are the same and return zero.
return 0;
}
#recursive sort - traverses to the lowest node in the tree first, and then sorts that, before
#working back up.
sub sort_children {
my ( $node ) = @_;
foreach my $child ( $node -> children ) {
#sort this child if is has child nodes.
if ( $child -> children ) {
sort_children ( $child )
}
}
#iterate each of the child nodes of this one, sorting based on above criteria
foreach my $element ( sort { compare_elements } $node -> children ) {
#cut everything, then append to the end.
#because we've ordered these, then this will work as a reorder operation.
$element -> cut;
$element -> paste ( last_child => $node );
}
}
#set off recursive sort.
sort_children ( $xml -> root );
#set output formatting. indented_a implicitly sorts attributes.
$xml -> set_pretty_print ( 'indented_a');
$xml -> print;
入力が与えられると、出力は次のようになります。
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<ignored path=".idea/dataSources.local.xml" />
<ignored path=".idea/workspace.xml" />
<ignored path="tilde.iws" />
<option
name="EXCLUDED_CONVERTED_TO_IGNORED"
value="true"
/>
<option
name="HIGHLIGHT_CONFLICTS"
value="true"
/>
<option
name="HIGHLIGHT_NON_ACTIVE_CHANGELIST"
value="false"
/>
<option
name="LAST_RESOLUTION"
value="IGNORE"
/>
<option
name="SHOW_DIALOG"
value="false"
/>
<option
name="TRACKING_ENABLED"
value="true"
/>
</component>
<component name="ToolWindowManager">
<editor active="false" />
<frame
extended-state="0"
height="1179"
width="958"
x="1201"
y="380"
/>
<layout>
<window_info
active="false"
anchor="bottom"
auto_hide="false"
content_ui="tabs"
id="TODO"
internal_type="DOCKED"
order="6"
show_stripe_button="true"
sideWeight="0.5"
side_tool="false"
type="DOCKED"
visible="false"
weight="0.33"
/>
<window_info
active="false"
anchor="left"
auto_hide="false"
content_ui="tabs"
id="Palette	"
internal_type="DOCKED"
order="2"
show_stripe_button="true"
sideWeight="0.5"
side_tool="false"
type="DOCKED"
visible="false"
weight="0.33"
/>
</layout>
</component>
</project>
個々の子ノードの順序に関係なく。
indented_a
属性を新しい行に包んでよりきれいだと思うので個人的に気に入っています。ただし、indented
出力形式は同じ目的で使用できます。