fconv accepte une liste de commandes
This commit is contained in:
parent
b03c78b639
commit
9ee74697e0
317
fconv
317
fconv
|
@ -1,133 +1,214 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
|
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
|
||||||
|
|
||||||
function display_help() {
|
|
||||||
uecho "$scriptname: convertir des fichiers dans un autre encoding
|
|
||||||
|
|
||||||
USAGE
|
|
||||||
$scriptname [-f src_enc] [ -t dest_enc] [/path/to/file]
|
|
||||||
|
|
||||||
OPTIONS
|
|
||||||
-f from
|
|
||||||
Encoding source. Si n'est pas spécifié ou vaut 'detect', l'encoding est
|
|
||||||
autodétecté.
|
|
||||||
-t to
|
|
||||||
Encoding destination. Doit être spécifié.
|
|
||||||
Cas particulier: si to vaut 'lf' ou 'crlf', from est ignoré, et seuls
|
|
||||||
les caractères de fin de lignes sont convertis.
|
|
||||||
-N Ne pas optimiser le calcul de l'encoding. Cette option n'est valide que
|
|
||||||
si -f n'est pas spécifié. On assume que tous les noms de fichiers n'ont
|
|
||||||
pas le même encoding. L'encoding from est donc recalculé à chaque fois.
|
|
||||||
-r inverser from et to, qui doivent être tous les deux spécifiés."
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ "$#" -eq 1 -a "$1" == --nutools-makelinks ]; then
|
|
||||||
# créer les liens
|
|
||||||
scriptname="$(basename "$0")"
|
|
||||||
for destenc in latin1 utf8 lf crlf cr; do
|
|
||||||
ln -s "$scriptname" "${scriptname}2$destenc"
|
|
||||||
done
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
source "$(dirname "$0")/lib/ulib/ulib" || exit 1
|
source "$(dirname "$0")/lib/ulib/ulib" || exit 1
|
||||||
urequire DEFAULTS
|
urequire DEFAULTS
|
||||||
|
|
||||||
from=detect
|
function display_help() {
|
||||||
case "${scriptname#fconv2}" in
|
uecho "$scriptname: convertir le contenu d'un fichier
|
||||||
utf8) to=utf-8;;
|
|
||||||
latin1) to=iso-8859-1;;
|
|
||||||
lf) to=lf;;
|
|
||||||
crlf) to=crlf;;
|
|
||||||
cr) to=cr;;
|
|
||||||
*) to=;;
|
|
||||||
esac
|
|
||||||
optimize=1
|
|
||||||
parse_opts "${PRETTYOPTS[@]}" \
|
|
||||||
--help '$exit_with display_help' \
|
|
||||||
-f: from= \
|
|
||||||
-t: to= \
|
|
||||||
-N optimize= \
|
|
||||||
-r reverse \
|
|
||||||
@ args -- "$@" && set -- "${args[@]}" || die "$args"
|
|
||||||
|
|
||||||
function dfconv() {
|
USAGE
|
||||||
# $1 = répertoire dont les fichiers doivent être convertis
|
$scriptname [options] file [cmds...]
|
||||||
local srcdir="$1" files file
|
|
||||||
array_lsall files "$srcdir"
|
Une ou plusieurs commandes peuvent être spécifiées, séparées //
|
||||||
for file in "${files[@]}"; do
|
La command par défaut est 'lf'
|
||||||
fconv "$file"
|
|
||||||
done
|
OPTIONS
|
||||||
|
-N, --detect-always
|
||||||
|
Pour la commande conv, ne pas optimiser le calcul de l'encoding. Cette
|
||||||
|
option n'est valide que si src_enc n'est pas spécifié. On assume que
|
||||||
|
tous les fichiers n'ont pas le même encoding: l'encoding src_enc est
|
||||||
|
donc recalculé à chaque fois.
|
||||||
|
-r, --reverse
|
||||||
|
Inverser src_enc et dest_enc, qui doivent être tous les deux spécifiés.
|
||||||
|
|
||||||
|
COMMANDES
|
||||||
|
conv dest_enc [src_enc]
|
||||||
|
Convertir le fichier dans un autre encoding.
|
||||||
|
dest_enc est l'encoding destination. Il doit être spécifié.
|
||||||
|
src_enc est l'encoding source. S'il n'est pas spécifié ou vaut 'detect',
|
||||||
|
il est autodétecté.
|
||||||
|
utf8 [src_enc]
|
||||||
|
Equivalent à conv utf8 src_enc
|
||||||
|
latin1 [src_enc]
|
||||||
|
Equivalent à conv latin1 src_enc
|
||||||
|
lf
|
||||||
|
crlf
|
||||||
|
cr
|
||||||
|
Convertir respectivement les caractères de fin de ligne en LF, CR/LF ou CR
|
||||||
|
noaccents
|
||||||
|
Transformer caractères accentués en caractères non accentués"
|
||||||
|
}
|
||||||
|
|
||||||
|
function detect_enc() {
|
||||||
|
if [ -f "$1" ]; then
|
||||||
|
"$scriptdir/lib/pywrapper" uencdetect.py -f "$1"
|
||||||
|
return $?
|
||||||
|
elif [ -d "$1" ]; then
|
||||||
|
local -a files
|
||||||
|
setx -a files=evalp find "$1" -type f // head -n1
|
||||||
|
if [ ${#files[*]} -gt 0 ]; then
|
||||||
|
"$scriptdir/lib/pywrapper" uencdetect.py -f "${files[0]}"
|
||||||
|
return $?
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
echo Unknown
|
||||||
|
}
|
||||||
|
|
||||||
|
function before_parse_cmd() {
|
||||||
|
case "$1" in
|
||||||
|
conv)
|
||||||
|
if [ -n "$OPTIMIZE_CONV" ]; then
|
||||||
|
local to="$2"
|
||||||
|
[ -n "$to" ] && setx CONV_TO=__norm_encoding "$to"
|
||||||
|
|
||||||
|
local from="${3:-detect}"
|
||||||
|
if [ "$from" == "detect" ]; then
|
||||||
|
setx from=detect_enc "$FILE"
|
||||||
|
if [ "$from" == "Unknown" ]; then
|
||||||
|
echo "$FILE: Impossible de détecter l'encoding"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
[ -n "$from" ] && setx CONV_FROM=__norm_encoding "$from"
|
||||||
|
OPTIMIZE_CONV=
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
noaccents|noa|fixchars)
|
||||||
|
export LANG=fr_FR.UTF-8
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
function iconv_detect() {
|
||||||
|
local to="$1"; shift
|
||||||
|
local from
|
||||||
|
setx from=detect_enc "$FILE"
|
||||||
|
if [ "$from" == "Unknown" ]; then
|
||||||
|
cat
|
||||||
|
return 1
|
||||||
|
else
|
||||||
|
if [ -n "$REVERSE_CONV" ]; then
|
||||||
|
local tmp="$to"
|
||||||
|
to="$from"
|
||||||
|
from="$tmp"
|
||||||
|
fi
|
||||||
|
iconv -f "$from" -t "$to" "$@"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function parse_cmd() {
|
||||||
|
local cmd="$1"; shift
|
||||||
|
local -a args
|
||||||
|
case "$cmd" in
|
||||||
|
utf8) parse_cmd conv utf8 "$@";;
|
||||||
|
latin1) parse_cmd conv latin1 "$@";;
|
||||||
|
conv)
|
||||||
|
local to="$CONV_TO" from="$CONV_FROM"
|
||||||
|
[ -n "$to" ] || to="$1"; shift
|
||||||
|
[ -f "$from" ] || from="${1:-detect}"; shift
|
||||||
|
|
||||||
|
if [ -z "$to" ]; then
|
||||||
|
echo "conv: vous devez spécifier l'encoding destination"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
setx to=__norm_encoding "$to"
|
||||||
|
if [ "$from" == "detect" ]; then
|
||||||
|
qvals iconv_detect "$to" "$@"
|
||||||
|
else
|
||||||
|
setx from=__norm_encoding "$from"
|
||||||
|
if [ "$from" == "$to" ]; then
|
||||||
|
echo "Une conversion de $from à $to n'a pas de sens. Veuillez re-essayer avec -N si nécessaire."
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
if [ -n "$REVERSE_CONV" ]; then
|
||||||
|
local tmp="$to"
|
||||||
|
to="$from"
|
||||||
|
from="$tmp"
|
||||||
|
fi
|
||||||
|
qvals iconv -f "$from" -t "$to" "$@"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
lf) echo _nl2lf;;
|
||||||
|
crlf) echo _nl2crlf;;
|
||||||
|
cr) echo _nl2cr;;
|
||||||
|
noaccents|noa|fixchars)
|
||||||
|
echo _noaccents;;
|
||||||
|
*)
|
||||||
|
echo "$cmd: commande invalide"
|
||||||
|
return 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
function ffconv() {
|
function ffconv() {
|
||||||
# $1 = fichier à renommer
|
local tmp="$FILE.tmp.$$"
|
||||||
local lfrom="$from" lto="$to"
|
autoclean "$tmp"
|
||||||
local src="$1"
|
|
||||||
|
|
||||||
if [ "$to" == "lf" ]; then
|
ebegin "$FILE"
|
||||||
ebegin "$src" nl2lf "$src"
|
if eval "$CMD" <"$FILE" >"$tmp"; then
|
||||||
elif [ "$to" == "crlf" ]; then
|
(cat "$tmp" >"$FILE"; edot $? "replace $FILE")
|
||||||
ebegin "$src" nl2crlf "$src"
|
|
||||||
elif [ "$to" == "cr" ]; then
|
|
||||||
ebegin "$src" nl2cr "$src"
|
|
||||||
else
|
|
||||||
if [ "$lfrom" == "detect" ]; then
|
|
||||||
lfrom="$("$scriptdir/lib/pywrapper" uencdetect.py -f "$src")"
|
|
||||||
if [ "$lfrom" == "Unknown" ]; then
|
|
||||||
eerror "$(ppath "$src"): Impossible de déterminer l'encoding"
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
if [ -n "$optimize" ]; then
|
|
||||||
from="$(__norm_encoding "$lfrom")"
|
|
||||||
[ "$from" != "$to" ] && enote "Conversion $from --> $to"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
if [ -n "$optimize" -a "$from" == "$to" ]; then
|
|
||||||
die "Une conversion de $from à $to n'a pas de sens.
|
|
||||||
Veuillez re-essayer avec -N si nécessaire."
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$reverse" ]; then
|
|
||||||
local tmp="$lto"
|
|
||||||
lto="$lfrom"
|
|
||||||
lfrom="$tmp"
|
|
||||||
fi
|
|
||||||
|
|
||||||
local tmp="$src.tmp.$$"
|
|
||||||
autoclean "$tmp"
|
|
||||||
ebegin "$src"
|
|
||||||
iconv -f "$lfrom" -t "$lto" "$src" >"$tmp" &&
|
|
||||||
(cat "$tmp" >"$src"; edot) &&
|
|
||||||
(rm "$tmp"; edot)
|
|
||||||
eend
|
|
||||||
fi
|
fi
|
||||||
|
(rm "$tmp"; edot $? "remove temp")
|
||||||
|
eend
|
||||||
}
|
}
|
||||||
|
|
||||||
function fconv() {
|
OPTIMIZE_CONV=1
|
||||||
if [ -d "$1" ]; then
|
REVERSE_CONV=
|
||||||
etitle "$(ppath "$1")" dfconv "$1"
|
CONV_FROM=
|
||||||
elif [ -f "$1" ]; then
|
CONV_TO=
|
||||||
ffconv "$1"
|
parse_opts + "${PRETTYOPTS[@]}" \
|
||||||
else
|
--help '$exit_with display_help' \
|
||||||
eerror "$1: fichier introuvable ou invalide"
|
-N,--detect-always OPTIMIZE_CONV= \
|
||||||
fi
|
-r,--reverse REVERSE_CONV=1 \
|
||||||
}
|
@ args -- "$@" && set -- "${args[@]}" || die "$args"
|
||||||
|
|
||||||
[ -n "$to" ] || die "Il faut spécifier l'encoding de destination"
|
FILE="$1"; shift
|
||||||
to="$(__norm_encoding "$to")"
|
[ "$FILE" == - ] && FILE=/dev/stdin
|
||||||
|
if [ "$FILE" != /dev/stdin ]; then
|
||||||
if [ -n "$*" ]; then
|
[ -e "$FILE" ] || die "$FILE: fichier introuvable"
|
||||||
if [ "$to" == "lf" -o "$to" == "crlf" -o "$to" == "cr" ]; then
|
fi
|
||||||
enote "Conversion [cr]lf --> $to"
|
|
||||||
fi
|
[ $# -gt 0 ] || set -- lf # commande par défaut
|
||||||
for src in "$@"; do
|
|
||||||
fconv "$src"
|
CMD= # la commande finale à lancer pour convertir le flux
|
||||||
done
|
while [ $# -gt 0 ]; do
|
||||||
elif [ "$to" == "lf" ]; then
|
args=()
|
||||||
nl2lf
|
while [ $# -gt 0 ]; do
|
||||||
elif [ "$to" == "crlf" ]; then
|
arg="$1"; shift
|
||||||
nl2crlf
|
if [ "$arg" == // ]; then
|
||||||
elif [ "$to" == "cr" ]; then
|
break
|
||||||
nl2cr
|
elif [ "${arg%//}" != "$arg" ]; then
|
||||||
|
local tmp="${arg%//}"
|
||||||
|
if [ -z "${tmp//\\/}" ]; then
|
||||||
|
arg="${arg#\\}"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
args=("${args[@]}" "$arg")
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ ${#args[*]} -gt 0 ]; then
|
||||||
|
before_parse_cmd "${args[@]}"
|
||||||
|
setx cmd=parse_cmd "${args[@]}" || die "$cmd"
|
||||||
|
if [ "$FILE" == /dev/stdin ]; then
|
||||||
|
# pas de suivi pour /dev/stdin
|
||||||
|
CMD="${CMD:+$CMD | }$cmd"
|
||||||
|
else
|
||||||
|
CMD="${CMD:+$CMD | }($cmd; edot \$? $cmd)"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ "$FILE" == /dev/stdin ]; then
|
||||||
|
eval "$CMD"
|
||||||
|
elif [ -f "$FILE" ]; then
|
||||||
|
ffconv
|
||||||
|
elif [ -d "$FILE" ]; then
|
||||||
|
setx -a files=find "$FILE" -type f
|
||||||
|
for FILE in "${files[@]}"; do
|
||||||
|
ffconv
|
||||||
|
done
|
||||||
|
else
|
||||||
|
die "$FILE: fichier invalide"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -25,7 +25,6 @@ for i in cg cgs; do
|
||||||
ln -s compileAndGo "$i"
|
ln -s compileAndGo "$i"
|
||||||
done
|
done
|
||||||
./fnconv --nutools-makelinks
|
./fnconv --nutools-makelinks
|
||||||
./fconv --nutools-makelinks
|
|
||||||
./uproject --nutools-makelinks
|
./uproject --nutools-makelinks
|
||||||
./woctl --nutools-makelinks
|
./woctl --nutools-makelinks
|
||||||
./dokuwiki --nutools-makelinks
|
./dokuwiki --nutools-makelinks
|
||||||
|
|
Loading…
Reference in New Issue