+
+sub checkUmbrales {
+ local(*callfields) = $_[0];
+ my $callsfile = $_[1];
+ print("Callfields: @callfields\n");
+ print("Callfile: $callsfile\n");
+ my $matchedUmbral = 0;
+ my $i = 0;
+
+ while (($i <= $#UMBRALES) && ($matchedUmbral == 0)) {
+ $umbral = $UMBRALES[$i];
+ chomp($umbral);
+ ($regid,$phoneline,$oridest,$type,$state) = split(';',$umbral);
+ if (($state eq 'A') && ($callfields[0] == $phoneline) &&
+ ($callfields[4] eq $type)) {
+ # Si es Saliente y coincide el Destino con el Ori/Dest del umbral
+ if (($type eq 'S') && ($callfields[5] eq $oridest)) {
+ $matchedUmbral = $regid;
+ }
+ if (($type eq 'E') && ($callfields[6] eq $oridest)) {
+ $matchedUmbral = $regid;
+ }
+ }
+ ++$i;
+ }
+
+ # Si se matcheo un umbral, grabo una alarma y aviso por consola
+ if ($matchedUmbral > 0) {
+ # Obtengo algunos datos
+ ($central = $callsfile) =~ s/^.*\.//;
+ $user = getlogin || 'Unidentified';
+
+ # Fetch date and Format it
+ ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
+ $year += 1900; ++$mon;
+ $date = "$year$mon$mday";
+ $time = "$hour$min$sec";
+
+ # Preparo el registro de alarma
+ $alarmEntry = "$callfields[7];$central;$callfields[0];$callfields[1];$regid;$callfields[2];$callfields[3];$user;$date;$time";
+
+ # Grabamos el registro en el archivo de alarmas
+ $alarmlog = "$CONFDATA{datadir}/alarmas/alarmas.txt";
+ open(ALARMFILE,">>$alarmlog") or die 'No se pudo abrir el archivo de alarmas';
+ seek(ALARMFILE,0,2);
+ print ALARMFILE "$alarmEntry\n";
+ close(ALARMFILE);
+
+ # Logeo por consola y logfile que hubo una alarma
+ logEntry("Alarma: Se ha matcheado el registro procesado con el umbral nro $matchedUmbral",1);
+ }
+}
+