#!/usr/bin/ksh
#
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#
# ident	"@(#)ppdfilename2mmp	1.3	08/07/07 SMI"
#

#
# Get the make/model/nickname as well as the repository/label from ppdfilename
#

# Input
#	ppdfilename
#	/var/lp/ppd/user/HP/foo.ppd.gz
# Output
#	make
#	model
#	label(repository letter): driver
#
#	Lexmark
#	IBM Page Printer 3112
#	foomatic(L): Foomatic/hpijs
#

if [[ $# -lt 1 ]]; then
        exit 1
fi

cachefile=/var/lp/ppd/ppdcache
[[ -f $cachefile ]] || exit 1

cacheentry=$(/bin/grep "$1" $cachefile)
[[ -n "$cacheentry" ]] || exit 1

#
# Retrieve the manufacturer (make)
# Use only the first word in manufacturer entry
#
manuf=$(echo "$cacheentry" | 
nawk '{FS=":"; print $1}' |
nawk '{print $1}')

# Retrieve the model
model=$(echo "$cacheentry" | nawk '{FS=":"; print $2}')

# Retrieve the driver
driver=$(echo "$cacheentry" | nawk '{FS=":"; print $3}')

#
# Retrieve the PPD path.  Parse the PPD path to get the
# label path and to figure out the repository letter
# associated with the label path.  Note:
# the PPD file name is the 6th colon separated entry
# in the cache entry.  This is may need to be modified if the
# format changes.
#
ppdpath=$(echo "$cacheentry" | /bin/nawk '{FS=":"; print $6}' )
manupath=$(/bin/dirname "$ppdpath")
labelpath=$(/bin/dirname "$manupath")

case "$labelpath" in
/usr/lib/lp/model/ppd/system/*)
	repltr=S
		;;
/opt/share/ppd/*)
	repltr=V
	;;
/usr/local/share/ppd/*)
	repltr=A
	;;
/var/lp/ppd/*)
	repltr=U
	;;
esac

[[ -n "${repltr}" ]] || exit 1
echo "${manuf}\n${model}"
echo "$(/bin/basename "$labelpath")(${repltr}): $driver"

exit 0
