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;
|
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
|
|
|
|
2015-02-16 10:38:09 +00:00
|
|
|
@Override
|
2016-04-17 16:09:31 +00:00
|
|
|
public CharacterState calculateCharacters(String messageBody) {
|
2015-02-16 10:38:09 +00:00
|
|
|
|
2016-04-17 16:09:31 +00:00
|
|
|
int[] length = SmsMessage.calculateLength(messageBody, false);
|
|
|
|
int messagesSpent = length[0];
|
|
|
|
int charactersSpent = length[1];
|
|
|
|
int charactersRemaining = length[2];
|
|
|
|
int maxMessageSize = (charactersSpent + charactersRemaining) / messagesSpent;
|
2015-02-16 10:38:09 +00:00
|
|
|
|
|
|
|
return new CharacterState(messagesSpent, charactersRemaining, maxMessageSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|