Changeset 1d7e681
- Timestamp:
- Jun 29, 2010, 1:20:47 AM (14 years ago)
- Branches:
- debian
- Children:
- 25ed065
- Parents:
- 634455f (diff), 6157f97 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - git-author:
- Jessica B. Hamrick <jhamrick@…> (06/29/10 01:20:47)
- git-committer:
- Jessica B. Hamrick <jhamrick@…> (06/29/10 01:20:47)
- Files:
-
- 31 added
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r5992131 r1d7e681 11 11 debian/stamp-makefile-build 12 12 debian/tmp/ 13 client/bin/*.1.gz -
queue/lib/build-gutenbach-queue
r30beeab r6157f97 8 8 time=$(date) 9 9 echo "This is a work in progress! Please send bugs to jhamrick." >> /var/run/gutenbach/current_queue_temp 10 echo "" 10 echo "" >> /var/run/gutenbach/current_queue_temp 11 11 echo "As of $time:" >> /var/run/gutenbach/current_queue_temp 12 echo "" >> /var/run/gutenbach/current_queue_temp 12 13 /usr/lib/gutenbach/queue/queue >> /var/run/gutenbach/current_queue_temp 13 14 mv /var/run/gutenbach/current_queue_temp /var/run/gutenbach/current_queue -
queue/lib/queue
r30beeab r6157f97 1 #!/ bin/bash1 #!/usr/bin/perl 2 2 3 found_current= 3 use Net::CUPS; 4 use Net::CUPS::Destination; 5 use Image::ExifTool qw(ImageInfo); 4 6 5 if [ -e "/var/run/gutenbach/queue_times" ]; then 6 rm "/var/run/gutenbach/queue_times" 7 fi 7 use strict; 8 use warnings; 8 9 9 if [ -e /usr/lib/gutenbach/config/printername ]; then 10 printername=$(cat /usr/lib/gutenbach/config/printername) 10 use vars qw/$queue/; 11 require "/usr/lib/gutenbach/config/gutenbach-filter-config.pl" or die "Unable to load configuration"; 11 12 12 cd /var/spool/lpd/"$printername"/ 13 for i in $(ls . | grep ^hf); do 14 done=$(cat "$i" | grep done) 15 if [ ! -n "$done" ]; then 16 timestamp=$(cat "$i" | grep ^job_time= | sed 's/.*=//') 17 echo "$timestamp:$i" >> /var/run/gutenbach/queue_times 18 fi 19 done 13 my $cups = Net::CUPS->new(); 14 my $printer = $cups->getDestination("$queue"); 15 my @jobs = $printer->getJobs( 0, 0 ); 16 my $job_ref; 17 my $jobid; 18 my $attr; 20 19 21 if [ -e /var/run/gutenbach/queue_times ]; then 22 for i in $(sort /var/run/gutenbach/queue_times); do 23 i=$(echo "$i" | sed 's/.*://') 24 prefix="df"${i:2} 25 for j in "$prefix"*; do song="$j"; done 26 27 user=$(cat "$i" | grep ^P=) 28 user=${user:2} 29 30 if [ -e /var/run/gutenbach/exiftool_data ]; then 31 rm /var/run/gutenbach/exiftool_data 32 fi 33 34 exiftool "$song" >> /var/run/gutenbach/exiftool_data 35 title=$(cat /var/run/gutenbach/exiftool_data | grep "^Title " | sed 's/.*: //') 36 artist=$(cat /var/run/gutenbach/exiftool_data | grep "^Artist " | sed 's/.*: //') 37 38 if [ -z "$found_current" ]; then 39 host=$(cat "$i" | grep ^H=) 40 host=${host:2} 41 filenm="$(cat $i | grep "^filenames" | sed -e 's/filenames=//')" 42 album=$(cat /var/run/gutenbach/exiftool_data | grep "^Album " | sed 's/.*: //') 43 echo "$user@$host is currently playing: " 44 echo "$filenm" 45 echo "'$title'" 46 echo "by '$artist'" 47 echo "on '$album'" 48 echo "" 49 echo "Coming up in the queue:" 50 found_current="true" 51 else 52 echo "$user: '$title' by '$artist'" 53 fi 54 done 55 fi 56 else 57 echo "Error: Printer name configuration file /usr/lib/gutenbach/config/printername does not exist!" 58 exit 1 59 fi 20 my $jobnum = 0; 21 foreach $jobid(@jobs) 22 { 23 $job_ref = $printer->getJob($jobid); 24 my $filepath = "/var/spool/cups/d0$job_ref->{'id'}-001"; 25 my $fileinfo = ImageInfo($filepath); 26 my $magic = $fileinfo->{FileType}; 27 28 if ($jobnum == 0) 29 { 30 print $job_ref->{'user'}." is currently playing:\n"; 31 print "\t".$magic." file ".$job_ref->{'title'}."\n"; 32 33 if ($magic) 34 { 35 foreach my $key (qw/Title Artist Album AlbumArtist/) 36 { 37 if (exists $fileinfo->{$key}) 38 { 39 print "\t$fileinfo->{$key}\n"; 40 } 41 } 42 } 43 44 print "\nComing up the queue:\n\n"; 45 } 46 else 47 { 48 if ($magic) 49 { 50 my $user = $job_ref->{'user'}; 51 my $title = $fileinfo->{'Title'}; 52 my $artist = $fileinfo->{'Artist'}; 53 my $album = $fileinfo->{'Album'}; 54 print "$user: \"$title\" by \"$artist\" on \"$album\"\n"; 55 } 56 } 57 58 $jobnum += 1; 59 }
Note: See TracChangeset
for help on using the changeset viewer.