X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/e4580f054afd2023741e3f1620a465ab9f8810e5..5e43cdf74cfa40b69f5e7e9eb3957c43f4accb86:/new_loba.sh?ds=sidebyside diff --git a/new_loba.sh b/new_loba.sh index f564a5c..40b6ea1 100755 --- a/new_loba.sh +++ b/new_loba.sh @@ -1,5 +1,11 @@ #!/bin/bash +# Local variables: +# mode: sh +# End: + +set -e + if [ "$1" = "-n" ]; then echo "# Dry run mode!" >&2 create_files=0 @@ -9,8 +15,12 @@ else fi if [ $# -ne 1 ]; then - echo "Usage: $0 name" >&2 - echo " Create files loba_name.h and loba_name.cpp." + cat >&2 <= h_file) { + if ($2 != h_file) + print "#include " h_file; + included = 1; + } + print; + next; +} + +!included && include_line { + print include_line; + included = 1; +} + +/loba_algorithms_type::loba_algorithms_type\(\)/ { + nol_compare = "NOL_INSERT(\"" name "\"," + nol_string = " " nol_compare " \"describe your algorithm here...\",\n"; + nol_string = nol_string " loba_" name ");" + nol_insert = 1; +} + +nol_insert && $1 ~ /\}/ { + if (!nol_inserted) + print nol_string; + nol_insert = 0; +} + +nol_insert && !nol_inserted && /NOL_INSERT/ { + if ($1 >= nol_compare) { + if ($1 > nol_compare) + print nol_string; + nol_inserted = 1; + } +} + +{ print } +' options.cpp > $tmp + +if [ "$create_files" = "1" ]; then + mv options.cpp options.cpp~ + mv $tmp options.cpp +else + if type colordiff &> /dev/null; then + diff -u options.cpp $tmp | colordiff + else + diff -u options.cpp $tmp + fi +fi + cat >&2 <