Java tutorial
/* * Copyright (C) 2007 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.lovespectre.lwin.message.services; import android.app.NotificationManager; import android.app.PendingIntent; import android.app.Service; import android.content.Intent; import android.media.RingtoneManager; import android.net.ConnectivityManager; import android.os.Binder; import android.os.IBinder; import android.support.v4.app.NotificationCompat; import android.util.Log; import com.lovespectre.lwin.message.Login; import com.lovespectre.lwin.message.Messaging; import com.lovespectre.lwin.message.communication.SocketOperator; import com.lovespectre.lwin.message.interfaces.IAppManager; import com.lovespectre.lwin.message.interfaces.ISocketOperator; import com.lovespectre.lwin.message.interfaces.IUpdateData; import com.lovespectre.lwin.message.tools.FriendController; import com.lovespectre.lwin.message.tools.LocalStorageHandler; import com.lovespectre.lwin.message.tools.MessageController; import com.lovespectre.lwin.message.tools.XMLHandler; import com.lovespectre.lwin.message.types.FriendInfo; import com.lovespectre.lwin.message.types.MessageInfo; import com.lovespectre.lwin.openemr.R; import org.xml.sax.SAXException; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.util.Random; import java.util.Timer; import java.util.TimerTask; import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; /** * Created by lwin on 7/23/15. */ /** * This is an example of implementing an application service that runs locally * in the same process as the application. The {@link LocalServiceController} * and {@link LocalServiceBinding} classes show how to interact with the * service. * <p/> * <p>Notice the use of the {@link android.app.NotificationManager} when interesting things * happen in the service. This is generally how background services should * interact with the user, rather than doing something more disruptive such as * calling startActivity(). */ public class IMService extends Service implements IAppManager, IUpdateData { // private NotificationManager mNM; public static final String TAKE_MESSAGE = "Take_Message"; public static final String FRIEND_LIST_UPDATED = "Take Friend List"; public static final String MESSAGE_LIST_UPDATED = "Take Message List"; public static String USERNAME; private final int UPDATE_TIME_PERIOD = 10000; private final IBinder mBinder = new IMBinder(); public ConnectivityManager conManager = null; ISocketOperator socketOperator = new SocketOperator(this); // private static final INT LISTENING_PORT_NO = 8956; private String rawFriendList = new String(); private String rawMessageList = new String(); private String username; private String password; private boolean authenticatedUser = false; // timer to take the updated data from server private Timer timer; private LocalStorageHandler localstoragehandler; private NotificationManager mNM; @Override public void onCreate() { mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); localstoragehandler = new LocalStorageHandler(this); // Display a notification about us starting. We put an icon in the status bar. // showNotification(); conManager = (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE); new LocalStorageHandler(this); // Timer is used to take the friendList info every UPDATE_TIME_PERIOD; timer = new Timer(); Thread thread = new Thread() { @Override public void run() { //socketOperator.startListening(LISTENING_PORT_NO); Random random = new Random(); int tryCount = 0; while (socketOperator.startListening(10000 + random.nextInt(20000)) == 0) { tryCount++; if (tryCount > 10) { // if it can't listen a port after trying 10 times, give up... break; } } } }; thread.start(); } @Override public IBinder onBind(Intent intent) { return mBinder; } /* @Override public void onDestroy() { // Cancel the persistent notification. mNM.cancel(R.string.local_service_started); // Tell the user we stopped. Toast.makeText(this, R.string.local_service_stopped, Toast.LENGTH_SHORT).show(); } */ /** * Show a notification while this service is running. * * @param msg */ private void showNotification(String username, String msg) { // Set the icon, scrolling text and TIMESTAMP String title = "AndroidIM: You got a new Message! (" + username + ")"; String text = username + ": " + ((msg.length() < 5) ? msg : msg.substring(0, 5) + "..."); //NotificationCompat.Builder notification = new NotificationCompat.Builder(R.drawable.stat_sample, title,System.currentTimeMillis()); NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this) .setSmallIcon(R.drawable.ic_message_black_24dp).setContentTitle(title).setContentText(text) .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION)); Intent i = new Intent(this, Messaging.class); i.putExtra(FriendInfo.USERNAME, username); i.putExtra(MessageInfo.MESSAGETEXT, msg); // The PendingIntent to launch our activity if the user selects this notification PendingIntent contentIntent = PendingIntent.getActivity(this, 0, i, 0); // Set the info for the views that show in the notification panel. // msg.length()>15 ? MSG : msg.substring(0, 15); mBuilder.setContentIntent(contentIntent); mBuilder.setContentText("New message from " + username + ": " + msg); //TODO: it can be improved, for instance message coming from same user may be concatenated // next version // Send the notification. // We use a layout id because it is a unique number. We use it later to cancel. mNM.notify((username + msg).hashCode(), mBuilder.build()); } public String getUsername() { return this.username; } public String sendMessage(String username, String tousername, String message) throws UnsupportedEncodingException { String params = "username=" + URLEncoder.encode(this.username, "UTF-8") + "&password=" + URLEncoder.encode(this.password, "UTF-8") + "&to=" + URLEncoder.encode(tousername, "UTF-8") + "&message=" + URLEncoder.encode(message, "UTF-8") + "&action=" + URLEncoder.encode("sendMessage", "UTF-8") + "&"; Log.i("PARAMS", params); return socketOperator.sendHttpRequest(params); } private String getFriendList() throws UnsupportedEncodingException { // after authentication, server replies with friendList xml rawFriendList = socketOperator.sendHttpRequest(getAuthenticateUserParams(username, password)); if (rawFriendList != null) { this.parseFriendInfo(rawFriendList); } return rawFriendList; } private String getMessageList() throws UnsupportedEncodingException { // after authentication, server replies with friendList xml rawMessageList = socketOperator.sendHttpRequest(getAuthenticateUserParams(username, password)); if (rawMessageList != null) { this.parseMessageInfo(rawMessageList); } return rawMessageList; } /** * authenticateUser: it authenticates the user and if succesful * it returns the friend list or if authentication is failed * it returns the "0" in string type * * @throws java.io.UnsupportedEncodingException */ public String authenticateUser(String usernameText, String passwordText) throws UnsupportedEncodingException { this.username = usernameText; this.password = passwordText; this.authenticatedUser = false; String result = this.getFriendList(); //socketOperator.sendHttpRequest(getAuthenticateUserParams(username, password)); if (result != null && !result.equals(Login.AUTHENTICATION_FAILED)) { // if user is authenticated then return string from server is not equal to AUTHENTICATION_FAILED this.authenticatedUser = true; rawFriendList = result; USERNAME = this.username; Intent i = new Intent(FRIEND_LIST_UPDATED); i.putExtra(FriendInfo.FRIEND_LIST, rawFriendList); sendBroadcast(i); timer.schedule(new TimerTask() { public void run() { try { //rawFriendList = IMService.this.getFriendList(); // sending friend list Intent i = new Intent(FRIEND_LIST_UPDATED); Intent i2 = new Intent(MESSAGE_LIST_UPDATED); String tmp = IMService.this.getFriendList(); String tmp2 = IMService.this.getMessageList(); if (tmp != null) { i.putExtra(FriendInfo.FRIEND_LIST, tmp); sendBroadcast(i); Log.i("friend list broadcast sent ", ""); if (tmp2 != null) { i2.putExtra(MessageInfo.MESSAGE_LIST, tmp2); sendBroadcast(i2); Log.i("friend list broadcast sent ", ""); } } else { Log.i("friend list returned null", ""); } } catch (Exception e) { e.printStackTrace(); } } }, UPDATE_TIME_PERIOD, UPDATE_TIME_PERIOD); } return result; } public void messageReceived(String username, String message) { //FriendInfo friend = FriendController.getFriendInfo(username); MessageInfo msg = MessageController.checkMessage(username); if (msg != null) { Intent i = new Intent(TAKE_MESSAGE); i.putExtra(MessageInfo.USERID, msg.userid); i.putExtra(MessageInfo.MESSAGETEXT, msg.messagetext); sendBroadcast(i); String activeFriend = FriendController.getActiveFriend(); if (activeFriend == null || activeFriend.equals(username) == false) { localstoragehandler.insert(username, this.getUsername(), message.toString()); showNotification(username, message); } Log.i("TAKE_MESSAGE broadcast sent by im service", ""); } } private String getAuthenticateUserParams(String usernameText, String passwordText) throws UnsupportedEncodingException { String params = "username=" + URLEncoder.encode(usernameText, "UTF-8") + "&password=" + URLEncoder.encode(passwordText, "UTF-8") + "&action=" + URLEncoder.encode("authenticateUser", "UTF-8") + "&port=" + URLEncoder.encode(Integer.toString(socketOperator.getListeningPort()), "UTF-8") + "&"; return params; } public void setUserKey(String value) { } public boolean isNetworkConnected() { return conManager.getActiveNetworkInfo().isConnected(); } public boolean isUserAuthenticated() { return authenticatedUser; } public String getLastRawFriendList() { return this.rawFriendList; } @Override public void onDestroy() { Log.i("IMService is being destroyed", "..."); super.onDestroy(); } public void exit() { timer.cancel(); socketOperator.exit(); socketOperator = null; this.stopSelf(); } public String signUpUser(String usernameText, String passwordText, String emailText) { String params = "username=" + usernameText + "&password=" + passwordText + "&action=" + "signUpUser" + "&email=" + emailText + "&"; String result = socketOperator.sendHttpRequest(params); return result; } public String addNewFriendRequest(String friendUsername) { String params = "username=" + this.username + "&password=" + this.password + "&action=" + "addNewFriend" + "&friendUserName=" + friendUsername + "&"; String result = socketOperator.sendHttpRequest(params); return result; } public String sendFriendsReqsResponse(String approvedFriendNames, String discardedFriendNames) { String params = "username=" + this.username + "&password=" + this.password + "&action=" + "responseOfFriendReqs" + "&approvedFriends=" + approvedFriendNames + "&discardedFriends=" + discardedFriendNames + "&"; String result = socketOperator.sendHttpRequest(params); return result; } private void parseFriendInfo(String xml) { try { SAXParser sp = SAXParserFactory.newInstance().newSAXParser(); sp.parse(new ByteArrayInputStream(xml.getBytes()), new XMLHandler(IMService.this)); } catch (ParserConfigurationException e) { e.printStackTrace(); } catch (SAXException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } private void parseMessageInfo(String xml) { try { SAXParser sp = SAXParserFactory.newInstance().newSAXParser(); sp.parse(new ByteArrayInputStream(xml.getBytes()), new XMLHandler(IMService.this)); } catch (ParserConfigurationException e) { e.printStackTrace(); } catch (SAXException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } public void updateData(MessageInfo[] messages, FriendInfo[] friends, FriendInfo[] unApprovedFriends, String userKey) { this.setUserKey(userKey); //FriendController. MessageController.setMessagesInfo(messages); //Log.i("MESSAGEIMSERVICE","messages.length="+messages.length); int i = 0; while (i < messages.length) { messageReceived(messages[i].userid, messages[i].messagetext); //appManager.messageReceived(messages[i].userid,messages[i].messagetext); i++; } FriendController.setFriendsInfo(friends); FriendController.setUnapprovedFriendsInfo(unApprovedFriends); } public class IMBinder extends Binder { public IAppManager getService() { return IMService.this; } } }