mirror of https://github.com/asterisk/asterisk
rizzo brought up some issues related to the way that the metadata required for menuselect and the rest of the build system is extracted from the source files. Since I had a few hours to kill on an airplane today, I decided to improve this situation... so now the system caches the extracted metadata and uses it to build the menuselect 'tree' as much as it can. The result of this is that when a single source file is changed, only the metadata for that file needs to be extracted again, and the rest is used from the cache files. I also reduced the number of forked processes required to do the metadata extraction; it was actually possible to do most of what we needed in the Makefiles themselves without using any shell scripts at all! On my laptop, these changes resulted in an 80% decrease in the time required for the 'menuselect.makeopts' automatic check to occur after editing a single source file. While doing this work I also cleaned up a few minor things in the Makefiles, adding a check for 'awk' to the configure script and changed all remaining places we use 'grep' or 'awk' to use the ones found by the configure script, and changed the 'prep_tarball' script to build the menuselect metadata so that tarballs of Asterisk will include it and won't require the user to wait while it is extracted after unpacking. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@93180 65c4cc65-6c06-0410-ace0-fbb531ad65f31.4
parent
4965b39719
commit
627f595c58
@ -1,48 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
get_description() {
|
||||
TDESC=`${GREP} -e AST_MODULE_INFO ${1} | head -n 1 | cut -d '"' -f 2`
|
||||
}
|
||||
|
||||
process_dir() {
|
||||
dir=${1}
|
||||
prefix=${2}_
|
||||
catsuffix=${3}
|
||||
displayname=${4}
|
||||
|
||||
printf "\t<category name=\"MENUSELECT_${catsuffix}\" displayname=\"${displayname}\" remove_on_change=\"${dir}/modules.link\">\n"
|
||||
for file in `ls ${dir}/${prefix}*.c ${dir}/${prefix}*.cc 2> /dev/null | sort`
|
||||
do
|
||||
if [ ! -f ${file} ]; then
|
||||
continue
|
||||
fi
|
||||
fname=`basename ${file} .c`
|
||||
fname=`basename ${fname} .cc`
|
||||
get_description ${file}
|
||||
desc=${TDESC}
|
||||
printf "\t\t<member name=\"${fname}\" displayname=\"${desc}\" remove_on_change=\"${dir}/${fname}.o ${dir}/${fname}.oo ${dir}/${fname}.so\">\n"
|
||||
awk -f build_tools/get_moduleinfo ${file}
|
||||
printf "\t\t</member>\n"
|
||||
awk -f build_tools/get_makeopts ${file} >> .makeoptstmp
|
||||
done
|
||||
printf "\t</category>\n"
|
||||
}
|
||||
|
||||
echo "<?xml version=\"1.0\"?>"
|
||||
echo
|
||||
echo "<menu name=\"Asterisk Module Selection\">"
|
||||
rm -f .makeoptstmp
|
||||
process_dir apps app APPS Applications
|
||||
process_dir cdr cdr CDR "Call Detail Recording"
|
||||
process_dir channels chan CHANNELS "Channel Drivers"
|
||||
process_dir codecs codec CODECS "Codec Translators"
|
||||
process_dir formats format FORMATS "Format Interpreters"
|
||||
process_dir funcs func FUNCS "Dialplan Functions"
|
||||
process_dir pbx pbx PBX "PBX Modules"
|
||||
process_dir res res RES "Resource Modules"
|
||||
cat .makeoptstmp
|
||||
cat build_tools/cflags.xml
|
||||
cat build_tools/embed_modules.xml
|
||||
cat sounds/sounds.xml
|
||||
rm -f .makeoptstmp
|
||||
echo "</menu>"
|
Loading…
Reference in new issue