使用Device :: Gsm,我可以读取我的umts-modem上收到的短信。由于一个短信的长度有限,有时一条消息被分为两个或多个短信。有没有办法找出一组短信是否是一条消息的一部分?例如,Wammu将我作为一个文本归为一类的短信。
#!/usr/bin/perl
use warnings; use strict;
use Device::Gsm;
my $modem = new Device::Gsm( port => '/dev/ttyUSB0' );
if( $modem->connect() ) {
print "connected!\n";
}
else {
print "sorry, no connection with serial port!\n";
}
my @msg = $modem->messages;
if( @msg ) {
my $n = 0;
for( @msg ) {
my $sms = $_;
next unless defined $sms;
print "\nMESSAGE N. $n\n";
print 'Text [', $sms->text(), "]\n";
$n++;
}
}
else {
print "No message on SIM, or error during read!\n";
}
连接!
MESSAGE N. 0 文本[消息1第1部分]
消息N. 1 文本[消息1第2部分]
MESSAGE N. 2 文字[消息1第3部分]
MESSAGE N. 3 文字[留言2]
MESSAGE N. 4 文字[留言3]
答案 0 :(得分:3)
我认为没有直接使用Device :: Gsm的方法。但是,如果您在PDU模式下阅读消息(请参阅https://metacpan.org/pod/Device::Gsm#mode),则可以适当地解释标头以读出多部分标志。
[编辑添加:此参考是SMS PDU标头的一个很好的概述: http://www.spallared.com/old_nokia/nokia/smspdu/smspdu.htm]
答案 1 :(得分:0)
这主要起作用,但并非总是如此。
#!/usr/bin/perl
use warnings; use strict;
use 5.010;
binmode STDOUT, ':encoding(UTF-8)';
use Device::Gsm;
my $modem = new Device::Gsm( port => '/dev/ttyUSB0' );
if( $modem->connect() ) {
print "connected!\n";
} else {
print "sorry, no connection with serial port!\n";
}
my @msg = $modem->messages( 'ME' );
if( @msg ) {
print "You have messages!\n" ;
my $n = 0;
my $text;
for my $sms ( @msg ) {
next unless defined $sms;
$text .= $sms->text;
if ( $sms->{tokens}{PDUTYPE}{_MMS} ) {
say "\nMESSAGE N. $n";
say $text;
$text = '';
$n++;
<STDIN>;
}
}
} else {
print "No message or error during read!\n";
}