1 package ro
.ieval
.fonbot
;
3 import static ro
.ieval
.fonbot
.R
.string
.cannot_parse_count
;
4 import static ro
.ieval
.fonbot
.R
.string
.cannot_parse_interval
;
5 import static ro
.ieval
.fonbot
.R
.string
.cannot_parse_min_distance
;
6 import static ro
.ieval
.fonbot
.R
.string
.cannot_parse_min_time
;
7 import static ro
.ieval
.fonbot
.R
.string
.cannot_parse_port
;
8 import static ro
.ieval
.fonbot
.R
.string
.cannot_parse_provider_allowed_values_are
;
9 import static ro
.ieval
.fonbot
.R
.string
.command_disabled
;
10 import static ro
.ieval
.fonbot
.R
.string
.could_not_parse_argument_allowed_values_are
;
11 import static ro
.ieval
.fonbot
.R
.string
.could_not_parse_ms
;
12 import static ro
.ieval
.fonbot
.R
.string
.error_while_processing_command
;
13 import static ro
.ieval
.fonbot
.R
.string
.invalid_length_allowed_values_are
;
14 import static ro
.ieval
.fonbot
.R
.string
.invalid_ringer_mode_valid_values_are
;
15 import static ro
.ieval
.fonbot
.R
.string
.location_tracking_is_active
;
16 import static ro
.ieval
.fonbot
.R
.string
.messagetype_should_be_one_of
;
17 import static ro
.ieval
.fonbot
.R
.string
.no_such_command_command_list
;
18 import static ro
.ieval
.fonbot
.R
.string
.notification_disabled
;
19 import static ro
.ieval
.fonbot
.R
.string
.notification_enabled
;
20 import static ro
.ieval
.fonbot
.R
.string
.ringing
;
21 import static ro
.ieval
.fonbot
.R
.string
.security_exception
;
22 import static ro
.ieval
.fonbot
.R
.string
.the_polling_service_is_running
;
23 import static ro
.ieval
.fonbot
.R
.string
.the_second_argument_to_wipe_must_be
;
24 import static ro
.ieval
.fonbot
.R
.string
.unknown_command
;
25 import static ro
.ieval
.fonbot
.R
.string
.wipetype_should_be_one_of
;
27 import java
.net
.MalformedURLException
;
29 import java
.util
.Arrays
;
30 import java
.util
.Locale
;
32 import org
.eclipse
.jdt
.annotation
.NonNull
;
33 import org
.eclipse
.jdt
.annotation
.Nullable
;
35 import ro
.ieval
.fonbot
.Address
.Protocol
;
36 import android
.content
.Context
;
37 import android
.content
.Intent
;
38 import android
.content
.SharedPreferences
;
39 import android
.database
.Cursor
;
40 import android
.location
.LocationManager
;
41 import android
.media
.AudioManager
;
42 import android
.net
.Uri
;
43 import android
.preference
.PreferenceManager
;
44 import android
.provider
.ContactsContract
.PhoneLookup
;
45 import android
.telephony
.SmsManager
;
46 import android
.util
.Log
;
47 import android
.widget
.Toast
;
50 * Copyright © 2013 Marius Gavrilescu
52 * This file is part of FonBot.
54 * FonBot is free software: you can redistribute it and/or modify
55 * it under the terms of the GNU General Public License as published by
56 * the Free Software Foundation, either version 3 of the License, or
57 * (at your option) any later version.
59 * FonBot is distributed in the hope that it will be useful,
60 * but WITHOUT ANY WARRANTY; without even the implied warranty of
61 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
62 * GNU General Public License for more details.
64 * You should have received a copy of the GNU General Public License
65 * along with FonBot. If not, see <http://www.gnu.org/licenses/>.
69 * Utility functions and enums used in various places.
71 * @author Marius Gavrilescu <marius@ieval.ro>
73 public final class Utils
{
75 * Enum of all FonBot commands.
77 * @author Marius Gavrilescu <marius@ieval.ro>
79 @SuppressWarnings("javadoc")
80 public static enum Command
{
81 TOAST
, ECHO
, SMS
, FLASH
, WIFI
,
82 BLUETOOTH
, DIAL
, RING
, SPEAK
, VIBRATE
,
83 DIALOG
, LOCATION
, NOLOCATION
, RINGER
, NCFILE
,
84 PHOTO
, SETNOTIFICATION
, DELNOTIFICATION
, SETPASSWORD
, HELP
,
85 WIPE
, LOCK
, VIEW
, PLAY
, PAUSE
,
86 NEXT
, PREV
, BATT
, CALLLOG
, SMSLOG
,
87 LS
, RM
, CONTACTS
, DISABLE
, ENABLE
,
88 POLL
, HANGUP
, ANSWER
, LAUNCH
, DATA
,
89 GPS
, GLOCATION
, REBOOT
, SHUTDOWN
, NOTIFY
93 * Enum of all message types. Each message type is a kind of notification which can be enabled/disabled by the user and directed to a certain address.
95 * @author Marius Gavrilescu <marius@ieval.ro>
98 public static enum MessageType
{
99 /** SMS notifications */
101 /** Phone state (idle, offhook or ringing) notifications */
103 /** Lockscreen failed password notifications */
105 /** Device admin enable/disable notifications */
107 /** Coarse battery status (low battery, ok battery) notifications */
109 /** Fine battery status notifications */
111 /** Headset plug/unplug notifications */
116 * Enum of wipe types. The two defined types are the data wipe (which does not include the SD card) and the full wipe (which includes the SD card).
118 * @author Marius Gavrilescu <marius@ieval.ro>
120 public static enum WipeType
{
121 /** Factory reset the phone, without touching the SD card */
123 /** Factory reset the phone and wipe the SD card too */
128 * Enum of ringer modes.
130 * @author Marius Gavrilescu <marius@ieval.ro>
132 public static enum RingerMode
{
135 /** Sound is off, vibrate is on */
137 /** Sound is off, vibrate is off */
142 * Enum of location providers
144 * @author Marius Gavrilescu <marius@ieval.ro>
146 public static enum LocationProvider
{
147 /** The network location provider */
149 /** The GPS location provider */
154 * Enum of toast lengths.
156 * @author Marius Gavrilescu <marius@ieval.ro>
158 private static enum ToastLength
{
166 * Enum of the values on and off. Used for boolean arguments.
168 * @author Marius Gavrilescu <marius@ieval.ro>
170 @SuppressWarnings("javadoc")
171 private static enum OnOff
{
176 * Enum of ongoing event types
178 * @author Marius Gavrilescu <marius@ieval.ro>
180 public static enum OngoingEvent
{
181 /** Location tracking is active. Registered by {@link Command#LOCATION}, unregistered by {@link Command#NOLOCATION} */
182 LOCATION(location_tracking_is_active
),
183 /** The phone is ringing. Registered/unregistered by {@link Command#RING} */
185 /** The polling alarm is on. Registered/unregistered by {@link Command#POLL} */
186 POLL(the_polling_service_is_running
);
188 /** String resource: the event description */
189 public final int resource
;
192 * Constructs an OngoingEvent from its event description.
194 * @param resource the event description
196 private OngoingEvent(final int resource
) {
197 this.resource
=resource
;
201 /** Confirmation string for the {@link Command#WIPE WIPE} command. */
202 public static final String WIPE_CONFIRM_STRING
="I am aware this cannot be undone";
205 * Converts a Nullable object into a NonNull one.
207 * @param object the Nullable object to convert
208 * @return a NonNull object equivalent to the Nullable parameter
209 * @throws AssertionError if the given object is null
211 public static <T
> T
toNonNull(@Nullable T object
) throws AssertionError
{
213 Log
.wtf(Utils
.class.getName(), "toNonNull called with null");
214 throw new AssertionError("Log.wtf did not terminate the process");
220 * Join an array of Objects with elements separated by a separator into a single string.
222 * @param separator the separator
223 * @param offset the offset into the array
224 * @param args the array of Objects to join
225 * @return the joined string
227 public static String
join(final String separator
,final int offset
,final Object
[] args
){
228 final StringBuilder sb
=new StringBuilder(240);
229 sb
.append(args
[offset
]);
230 for (int i
= offset
+1; i
< args
.length
; i
++) {
231 sb
.append(separator
);
234 return toNonNull(sb
.toString());
238 * Join an array of Objects with elements separated by a separator into a single string.
240 * @param separator the separator
241 * @param args the array of objects to join
242 * @return the joined string
244 public static String
join(final String separator
, final Object
[] args
){
245 return join(separator
,0,args
);
249 * Send a notification to the user.
251 * @param context Context instance
252 * @param type notification type
253 * @param resource String resource for the message text
255 public static void sendMessage(final Context context
, final MessageType type
, final int resource
){
256 sendMessage(context
, type
, toNonNull(context
.getString(resource
)));
260 * Send a notification to the user.
262 * @param context Context instance
263 * @param type notification type
264 * @param resource String resource for the message text
265 * @param args format parameters for the resource
267 public static void sendMessage(final Context context
, final MessageType type
, final int resource
, final Object
... args
){
268 sendMessage(context
, type
, toNonNull(context
.getString(resource
, args
)));
272 * Send a message to a certain Address.
274 * @param context Context instance
275 * @param address destination Address
276 * @param resource String resource for the message text
278 public static void sendMessage(final Context context
, final Address address
, final int resource
){
279 sendMessage(context
, address
, toNonNull(context
.getString(resource
)));
283 * Send a message to a certain Address.
285 * @param context Context instance
286 * @param address destination Address
287 * @param resource String resource for the message text
288 * @param args format parameters for the resource
290 public static void sendMessage(final Context context
, final Address address
, final int resource
, final Object
... args
){
291 sendMessage(context
, address
, toNonNull(context
.getString(resource
, args
)));
295 * Send a notification to the user.
297 * @param context Context instance
298 * @param type notification type
299 * @param msg the notification text
301 public static void sendMessage(final Context context
, final MessageType type
,final String msg
){
302 final SharedPreferences sp
=PreferenceManager
.getDefaultSharedPreferences(context
);
303 final String address
=sp
.getString(type
.toString(),null);
306 sendMessage(context
, new Address(address
), msg
);
310 * Send a message to a certain Address.
312 * @param context Context instance
313 * @param address destination Address
314 * @param message the message text
316 public static void sendMessage(final Context context
, final Address address
, final String message
){
317 switch(address
.protocol
){
319 new HttpCallExecutableRunnable("/send", toNonNull(Arrays
.asList(
320 new Header("X-Destination", toNonNull(address
.data
)))), context
, null, true, message
).execute();
324 SmsManager
.getDefault().sendTextMessage(address
.data
, null, message
, null, null);
328 final Intent intent
= new Intent(FonBotLocalActivity
.RESPONSE_RECEIVED_ACTION
);
329 intent
.putExtra(FonBotLocalActivity
.EXTRA_RESPONSE
, message
);
330 context
.sendBroadcast(intent
);
339 * Splits a string into words.
341 * @param string the string
342 * @return an array of words
344 public static String
[] shellwords(final String string
){
345 return toNonNull(string
.split("[ ]+(?=([^\"]*\"[^\"]*\")*[^\"]*$)"));//TODO: Make this handle backslash escapes
349 * Returns the name associated with a phone number.
351 * @param context Context instance
352 * @param number phone number to search for
353 * @return the name associated with this number, or null if the number was not found in the contacts.
355 public static @Nullable String
callerId(final Context context
, final String number
){
356 final Cursor cursor
=context
.getContentResolver().query(
357 Uri
.withAppendedPath(PhoneLookup
.CONTENT_FILTER_URI
, Uri
.encode(number
)),
358 new String
[]{PhoneLookup
.DISPLAY_NAME
},
363 if(cursor
.moveToFirst()){
364 final String name
=cursor
.getString(0);
373 * Registers an ongoing event.
375 * @param context Context instance
376 * @param event event to register
378 public static void registerOngoing(final Context context
, final OngoingEvent event
){
379 final Intent intent
=new Intent(context
, FonBotMainService
.class);
380 intent
.setAction(FonBotMainService
.ACTION_PUT_ONGOING
);
381 intent
.putExtra(FonBotMainService
.EXTRA_ONGOING_ID
, event
.ordinal());
382 context
.startService(intent
);
386 * Unregisters an ongoing event
388 * @param context Context instance
389 * @param event event to unregister
391 public static void unregisterOngoing(final Context context
, final OngoingEvent event
){
392 final Intent intent
=new Intent(context
, FonBotMainService
.class);
393 intent
.setAction(FonBotMainService
.ACTION_DELETE_ONGOING
);
394 intent
.putExtra(FonBotMainService
.EXTRA_ONGOING_ID
, event
.ordinal());
395 context
.startService(intent
);
399 * Gets the server URL according to the user preferences.
401 * @param context Context instance
402 * @param path URL path
403 * @return the server URL
404 * @throws MalformedURLException if the user preferences create an invalid URL
406 public static URL
getServerURL(final Context context
, final String path
) throws MalformedURLException
{
407 final String hostname
=PreferenceManager
.getDefaultSharedPreferences(context
).getString("hostname", "fonbot.ieval.ro");
408 final int port
=Integer
.parseInt(PreferenceManager
.getDefaultSharedPreferences(context
).getString("port", "443"));
409 final URL url
=new URL("https", hostname
, port
, path
);
414 * Poll the server for pending commands. This function must not be called from BroadcastReceivers
416 * @param context Context instance
418 public static void pollServer(final Context context
){
419 new HttpCallExecutableRunnable("/get", null, context
, new PollResultCallback(context
), false).execute();
423 * Poll the server for pending commands from {@link FonBotMainService}. This function should be used from BroadcastReceviers instead of {@link #pollServer}
425 * @param context Context instance
427 public static void safePollServer(final Context context
){
428 final Intent intent
=new Intent(context
, FonBotMainService
.class);
429 intent
.setAction(FonBotMainService
.ACTION_TRIGGER_POLL
);
430 context
.startService(intent
);
433 * Executes a given command
435 * @param context Context instance
436 * @param cmd Command to execute
437 * @param args arguments for the command
438 * @param replyTo Address to send replies to
440 private static void processCommand(final Context context
, final Command cmd
,final String
[] args
,final Address replyTo
){
441 if(Heavy
.isCommandDisabled(context
, cmd
)){
442 sendMessage(context
, replyTo
, command_disabled
, cmd
.toString());
448 if(args
.length
< 1 || args
.length
> 2){
449 Heavy
.help(context
, replyTo
, toNonNull(Command
.TOAST
));
454 Heavy
.toast(context
, replyTo
, toNonNull(args
[0]));
457 switch(ToastLength
.valueOf(args
[1].toUpperCase(Locale
.ENGLISH
))){
459 Heavy
.toast(context
, replyTo
, toNonNull(args
[0]), Toast
.LENGTH_LONG
);
462 Heavy
.toast(context
, replyTo
, toNonNull(args
[0]), Toast
.LENGTH_SHORT
);
464 } catch(IllegalArgumentException e
){
465 sendMessage(context
, replyTo
, invalid_length_allowed_values_are
, join(", ",toNonNull(ToastLength
.values())));
472 Heavy
.help(context
, replyTo
, toNonNull(Command
.ECHO
));
475 sendMessage(context
, replyTo
, join(" ",args
));
480 Heavy
.help(context
, replyTo
, toNonNull(Command
.SMS
));
483 Heavy
.sms(context
, replyTo
, toNonNull(args
[0]), join(" ", 1, args
));
487 if(args
.length
!= 1){
488 Heavy
.help(context
, replyTo
, toNonNull(Command
.FLASH
));
493 Heavy
.flash(context
, replyTo
, OnOff
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
)) == OnOff
.ON
);
494 } catch(IllegalArgumentException e
) {
495 sendMessage(context
, replyTo
, could_not_parse_argument_allowed_values_are
, join(", ", toNonNull(OnOff
.values())));
501 Heavy
.help(context
, replyTo
, toNonNull(Command
.WIFI
));
505 Heavy
.wifi(context
, replyTo
);
508 Heavy
.wifi(context
, replyTo
, OnOff
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
)) == OnOff
.ON
);
509 } catch(IllegalArgumentException e
) {
510 sendMessage(context
, replyTo
, could_not_parse_argument_allowed_values_are
, join(", ", toNonNull(OnOff
.values())));
517 Heavy
.help(context
, replyTo
, toNonNull(Command
.BLUETOOTH
));
521 Heavy
.bluetooth(context
, replyTo
);
524 Heavy
.bluetooth(context
, replyTo
, OnOff
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
)) == OnOff
.ON
);
525 } catch(IllegalArgumentException e
) {
526 sendMessage(context
, replyTo
, could_not_parse_argument_allowed_values_are
, join(", ", toNonNull(OnOff
.values())));
533 Heavy
.help(context
, replyTo
, toNonNull(Command
.DIAL
));
536 Heavy
.dial(context
, replyTo
, toNonNull(args
[0]));
541 Heavy
.help(context
, replyTo
, toNonNull(Command
.RING
));
545 Heavy
.ring(context
, replyTo
);
548 Heavy
.ring(context
, replyTo
, OnOff
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
)) == OnOff
.ON
);
549 } catch(IllegalArgumentException e
){
550 sendMessage(context
, replyTo
, could_not_parse_argument_allowed_values_are
, join(", ", toNonNull(OnOff
.values())));
557 Heavy
.help(context
, replyTo
, toNonNull(Command
.SPEAK
));
560 Heavy
.speak(context
, replyTo
, join(" ",args
));
565 Heavy
.help(context
, replyTo
, toNonNull(Command
.VIBRATE
));
570 ms
=Long
.parseLong(args
[0]);
571 } catch(NumberFormatException e
){
572 sendMessage(context
, replyTo
, could_not_parse_ms
);
575 Heavy
.vibrate(context
, replyTo
, ms
);
578 case DIALOG
://TODO: Should add an edittext
580 Heavy
.help(context
, replyTo
, toNonNull(Command
.DIALOG
));
583 final String
[] buttons
=new String
[args
.length
-1];
584 System
.arraycopy(args
,1,buttons
,0,buttons
.length
);
585 Heavy
.dialog(context
, replyTo
, toNonNull(args
[0]), buttons
);
589 if(args
.length
>3||args
.length
<1){
590 Heavy
.help(context
, replyTo
, toNonNull(Command
.LOCATION
));
594 final @NonNull String provider
;
596 switch(LocationProvider
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
))){
598 provider
=toNonNull(LocationManager
.GPS_PROVIDER
);
602 provider
=toNonNull(LocationManager
.NETWORK_PROVIDER
);
605 } catch(IllegalArgumentException e
){
606 sendMessage(context
, replyTo
, cannot_parse_provider_allowed_values_are
, join(", ",toNonNull(LocationProvider
.values())));
611 final float minDistance
;
615 minTime
=Long
.parseLong(args
[1]);
616 } catch (NumberFormatException e
){
617 sendMessage(context
, replyTo
, cannot_parse_min_time
);
625 minDistance
=Float
.parseFloat(args
[2]);
626 } catch (NumberFormatException e
){
627 sendMessage(context
, replyTo
, cannot_parse_min_distance
);
632 Heavy
.location(context
, replyTo
, provider
, minTime
, minDistance
);
636 Heavy
.nolocation(context
, replyTo
);
641 Heavy
.help(context
, replyTo
, toNonNull(Command
.RINGER
));
645 Heavy
.ringer(context
, replyTo
);
648 final RingerMode rm
=RingerMode
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
));
651 Heavy
.ringer(context
, replyTo
, AudioManager
.RINGER_MODE_NORMAL
);
654 Heavy
.ringer(context
, replyTo
, AudioManager
.RINGER_MODE_VIBRATE
);
657 Heavy
.ringer(context
, replyTo
, AudioManager
.RINGER_MODE_SILENT
);
660 } catch (IllegalArgumentException e
){
661 Utils
.sendMessage(context
, replyTo
, invalid_ringer_mode_valid_values_are
, join(", ",toNonNull(RingerMode
.values())));
668 Heavy
.help(context
, replyTo
, toNonNull(Command
.NCFILE
));
672 final int ncfilePort
;
674 ncfilePort
=Integer
.parseInt(args
[2]);
675 } catch (NumberFormatException e
){
676 sendMessage(context
, replyTo
, cannot_parse_port
);
679 Heavy
.ncfile(context
, replyTo
, toNonNull(args
[0]), toNonNull(args
[1]), ncfilePort
);
684 Heavy
.help(context
, replyTo
, toNonNull(Command
.PHOTO
));
689 photoPort
=Integer
.parseInt(args
[1]);
690 } catch (NumberFormatException e
){
691 sendMessage(context
, replyTo
, cannot_parse_port
);
694 Heavy
.photo(context
, replyTo
, toNonNull(args
[0]), photoPort
);
697 case SETNOTIFICATION
:
699 Heavy
.help(context
, replyTo
, toNonNull(Command
.SETNOTIFICATION
));
704 PreferenceManager
.getDefaultSharedPreferences(context
).edit()
705 .putString(MessageType
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
)).toString(), replyTo
.toString())
707 sendMessage(context
, replyTo
, notification_enabled
);
708 } catch (IllegalArgumentException e
){
709 sendMessage(context
, replyTo
, messagetype_should_be_one_of
, join(", ",toNonNull(MessageType
.values())));
715 case DELNOTIFICATION
:
717 Heavy
.help(context
, replyTo
, toNonNull(Command
.DELNOTIFICATION
));
722 PreferenceManager
.getDefaultSharedPreferences(context
).edit()
723 .remove(MessageType
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
)).toString())
725 sendMessage(context
, replyTo
, notification_disabled
);
726 } catch (IllegalArgumentException e
){
727 sendMessage(context
, replyTo
, messagetype_should_be_one_of
, join(", ",toNonNull(MessageType
.values())));
735 Heavy
.help(context
, replyTo
, toNonNull(Command
.SETPASSWORD
));
741 Heavy
.setPassword(context
, replyTo
);
743 Heavy
.setPassword(context
, replyTo
, toNonNull(args
[0]));
744 } catch (SecurityException e
){
745 sendMessage(context
, replyTo
, security_exception
+e
.getMessage());
751 Heavy
.help(context
, replyTo
, toNonNull(Command
.WIPE
));
755 if(!args
[1].equalsIgnoreCase(WIPE_CONFIRM_STRING
)){
756 sendMessage(context
, replyTo
, the_second_argument_to_wipe_must_be
, WIPE_CONFIRM_STRING
);
761 Heavy
.wipe(context
, toNonNull(WipeType
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
))));
762 } catch (IllegalArgumentException e
){
763 sendMessage(context
, replyTo
, wipetype_should_be_one_of
, join (", ",toNonNull(WipeType
.values())));
764 } catch (SecurityException e
){
765 sendMessage(context
, replyTo
, security_exception
, e
.getMessage());
771 Heavy
.lock(context
, replyTo
);
772 } catch (SecurityException e
){
773 sendMessage(context
, replyTo
, security_exception
, e
.getMessage());
779 Heavy
.help(context
, replyTo
, toNonNull(Command
.VIEW
));
783 Heavy
.view(context
, replyTo
, toNonNull(Uri
.parse(args
[0])));
787 Heavy
.musicPlayerCommand(context
, replyTo
, "play");
791 Heavy
.musicPlayerCommand(context
, replyTo
, "pause");
795 Heavy
.musicPlayerCommand(context
, replyTo
, "next");
799 Heavy
.musicPlayerCommand(context
, replyTo
, "previous");
803 Heavy
.batt(context
, replyTo
);
807 if (args
.length
> 1) {
808 Heavy
.help(context
, replyTo
, toNonNull(Command
.CALLLOG
));
812 if (args
.length
== 0)
813 Heavy
.calllog(context
, replyTo
, 5);
816 Heavy
.calllog(context
, replyTo
, Integer
.parseInt(args
[0]));
817 } catch (IllegalArgumentException e
){
818 sendMessage(context
, replyTo
, cannot_parse_count
);
824 if (args
.length
> 1) {
825 Heavy
.help(context
, replyTo
, toNonNull(Command
.SMSLOG
));
829 if (args
.length
== 0)
830 Heavy
.smslog(context
, replyTo
, 5);
833 Heavy
.smslog(context
, replyTo
, Integer
.parseInt(args
[0]));
834 } catch (IllegalArgumentException e
) {
835 sendMessage(context
, replyTo
, cannot_parse_count
);
841 if(args
.length
!= 1){
842 Heavy
.help(context
, replyTo
, toNonNull(Command
.HELP
));
847 Heavy
.help(context
, replyTo
, toNonNull(Command
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
))));
848 } catch (IllegalArgumentException e
) {
849 sendMessage(context
, replyTo
, no_such_command_command_list
, join(", ", toNonNull(Command
.values())));
854 if(args
.length
!= 1){
855 Heavy
.help(context
, replyTo
, toNonNull(Command
.LS
));
859 Heavy
.ls(context
, replyTo
, toNonNull(args
[0]));
863 if(args
.length
!= 1){
864 Heavy
.help(context
, replyTo
, toNonNull(Command
.RM
));
868 Heavy
.rm(context
, replyTo
, toNonNull(args
[0]));
872 if(args
.length
!= 1){
873 Heavy
.help(context
, replyTo
, toNonNull(Command
.CONTACTS
));
877 Heavy
.contacts(context
, replyTo
, toNonNull(args
[0]));
881 if(replyTo
.protocol
!= Protocol
.LOCAL
|| args
.length
!= 1){
882 Heavy
.help(context
, replyTo
, toNonNull(Command
.DISABLE
));
887 Heavy
.disable(context
, replyTo
, toNonNull(Command
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
))));
888 } catch (IllegalArgumentException e
){
889 sendMessage(context
, replyTo
, no_such_command_command_list
, join(", ", toNonNull(Command
.values())));
894 if(replyTo
.protocol
!= Protocol
.LOCAL
|| args
.length
!= 1){
895 Heavy
.help(context
, replyTo
, toNonNull(Command
.ENABLE
));
900 Heavy
.enable(context
, replyTo
, toNonNull(Command
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
))));
901 } catch (IllegalArgumentException e
){
902 sendMessage(context
, replyTo
, no_such_command_command_list
, join(", ", toNonNull(Command
.values())));
908 Heavy
.help(context
, replyTo
, toNonNull(Command
.POLL
));
913 Heavy
.poll(context
, replyTo
);
919 interval
=Long
.parseLong(args
[0]);
920 } catch(NumberFormatException e
){
921 sendMessage(context
, replyTo
, cannot_parse_interval
);
925 Heavy
.poll(context
, replyTo
, interval
);
929 Heavy
.hangup(context
, replyTo
);
933 Heavy
.answer(context
, replyTo
);
938 Heavy
.help(context
, replyTo
, toNonNull(Command
.LAUNCH
));
941 Heavy
.launch(context
, replyTo
, toNonNull(args
[0]));
946 Heavy
.help(context
, replyTo
, toNonNull(Command
.DATA
));
951 Heavy
.data(context
, replyTo
);
955 Heavy
.data(context
, replyTo
, OnOff
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
)) == OnOff
.ON
);
956 } catch(IllegalArgumentException e
) {
957 sendMessage(context
, replyTo
, could_not_parse_argument_allowed_values_are
, join(", ", toNonNull(OnOff
.values())));
963 Heavy
.help(context
, replyTo
, toNonNull(Command
.GPS
));
968 Heavy
.gps(context
, replyTo
);
973 Heavy
.gps(context
, replyTo
, OnOff
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
)) == OnOff
.ON
);
974 } catch(IllegalArgumentException e
) {
975 sendMessage(context
, replyTo
, could_not_parse_argument_allowed_values_are
, join(", ", toNonNull(OnOff
.values())));
981 Heavy
.help(context
, replyTo
, toNonNull(Command
.GLOCATION
));
986 Heavy
.glocation(context
, replyTo
);
991 Heavy
.glocation(context
, replyTo
, OnOff
.valueOf(args
[0].toUpperCase(Locale
.ENGLISH
)) == OnOff
.ON
);
992 } catch(IllegalArgumentException e
) {
993 sendMessage(context
, replyTo
, could_not_parse_argument_allowed_values_are
, join(", ", toNonNull(OnOff
.values())));
999 Heavy
.help(context
, replyTo
, toNonNull(Command
.REBOOT
));
1003 Heavy
.reboot(context
, replyTo
, args
.length
==0?
null:args
[0]);
1007 //TODO: implement command
1011 if(args
.length
!=1 && args
.length
!=3){
1012 Heavy
.help(context
, replyTo
, toNonNull(Command
.NOTIFY
));
1018 id
=Integer
.parseInt(args
[0]);
1019 } catch (NumberFormatException e
){
1020 sendMessage(context
, replyTo
, R
.string
.could_not_parse_id
);
1025 Heavy
.notify(context
, replyTo
, id
);
1027 Heavy
.notify(context
, replyTo
, id
, toNonNull(args
[1]), toNonNull(args
[2]));
1034 * Executes a given command
1036 * @param context Context instance
1037 * @param cmd Command to execute
1038 * @param args arguments for the command
1039 * @param replyTo Address to send replies to
1041 public static void processCommand(final Context context
, final String cmd
,final String
[] args
,final Address replyTo
){
1042 final @NonNull Command command
;
1044 command
=toNonNull(Command
.valueOf(cmd
.toUpperCase(Locale
.ENGLISH
)));
1045 } catch (IllegalArgumentException e
){
1046 sendMessage(context
, replyTo
, unknown_command
, cmd
.toUpperCase(Locale
.ENGLISH
), e
.getMessage());
1051 processCommand(context
, command
,args
,replyTo
);
1052 } catch(Exception e
){
1053 sendMessage(context
, replyTo
, error_while_processing_command
, e
.getClass().getName(), e
.getMessage());
1054 Log
.w(Utils
.class.getName(), "Error while processing command", e
);