| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /*
- * Copyright © 2018 Zhenjie Yan.
- *
- * 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.rdgk.cemetery.component;
- import android.content.BroadcastReceiver;
- import android.content.Context;
- import android.content.Intent;
- import android.content.IntentFilter;
- import com.rdgk.cemetery.activity.MainActivity;
- /**
- * Created by Zhenjie Yan on 2018/6/9.
- */
- public class ServerManager extends BroadcastReceiver {
- private static final String ACTION = "com.rdgk.cemetery.Receiver";
- private static final String CMD_KEY = "CMD_KEY";
- private static final String MESSAGE_KEY = "MESSAGE_KEY";
- private static final int CMD_VALUE_START = 1;
- private static final int CMD_VALUE_ERROR = 2;
- private static final int CMD_VALUE_STOP = 4;
- /**
- * Notify serverStart.
- *
- * @param context context.
- */
- public static void onServerStart(Context context, String hostAddress) {
- sendBroadcast(context, CMD_VALUE_START, hostAddress);
- }
- /**
- * Notify serverStop.
- *
- * @param context context.
- */
- public static void onServerError(Context context, String error) {
- sendBroadcast(context, CMD_VALUE_ERROR, error);
- }
- /**
- * Notify serverStop.
- *
- * @param context context.
- */
- public static void onServerStop(Context context) {
- sendBroadcast(context, CMD_VALUE_STOP);
- }
- private static void sendBroadcast(Context context, int cmd) {
- sendBroadcast(context, cmd, null);
- }
- private static void sendBroadcast(Context context, int cmd, String message) {
- Intent broadcast = new Intent(ACTION);
- broadcast.putExtra(CMD_KEY, cmd);
- broadcast.putExtra(MESSAGE_KEY, message);
- context.sendBroadcast(broadcast);
- }
- private MainActivity mActivity;
- private Intent mService;
- public ServerManager(MainActivity activity) {
- this.mActivity = activity;
- mService = new Intent(activity, CoreService.class);
- }
- /**
- * Register broadcast.
- */
- public void register() {
- IntentFilter filter = new IntentFilter(ACTION);
- mActivity.registerReceiver(this, filter);
- }
- /**
- * UnRegister broadcast.
- */
- public void unRegister() {
- mActivity.unregisterReceiver(this);
- }
- public void startServer() {
- mActivity.startService(mService);
- }
- public void stopServer() {
- mActivity.stopService(mService);
- }
- @Override
- public void onReceive(Context context, Intent intent) {
- String action = intent.getAction();
- if (ACTION.equals(action)) {
- int cmd = intent.getIntExtra(CMD_KEY, 0);
- switch (cmd) {
- case CMD_VALUE_START: {
- String ip = intent.getStringExtra(MESSAGE_KEY);
- mActivity.onServerStart(ip);
- break;
- }
- case CMD_VALUE_ERROR: {
- String error = intent.getStringExtra(MESSAGE_KEY);
- mActivity.onServerError(error);
- break;
- }
- case CMD_VALUE_STOP: {
- mActivity.onServerStop();
- break;
- }
- }
- }
- }
- }
|