summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-08-01 07:20:43 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-08-01 07:20:43 (EDT)
commita1fbd80adeacca779cc3db1eaec28f755a405ac9 (patch)
treeaf87fea25a74a425b6b87d74fa3b94cac1f5b72c
parentd01d16207d329c2c534d2d0b7ff9da76de97ca7b (diff)
Report control file parse errors.
-rw-r--r--lib/control.sh44
1 files changed, 33 insertions, 11 deletions
diff --git a/lib/control.sh b/lib/control.sh
index a5cdd46..ca11999 100644
--- a/lib/control.sh
+++ b/lib/control.sh
@@ -73,30 +73,35 @@ _control_parse()
done
_param=
+ _line_nr=0
+
while read -r _line; do
+ _line_nr=$(($_line_nr + 1))
if [ "${_line# }" = "${_line}" ]; then
# "Name: Value" line.
_name="${_line%%:*}"
_value="${_line#*:}"
if [ -z "${_name}" -o "${_name}" = "${_line}" \
-o -z "${_value}" ]; then
-# oh_warn "${oh_str_control_bad_nv}"
+ # Badly formatted control field.
+ _control_parse_error "${_control}" "${_line_nr}" \
+ "${oh_str_control_bad_nv}"
continue
fi
if [ "${_all% ${_name} }" = "${_all}" ]; then
# Unknown field.
- :
-# oh_warn "${oh_str_control_unknown_field}" \
-# "${_control}" "${_name}"
+ _control_parse_error "${_control}" "${_line_nr}" \
+ "${oh_str_control_unknown_field}" \
+ "${_control}" "${_name}"
else
# Remove field from list of required fields.
_req="$(echo "${_req}" | sed "s/${_name}//")"
fi
if [ "${_got% ${_name} }" != "${_got}" ]; then
# Duplicate field.
- :
-# oh_warn "${oh_str_control_duplicate_field}" \
-# "${_control}" "${_field}"
+ _control_parse_error "${_control}" "${_line_nr}" \
+ "${oh_str_control_duplicate_field}" \
+ "${_control}" "${_field}"
else
_got="${_got}${_field} "
fi
@@ -106,7 +111,9 @@ _control_parse()
else
# Continuation line.
if [ -z "${_param}" ]; then
-# oh_warn "${oh_str_control_found_continuation}"
+ # Expecting a "Name: Value" line.
+ _control_parse_error "${_control}" "${_line_nr}" \
+ "${oh_str_control_found_continuation}"
continue
fi
_value="${_line# }"
@@ -119,8 +126,23 @@ ${_value}\""
_req="${_req%% }"
if [ -n "${_req}" ]; then
# Missing required control fields.
- :
-# oh_error "${oh_str_control_missing_fields}" \
-# "${_control}" "$(echo "${_req}" | sed 's/ / /g' | sed 's/ /,/g')"
+ _control_parse_error "${_control}" 0 \
+ "${oh_str_control_missing_fields}" \
+ "$(echo "${_req}" | sed 's/ / /g' | sed 's/ /,/g')"
+ fi
+}
+
+_control_parse_error()
+{
+ _file="${1}"
+ _line_nr="${2}"
+ _error="${3}"
+ shift 3
+
+ if [ "${_line_nr}" -eq 0 ]; then
+ _file_info=$(printf '%20s:' "${_file}" "${_line_nr}")
+ else
+ _file_info=$(printf '%20s(l%d):' "${_file}" "${_line_nr}")
fi
+ oh_warn "${_file_info} ${_error}" "${@}"
}