2015-02-16 10:38:09 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2011 Whisper Systems
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms.util;
|
|
|
|
|
2016-04-17 16:09:31 +00:00
|
|
|
import android.telephony.SmsMessage;
|
2018-08-01 15:09:24 +00:00
|
|
|
import org.thoughtcrime.securesms.logging.Log;
|
2015-02-16 10:38:09 +00:00
|
|
|
|
2016-04-17 16:09:31 +00:00
|
|
|
public class SmsCharacterCalculator extends CharacterCalculator {
|
2015-11-20 20:58:29 +00:00
|
|
|
|
2017-05-15 19:13:27 +00:00
|
|
|
private static final String TAG = SmsCharacterCalculator.class.getSimpleName();
|
|
|
|
|
2015-02-16 10:38:09 +00:00
|
|
|
@Override
|
2016-04-17 16:09:31 +00:00
|
|
|
public CharacterState calculateCharacters(String messageBody) {
|
2017-05-15 19:13:27 +00:00
|
|
|
int[] length;
|
|
|
|
int messagesSpent;
|
|
|
|
int charactersSpent;
|
|
|
|
int charactersRemaining;
|
2015-02-16 10:38:09 +00:00
|
|
|
|
2017-05-15 19:13:27 +00:00
|
|
|
try {
|
|
|
|
length = SmsMessage.calculateLength(messageBody, false);
|
|
|
|
messagesSpent = length[0];
|
|
|
|
charactersSpent = length[1];
|
|
|
|
charactersRemaining = length[2];
|
|
|
|
} catch (NullPointerException e) {
|
|
|
|
Log.w(TAG, e);
|
|
|
|
messagesSpent = 1;
|
|
|
|
charactersSpent = messageBody.length();
|
|
|
|
charactersRemaining = 1000;
|
|
|
|
}
|
2015-02-16 10:38:09 +00:00
|
|
|
|
2016-09-09 18:53:37 +00:00
|
|
|
int maxMessageSize;
|
|
|
|
|
|
|
|
if (messagesSpent > 0) {
|
|
|
|
maxMessageSize = (charactersSpent + charactersRemaining) / messagesSpent;
|
|
|
|
} else {
|
|
|
|
maxMessageSize = (charactersSpent + charactersRemaining);
|
|
|
|
}
|
|
|
|
|
2019-02-27 03:29:52 +00:00
|
|
|
return new CharacterState(messagesSpent, charactersRemaining, maxMessageSize, maxMessageSize);
|
2015-02-16 10:38:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|