X-Git-Url: https://git.realraum.at/?p=svn42.git;a=blobdiff_plain;f=checkcard.pl;h=4e3816f6a50a68f302f38d7a64730b0f595f0862;hp=71c1966df286b44f5bf21905a585185b94878278;hb=050398149d26f27a0b19971cbcea990574d73a57;hpb=35f34ea01e12293c9f987cdd69e582d0c88473d7 diff --git a/checkcard.pl b/checkcard.pl index 71c1966..4e3816f 100755 --- a/checkcard.pl +++ b/checkcard.pl @@ -1,37 +1,62 @@ #!/usr/bin/perl -w +use Socket; use strict; my $fh; -my $fifofile = "/tmp/door_cmd.fifo"; -my $keys; +my $socketfile = $ARGV[0] || "/var/run/tuer/door_cmd.socket"; +my $keysfile = '/flash/keys'; + +sleep(1) while (! -S $socketfile); +my $socketaddr = sockaddr_un($socketfile); + my %good; +my $keys_last_read=0; -open $keys,'/flash/realraum/keys'; -while (<$keys>) +sub read_keys { - if ($_ =~ /([0-9A-Fa-f]{8})\s(\S+)/) - { - $good{$1}=$2; - } + %good=(); + my $keys; + open $keys,$keysfile; + while (<$keys>) + { + chomp; + if ($_ =~ /^([0-9A-Fa-f]{8})\s+(.+)$/) + { + $good{$1}=$2; + } + } + close $keys; + $keys_last_read = -M ($keysfile); } sub send_to_fifo { - if( -p $fifofile) - { - open(my $fifo,"> $fifofile"); - print $fifo shift(@_)."\n"; - close($fifo); - } + socket(my $conn, PF_UNIX, SOCK_STREAM,0) || die "socket: $!"; + connect($conn, $socketaddr) || die "socket connect: $!"; + print $conn shift(@_)."\n"; + close($conn); } -while (sleep 1) +read_keys(); + + +while (sleep 2) { - open $fh,'/flash/realraum/mifare-read 0 2>&1 |'; - while (<$fh>) - { - next unless /UID/; + send_to_fifo("log starting mifare-read"); + open $fh,'/flash/tuer/mifare-read 0 2>&1 |'; + + read_keys() unless ($keys_last_read == -M ($keysfile)); + + READLOOP: while (<$fh>) + { + unless (/UID/) + { + close($fh); + system("/usr/bin/killall -9 mifare-read"); + send_to_fifo("log restarting mifare-read after invalid output"); + last READLOOP; + } my ($id) = /UID=(\S+)\s+/; if ($good{$id}) { @@ -50,36 +75,5 @@ while (sleep 1) # # ############################################################### -# /dev/ttyUSB0: door key printer -# -# -# Ok -# Ok, closing now -# Already closed -# Already opened -# close forced manually\nOk -# open forced manually\nOk -# Error: .* -# .* be: unknown command -# Operation in progress -# open/close took too long! -# last open/close operation took to long! -# -# commands: -# c ... close -# response: "Ok", "Already closed", "Error: .*" -# o ... open -# response: "Ok", "Already opened", "Error: .*" -# s ... status -# response: "Status: closed|opened|<->, opening|waiting|closing|idle" -# or "Error: .*" -# r ... reset -# "Ok, closing now" or "Error: .*" -# -# open/close will only be accepted if Status: ..., idle -# Reset overrules all other operations in progress -# s will always be accepted -# -############################################################### # #