swh:1:snp:c7c108084bc0bf3d81436bf980b46e98bd338453
Raw File
Tip revision: 332c2b26cbf3a25a22ed7cdf0829b6d9339e31fe authored by Henrik Andersson on 13 March 2012, 21:29:39 UTC
Merge branch 'master' of ssh://darktable.git.sourceforge.net/gitroot/darktable/darktable
Tip revision: 332c2b2
create_metadata.sh
#!/bin/sh

inputfile=$1
outputdir=$2
outputheader=metadata_gen.h
outputbody=metadata_gen.c

headerdefine=__$(printf $outputheader | tr '[:lower:].' '[:upper:]_')__
# header of the .h file
cat > $outputdir/$outputheader << EOF
/** generated file, do not edit! */

#ifndef $headerdefine
#define $headerdefine

typedef enum dt_metadata_t
{
EOF

# header of the .c file
cat > $outputdir/$outputbody << EOF
/** generated file, do not edit! */

#include <string.h>
#include "$outputheader"

dt_metadata_t dt_metadata_get_keyid(const char* key)
{
EOF

# iterate over the input
first=0
for line in $(cat $inputfile | grep -v "^#"); do
    enum=DT_METADATA_$(printf $line | tr '[:lower:].' '[:upper:]_')
    length=$(printf $line | wc -c)
    if [ "$first" -ne 0 ]; then
        printf ",\n" >> $outputdir/$outputheader
    fi
    printf "    $enum" >> $outputdir/$outputheader
    first=1

    cat >> $outputdir/$outputbody << EOF
    if(strncmp(key, "$line", $length) == 0)
        return $enum;
EOF

done

# end of the .h file
cat >> $outputdir/$outputheader << EOF

}
dt_metadata_t;

dt_metadata_t dt_metadata_get_keyid(const char* key);

#endif

EOF

# end of the .c file
cat >> $outputdir/$outputbody << EOF
    return -1;
}

EOF
back to top