aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSooraj Sasindran <sasindran@google.com>2023-10-25 15:04:46 -0700
committerSooraj Sasindran <sasindran@google.com>2023-10-25 15:07:14 -0700
commit3586032a9be4d31dc2905be29210ba5e313b0614 (patch)
treeca5fa1ebcc50cf715eb4a5b28061ea5bec51367e
parenta53cd33778175b64fecf642f9c1f7fd575312b44 (diff)
downloadMessaging-3586032a9be4d31dc2905be29210ba5e313b0614.tar.gz
Fix the syntax issues in fill sms script
Bug: 307587226 Test: ran manually and verified that db is updated Change-Id: I02e57588433b5ff1e4d2208c172b904deb8d8236
-rw-r--r--[-rwxr-xr-x]tools/messagegen/fillsms25
1 files changed, 18 insertions, 7 deletions
diff --git a/tools/messagegen/fillsms b/tools/messagegen/fillsms
index 6903941..dc2e507 100755..100644
--- a/tools/messagegen/fillsms
+++ b/tools/messagegen/fillsms
@@ -100,9 +100,11 @@ image_list_file=$1
shift
sql_file=$1
shift
+echo $image_list_file
dict_lines=`wc -l < $DICT`
image_files=`wc -l < $image_list_file`
+echo $image_files
if [ $mms_per_thread -gt "0" ]; then
if [ ! -f $image_list_file ]; then
@@ -123,7 +125,7 @@ random_value ()
dict_word ()
{
- local v=$(random_value 30000)
+ local v=$(random_value $dict_lines)
sed $v"q;d" $DICT
}
@@ -156,6 +158,11 @@ adb_sql ()
adb shell sqlite3 data/data/com.android.providers.telephony/databases/mmssms.db "$1"
}
+adb_sql_with_quotes ()
+{
+ echo $1
+ adb shell "sqlite3 data/data/com.android.providers.telephony/databases/mmssms.db \"$1\""
+}
######################################################################################
######################################################################################
@@ -163,6 +170,7 @@ if [ $opt_exec_only -eq "0" ]; then
# clean up sql file
rm -f $sql_file
+ add_sql "PRAGMA trusted_schema=1;"
# add sql to clean up database
add_sql "delete from pdu where _id>=$TABLE_SMS_START_ID;"
add_sql "delete from part where _id>=$TABLE_SMS_START_ID;"
@@ -197,6 +205,7 @@ if [ $opt_exec_only -eq "0" ]; then
# Generate SMS
if [ $sms_per_thread -gt "0" ]; then
+ add_sql "PRAGMA trusted_schema=1;"
half_timestamp_inc=$(( 500 + ((($sms_per_thread + $mms_per_thread) * $TIMESTAMP_INC_IN_SECONDS) * 500 / $sms_per_thread) ))
for j in `seq 1 $sms_per_thread`;
do
@@ -268,20 +277,22 @@ if [ $opt_sql_only -eq "0" ]; then
echo
adb_sql ".read /data/fillsms"
echo
- adb_sql "select count(*) from canonical_addresses where _id>=$TABLE_CANONICAL_ADDRESSES_START_ID;"
+ add_sql "PRAGMA trusted_schema=1;"
+ echo
+ adb_sql_with_quotes "select count(*) from canonical_addresses where _id>=$TABLE_CANONICAL_ADDRESSES_START_ID;"
echo
- adb_sql "select count(*) from threads where _id>=$TABLE_THREADS_START_ID;"
+ adb_sql_with_quotes "select count(*) from threads where _id>=$TABLE_THREADS_START_ID;"
echo
if [ $sms_per_thread -gt "0" ]; then
- adb_sql "select count(*) from sms where _id>=$TABLE_SMS_START_ID;"
+ adb_sql_with_quotes "select count(*) from sms where _id>=$TABLE_SMS_START_ID;"
echo
fi
if [ $mms_per_thread -gt "0" ]; then
- adb_sql "select count(*) from pdu where _id>=$TABLE_SMS_START_ID;"
+ adb_sql_with_quotes "select count(*) from pdu where _id>=$TABLE_SMS_START_ID;"
echo
- adb_sql "select count(*) from part where _id>=$TABLE_SMS_START_ID;"
+ adb_sql_with_quotes "select count(*) from part where _id>=$TABLE_SMS_START_ID;"
echo
- adb_sql "select count(*) from addr where _id>=$TABLE_SMS_START_ID;"
+ adb_sql_with_quotes "select count(*) from addr where _id>=$TABLE_SMS_START_ID;"
echo
fi
fi