#!/bin/bash # # $Id$ # #-----------------------------------------------------------------------------# # This is a set of (recursive) functions for manipulating a dependency graph. # # We use algorithms and definitions from chapter 4 (mainly section 4.2) of # # https://algs4.cs.princeton.edu/. The graph we manipulate is the directed # # graph of the dependencies: nodes are packages in the BLFS book. A node A is # # connected to a node B if package A depends on B. A topological order (rev- # # erted) is exactly what we want for a build order. But a topological order # # only exists if the graph is acyclic. We'll therefore have to remove cycles. # # There are a number of other features we want to consider: # # - edges are weighted according to the dependency requirement: # # 1 for required # # 2 for recommended # # 3 for optional # # 4 for external # # We should consider only edges with weight lower or equal to that # # specified by the user, but see below. # # - we do not want to build the whole book. The user specifies a set of # # packages, and we have to consider only nodes reachable from this set # # using edges of weight not exceeding the specified weight. # # - when doing the topological sort, we want to consider all the edges and # # not only those not exceeding the specified weight: If a package A in the # # reachable subgraph depends optionally on another package B in the same # # subgraph, we want to build B before A. But this means we'll have to # # remove cycles for all weights. # # - dependencies have another qualifier: before or after. The problem: if a # # package A depends on B with an "after" qualifier, and a package C depends # # on A with a "before" qualifier, C may need B to be able to use A. So the # # only safe way to consider "after" qualifiers is to consider that they are # # "before" deps for any parent of the packages considered. # # We'll therefore have a 3 pass procedure. First build the set of nodes # # reachable from the root set. Second, remove dangling edges (those pointing # # to packages outside the node set), and move "after" edges to "before" edges # # originating from the parents. Third remove cycles and generate a # # topological sort. # # # # TODO: document each pass # Data layout: # # TODO: needs also to document the .tree files, and the "f" qualifier # # # A node of the tree is represented by a text file .dep. Each edge # # starting from this node is represented by a line in this file. We keep # # those files in the same directory. We introduce a special node named root, # # whose edges point to the list of nodes requested by the user. Each line # # contains three fields: # # - the weight of the edge # # - the "before" (b) or "after" (a) qualifier # # - the name of the destination of the edge # # # # TODO: The following is obsolete # Circular dependencies: # # # # In case we find a cirdular dependency, it has the form : # # parent->dependency_0->...->dependency_n->dependency_0 # # If we want to build dependency_n before dependency_0, no problem: # # we just prune the tree at dependency_n. If we want to build first # # dependency_0, we need to put dependency_n as a dependency of parent, # # then erase and rebuild the subtree from there. Now, we may have met # # another circular dependency in the subtree, and erasing the tree makes # # us forget the decision which was made. So, after first generating the # # list of dependencies from packages.xml, we keep the generated list in # # a file .odep, which we modify according to the decision which # # was made. # #---------------------------------------------------------------------------# # Global variables: # A string of spaces for indenting: declare -a spaceSTR=" " # When we are backing up from a circular dependency, `parentNode' # contains the node which has an edge entering the cycle declare parentNode #---------------------# generate_subgraph() { # #---------------------# : <.dep. on error: nothing on success: nothing inline_doc local depFile=$1 local -i weight=$2 local -i depth=$3 local qualifier=$4 local -i spacing=0 local priostring local buildstring local id_of_dep local prio_of_dep local build_of_dep local dep_level if (( depth < 10 )); then spacing=1; fi case $weight in 1) priostring=required ;; 2) priostring=recommended ;; 3) priostring=optional ;; esac case $qualifier in a) buildstring=runtime ;; b) buildstring= ;; esac dep_level=$DEP_LEVEL if [ "$dep_level" = 3 ] && [ "$depth" -gt 2 ]; then dep_level=2; fi if [ "$dep_level" -gt 3 ]; then dep_level=3; fi echo -en "\nNode: $depth${spaceSTR:0:$(( depth + spacing ))}${RED}${depFile%.dep}${OFF} $priostring $buildstring" depth=$(( depth + 1 )) if (( depth < 10 )); then spacing=1; else spacing=0; fi # Start of loop { while read prio_of_dep build_of_dep id_of_dep; do case $prio_of_dep in 1) priostring=required ;; 2) priostring=recommended ;; 3) priostring=optional ;; 4) priostring=external ;; esac case $build_of_dep in a) buildstring=runtime ;; b) buildstring= ;; esac # Has this entry already been seen? # We have a special case here: if the entry has been seen at depth > 2 # and now depth=2 and DEP_LEVEL=3, optional deps have not been processed. # If this is the case, just consider it has not been seen. if [ -f ${id_of_dep}.dep ] ; then case $depth$DEP_LEVEL in 23) ;; *) # Just display it and proceed. echo -en "\nEdge: $depth${spaceSTR:0:$((depth + spacing))}${MAGENTA}${id_of_dep}${OFF} $priostring $buildstring" continue ;; esac fi # Is the weight higher than requested? if [ "$prio_of_dep" -gt $dep_level ]; then # Just display it and proceed. echo -en "\n Out: $depth${spaceSTR:0:$((depth + spacing))}${YELLOW}${id_of_dep}${OFF} $priostring $buildstring" continue fi # Otherwise, let's build the corresponding subgraph. xsltproc --stringparam idofdep "$id_of_dep" \ --stringparam MTA "$MAIL_SERVER" \ -o ${id_of_dep}.dep \ ../xsl/dependencies.xsl ../packages.xml if [[ -s ${id_of_dep}.dep ]]; then # this dependency has dependencies generate_subgraph ${id_of_dep}.dep $prio_of_dep $depth $build_of_dep else # id_of_dep has no dependencies, just touch the file and display touch ${id_of_dep}.dep echo -en "\nLeaf: $depth${spaceSTR:0:$((depth + spacing))}${CYAN}${id_of_dep}${OFF} $priostring $buildstring" fi done } <$depFile depth=$(( depth - 1 )) if (( depth < 10 )); then spacing=1; else spacing=0; fi echo -en "\n End: $depth${spaceSTR:0:$((depth + spacing))}${GREEN}${depFile%.dep}${OFF}" return 0 } #-----------# path_to() { # #-----------# : <B-after->C becomes: A -before-> Bgroupxx -before-> B \ -before-> C the name of the group is chosen so that it is unlikely as a package name (so that it is removed when building the xml book). input vars: None files: .dep files containing dangling edges and "after" qualifiers returns: 0 output: files: .dep files containing no dangling edges and no "after" qualifiers on error: nothing on success: nothing inline_doc local node local id_of_dep local prio_of_dep local build_of_dep local lines_to_remove local lines_to_change local parent local p local b local start local seen for node in $(ls *.dep); do if test $node = root.dep; then continue; fi echo Cleaning $node lines_to_remove= { while read prio_of_dep build_of_dep id_of_dep; do if ! test -f ${id_of_dep}.dep; then lines_to_remove="$lines_to_remove $id_of_dep" continue fi done } <$node for id_of_dep in $lines_to_remove; do sed "/\ $id_of_dep\$/d" -i $node done done for node in $(grep -l ' a ' *.dep); do lines_to_remove= echo Process "runtime" deps in $node if ! [ -e ${node%.dep}groupxx.dep ]; then b=0 for parent in $(grep -l ${node%.dep}\$ *); do p=0 for start in $(grep ' a ' $node | cut -d' ' -f3); do seen=" " if path_to ${start}.dep ${parent%.dep} 3; then p=1; break; fi done if test $p = 0; then b=1 sed -i "s/\ ${node%.dep}\$/&groupxx/" $parent fi done echo "1 b ${node%.dep}" > ${node%.dep}groupxx.dep if test $b = 0; then echo "1 b ${node%.dep}groupxx" >> root.dep; fi fi { while read prio_of_dep build_of_dep id_of_dep; do if test $build_of_dep = a; then if ! grep -q ${id_of_dep} ${node%.dep}groupxx.dep; then echo "$prio_of_dep b ${id_of_dep}" >> ${node%.dep}groupxx.dep fi lines_to_remove="$lines_to_remove $id_of_dep" fi done } <$node for id_of_dep in $lines_to_remove; do sed "/\ $id_of_dep\$/d" -i $node done done for node in $(grep -l ' f ' *); do echo Process "first" deps in $node lines_to_change= { while read prio_of_dep build_of_dep id_of_dep; do if test $build_of_dep = f; then if ! test -f ${id_of_dep}-pass1.dep; then cp ${id_of_dep}{,-pass1}.dep; fi lines_to_change="$lines_to_change $id_of_dep" unset lr { while read p b start; do seen=" " if path_to ${start}.dep ${node%.dep} $p; then lr="$lr $start" fi done } < ${id_of_dep}-pass1.dep for p in $lr; do sed "/\ $p\$/d" -i ${id_of_dep}-pass1.dep done fi done } <$node for id_of_dep in $lines_to_change; do sed "/\ $id_of_dep\$/"'{s/[[:digit:]] f /1 b /;s/$/-pass1/}' -i $node done done } # End clean_subgraph #----------------------------# generate_dependency_tree() { # #----------------------------# : < with dependencies in $1, a file .tree and its dependencies on error: nothing on success: nothing inline_doc local depFile=$1 local priority=$2 local -a rootlink local -a priolink local -a otherlink local -i depth local -i count=0 local id_of_dep local build_of_dep local prio_of_dep local parent local lines_to_remove= local srootlink local priostring local dpriostring local i { read -a rootlink depth=${#rootlink[*]} read -a priolink srootlink="${rootlink[*]} " case $priority in 1) priostring=required ;; 2) priostring=recommended ;; 3) priostring=optional ;; esac # start of depFile echo -en "\nNode: $depth${spaceSTR:0:$depth}${RED}${depFile%.tree}${OFF} $priostring" while read prio_of_dep build_of_dep id_of_dep; do case $prio_of_dep in 1) dpriostring=required ;; 2) dpriostring=recommended ;; 3) dpriostring=optional ;; esac # count entries in file (( count++ )) # Has this entry already been seen? if [ -f ${id_of_dep}.tree ]; then # found ${id_of_dep}.tree already in tree otherlink=($(head -n 1 ${id_of_dep}.tree)) if [ -z "${otherlink[*]}" ] then echo otherlink empty for $id_of_dep.tree echo This should not happen, but happens to happen... exit 1 fi #Do not use "${rootlink[*]}" =~ "${otherlink[*]}": case rootlink=(1 11) # and otherlink=(1 1) if [[ ${srootlink#"${otherlink[*]} "} != ${srootlink} ]]; then # cir. dep echo -en "\nCirc: $((depth+1))${spaceSTR:0:$((depth+1))}${YELLOW}${id_of_dep}${OFF} $dpriostring" # Find lowest priority in branch from parent to depFile: p2=0 for (( i=${#otherlink[*]}; i < $depth ; i++ )) ; do if (( ${priolink[i]} > $p2 )); then p2=${priolink[i]}; fi done if (( $prio_of_dep >= $p2 )); then # prune lines_to_remove="$lines_to_remove $id_of_dep" sed -i "/$id_of_dep/d" ${depFile/.tree/.dep} else # find and set parent, then return lowest priority # The parent has the same link without the last entry. # We do not need otherlink anymore so just destroy the last element unset otherlink[-1] parentNode=$(grep ^"${otherlink[*]}"\$ -l *) return $p2 fi else # not circular: prune tree (but not .dep, since it may happen that # the tree is destroyed and rebuilt in another order) lines_to_remove="$lines_to_remove $id_of_dep" fi # circular or not continue # this dependency has already been seen, and the associated # subtree computed. We are done fi # Has this entry already been seen? # So, this entry has not already been seen. Let's build the corresponding # subtree. First check there is a subtree... # Use -s, because it may happen that after removing lines, .dep exists # but is empty. if [[ -s ${id_of_dep}.dep ]]; then # this dependency has dependencies sed "1i${rootlink[*]} $count\\ ${priolink[*]} $prio_of_dep" < ${id_of_dep}.dep \ > ${id_of_dep}.tree # add link and priolink generate_dependency_tree ${id_of_dep}.tree $prio_of_dep # Test return value, in case we exchange dependencies p2=$? case $p2 in 0) # Normal return ;; $prio_of_dep) # we remove this dep, but since it may become unreachable, # move it to be built later (as a dep of parent). tree_erase ${id_of_dep}.tree lines_to_remove="$lines_to_remove $id_of_dep" sed -i "/${id_of_dep}/d" ${depFile/.tree/.dep} echo "$prio_of_dep b $id_of_dep" >> $parentNode # must be added to .dep in case parentNode is destroyed when erasing # the tree echo "$prio_of_dep b $id_of_dep" >> ${parentNode/.tree/.dep} continue ;; *) # We are backing up return $p2 ;; esac else # id_of_dep has no dependencies, just record the link in a file # and print echo "${rootlink[*]} $count" > ${id_of_dep}.tree echo -en "\nLeaf: $(($depth+1))${spaceSTR:0:$(($depth+1))}${CYAN}${id_of_dep}${OFF} $dpriostring" fi done echo -en "\n End: $depth${spaceSTR:0:$depth}${GREEN}${depFile%.tree}${OFF}" } <$depFile # It may happen that a file is created with several times # the same line. Normally, all those lines but one # would be flagged to be removed (or all of them if # the dependency appeared before). A simple sed /$line/d # destroys all the lines. We should instead remove # only one for each appearance of it in lines_to_remove. # so first get the position of last line and then delete # that line for line in $lines_to_remove do lineno=$(sed -n /^[[:digit:]]\ b\ $line\$/= $depFile | tail -n1) sed -i ${lineno}d $depFile done return 0 } #---------------# tree_browse() { # #---------------# local file=$1 local f #echo file=$file for f in $(grep '[^0-9 ]' $file | sed 's/.* //'); do # echo f=$f if grep -q '[^0-9 ]' ${f}.tree ; then tree_browse ${f}.tree fi echo $f done } #--------------# tree_erase() { # #--------------# local file=$1 local f local rootlink local rootlink2 #echo file=$file rootlink="$(head -n1 $file) " for f in $(grep '[^0-9 ]' $file | sed 's/.* //'); do if [ -f ${f}.tree ]; then rootlink2="$(head -n1 ${f}.tree) " # We want two things: # i) do not erase the file if it is in another branch # ii) do not erase the file if there is a circular dependency # for case i), we test that rootlink is contained in rootlink2 # for case ii), we test that rootlink2 is not contained in # rootlink. # See comment above about srootlink if [[ ${rootlink2#${rootlink}} != ${rootlink2} && ${rootlink#${rootlink2}} == ${rootlink} ]] ; then tree_erase ${f}.tree fi fi done rm -f $file }