Android Service绑定过程完整分析

通常我们使用Service都要和它通信,当想要与Service通信的时候,那么Service要处于绑定状态的。然后客户端可以拿到一个Binder与服务端进行通信,这个过程是很自然的。

那你真的了解过Service的绑定过程吗?为什么可以是Binder和Service通信?
同样的先看一张图大致了解一下,灰色背景框起来的是同一个类的方法,如下:

我们知道调用Context的bindService方法即可绑定一个Service,而ContextImpl是Context的实现类。那接下来就从源码的角度分析Service的绑定过程。

当然是从ContextImpl的bindService方法开始,如下:

@Override
public boolean bindService(Intent service, ServiceConnection conn,
  int flags) {
 warnIfCallingFromSystemProcess();
 return bindServiceCommon(service, conn, flags, mMainThread.getHandler(),
   Process.myUserHandle());
}

在bindService方法中又会转到bindServiceCommon方法,将Intent,ServiceConnection对象传进。

那就看看bindServiceCommon方法的实现。

private boolean bindServiceCommon(Intent service, ServiceConnection conn, int flags, Handler
    handler, UserHandle user) {
  IServiceConnection sd;
  if (conn == null) {
    throw new IllegalArgumentException("connection is null");
  }
  if (mPackageInfo != null) {
    sd = mPackageInfo.getServiceDispatcher(conn, getOuterContext(), handler, flags);
  } else {
    throw new RuntimeException("Not supported in system context");
  }
  validateServiceIntent(service);
  try {
    IBinder token = getActivityToken();
    if (token == null && (flags&BIND_AUTO_CREATE) == 0 && mPackageInfo != null
        && mPackageInfo.getApplicationInfo().targetSdkVersion
        < android.os.Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
      flags |= BIND_WAIVE_PRIORITY;
    }
    service.prepareToLeaveProcess(this);
    int res = ActivityManagerNative.getDefault().bindService(
      mMainThread.getApplicationThread(), getActivityToken(), service,
      service.resolveTypeIfNeeded(getContentResolver()),
      sd, flags, getOpPackageName(), user.getIdentifier());
    if (res < 0) {
      throw new SecurityException(
          "Not allowed to bind to service " + service);
    }
    return res != 0;
  } catch (RemoteException e) {
    throw e.rethrowFromSystemServer();
  }
}

在上述代码中,调用了mPackageInfo(LoadedApk对象)的getServiceDispatcher方法。从getServiceDispatcher方法的名字可以看出是获取一个“服务分发者”。其实是根据这个“服务分发者”获取到一个Binder对象的。

那现在就看到getServiceDispatcher方法的实现。

public final IServiceConnection getServiceDispatcher(ServiceConnection c,
    Context context, Handler handler, int flags) {
  synchronized (mServices) {
    LoadedApk.ServiceDispatcher sd = null;
    ArrayMap<ServiceConnection, LoadedApk.ServiceDispatcher> map = mServices.get(context);
    if (map != null) {
      sd = map.get(c);
    }
    if (sd == null) {
      sd = new ServiceDispatcher(c, context, handler, flags);
      if (map == null) {
        map = new ArrayMap<ServiceConnection, LoadedApk.ServiceDispatcher>();
        mServices.put(context, map);
      }
      map.put(c, sd);
    } else {
      sd.validate(context, handler);
    }
    return sd.getIServiceConnection();
  }
}

从getServiceDispatcher方法的实现可以知道,ServiceConnection和ServiceDispatcher构成了映射关系。当存储集合不为空的时候,根据传进的key,也就是ServiceConnection,来取出对应的ServiceDispatcher对象。
当取出ServiceDispatcher对象后,最后一行代码是关键,

return sd.getIServiceConnection();

调用了ServiceDispatcher对象的getIServiceConnection方法。这个方法肯定是获取一个IServiceConnection的。

IServiceConnection getIServiceConnection() {
  return mIServiceConnection;
}

那么mIServiceConnection是什么?现在就可以来看下ServiceDispatcher类了。ServiceDispatcher是LoadedApk的内部类,里面封装了InnerConnection和ServiceConnection。如下:

static final class ServiceDispatcher {
  private final ServiceDispatcher.InnerConnection mIServiceConnection;
  private final ServiceConnection mConnection;
  private final Context mContext;
  private final Handler mActivityThread;
  private final ServiceConnectionLeaked mLocation;
  private final int mFlags;

  private RuntimeException mUnbindLocation;

  private boolean mForgotten;

  private static class ConnectionInfo {
    IBinder binder;
    IBinder.DeathRecipient deathMonitor;
  }

  private static class InnerConnection extends IServiceConnection.Stub {
    final WeakReference<LoadedApk.ServiceDispatcher> mDispatcher;

    InnerConnection(LoadedApk.ServiceDispatcher sd) {
      mDispatcher = new WeakReference<LoadedApk.ServiceDispatcher>(sd);
    }

    public void connected(ComponentName name, IBinder service) throws RemoteException {
      LoadedApk.ServiceDispatcher sd = mDispatcher.get();
      if (sd != null) {
        sd.connected(name, service);
      }
    }
  }

  private final ArrayMap<ComponentName, ServiceDispatcher.ConnectionInfo> mActiveConnections
    = new ArrayMap<ComponentName, ServiceDispatcher.ConnectionInfo>();

  ServiceDispatcher(ServiceConnection conn,
      Context context, Handler activityThread, int flags) {
    mIServiceConnection = new InnerConnection(this);
    mConnection = conn;
    mContext = context;
    mActivityThread = activityThread;
    mLocation = new ServiceConnectionLeaked(null);
    mLocation.fillInStackTrace();
    mFlags = flags;
  }

  //代码省略

}

先看到ServiceDispatcher的构造方法,一个ServiceDispatcher关联一个InnerConnection对象。而InnerConnection呢?,它是一个Binder,有一个很重要的connected方法。至于为什么要用Binder,因为与Service通信可能是跨进程的。

好,到了这里先总结一下:调用bindService方法绑定服务,会转到bindServiceCommon方法。
在bindServiceCommon方法中,会调用LoadedApk的getServiceDispatcher方法,并将ServiceConnection传进, 根据这个ServiceConnection取出与其映射的ServiceDispatcher对象,最后调用这个ServiceDispatcher对象的getIServiceConnection方法获取与其关联的InnerConnection对象并返回。简单点理解就是用ServiceConnection换来了InnerConnection。

现在回到bindServiceCommon方法,可以看到绑定Service的过程会转到ActivityManagerNative.getDefault()的bindService方法,其实从抛出的异常类型RemoteException也可以知道与Service通信可能是跨进程的,这个是很好理解的。

而ActivityManagerNative.getDefault()是ActivityManagerService,那么继续跟进ActivityManagerService的bindService方法即可,如下:

public int bindService(IApplicationThread caller, IBinder token, Intent service,
    String resolvedType, IServiceConnection connection, int flags, String callingPackage,
    int userId) throws TransactionTooLargeException {
  enforceNotIsolatedCaller("bindService");

  // Refuse possible leaked file descriptors
  if (service != null && service.hasFileDescriptors() == true) {
    throw new IllegalArgumentException("File descriptors passed in Intent");
  }

  if (callingPackage == null) {
    throw new IllegalArgumentException("callingPackage cannot be null");
  }

  synchronized(this) {
    return mServices.bindServiceLocked(caller, token, service,
        resolvedType, connection, flags, callingPackage, userId);
  }
}

在上述代码中,绑定Service的过程转到ActiveServices的bindServiceLocked方法,那就跟进ActiveServices的bindServiceLocked方法瞧瞧。如下:

int bindServiceLocked(IApplicationThread caller, IBinder token, Intent service,
    String resolvedType, final IServiceConnection connection, int flags,
    String callingPackage, final int userId) throws TransactionTooLargeException {

    //代码省略

     ConnectionRecord c = new ConnectionRecord(b, activity,
          connection, flags, clientLabel, clientIntent);

     IBinder binder = connection.asBinder();
     ArrayList<ConnectionRecord> clist = s.connections.get(binder);
     if (clist == null) {
       clist = new ArrayList<ConnectionRecord>();
       s.connections.put(binder, clist);
     }
     clist.add(c);

     //代码省略

    if ((flags&Context.BIND_AUTO_CREATE) != 0) {
      s.lastActivity = SystemClock.uptimeMillis();
      if (bringUpServiceLocked(s, service.getFlags(), callerFg, false,
          permissionsReviewRequired) != null) {
        return 0;
      }
    }

    //代码省略

  return 1;
}

将connection对象封装在ConnectionRecord中,这里的connection就是上面提到的InnerConnection对象。这一步很重要的。

然后调用了bringUpServiceLocked方法,那么就探探这个bringUpServiceLocked方法,

private String bringUpServiceLocked(ServiceRecord r, int intentFlags, boolean execInFg,
    boolean whileRestarting, boolean permissionsReviewRequired)
    throws TransactionTooLargeException {

    //代码省略

    if (app != null && app.thread != null) {
      try {
        app.addPackage(r.appInfo.packageName, r.appInfo.versionCode, mAm.mProcessStats);
        realStartServiceLocked(r, app, execInFg);
        return null;
      } catch (TransactionTooLargeException e) {
        throw e;
      } catch (RemoteException e) {
        Slog.w(TAG, "Exception when starting service " + r.shortName, e);
      }

      // If a dead object exception was thrown -- fall through to
      // restart the application.
    }

    //代码省略

  return null;
}

可以看到调用了realStartServiceLocked方法,真正去启动Service了。

那么跟进realStartServiceLocked方法探探,如下:

private final void realStartServiceLocked(ServiceRecord r,
    ProcessRecord app, boolean execInFg) throws RemoteException {

   //代码省略

   app.thread.scheduleCreateService(r, r.serviceInfo,
       mAm.compatibilityInfoForPackageLocked(r.serviceInfo.applicationInfo),
    app.repProcState);
    r.postNotification();
    created = true;

   //代码省略

  requestServiceBindingsLocked(r, execInFg);

  updateServiceClientActivitiesLocked(app, null, true);

  // If the service is in the started state, and there are no
  // pending arguments, then fake up one so its onStartCommand() will
  // be called.
  if (r.startRequested && r.callStart && r.pendingStarts.size() == 0) {
    r.pendingStarts.add(new ServiceRecord.StartItem(r, false, r.makeNextStartId(),
        null, null));
  }

  sendServiceArgsLocked(r, execInFg, true);

//代码省略
}

这里会调用app.thread的scheduleCreateService方法去创建一个Service,然后会回调Service的生命周期方法,然而绑定Service呢?
在上述代码中,找到一个requestServiceBindingsLocked方法,从名字看是请求绑定服务的意思,那么就是它没错了。

private final void requestServiceBindingsLocked(ServiceRecord r, boolean execInFg)
    throws TransactionTooLargeException {
  for (int i=r.bindings.size()-1; i>=0; i--) {
    IntentBindRecord ibr = r.bindings.valueAt(i);
    if (!requestServiceBindingLocked(r, ibr, execInFg, false)) {
      break;
    }
  }
}

咦,我再按住Ctrl+鼠标左键,点进去requestServiceBindingLocked方法。如下:

private final boolean requestServiceBindingLocked(ServiceRecord r, IntentBindRecord i,
    boolean execInFg, boolean rebind) throws TransactionTooLargeException {
  if (r.app == null || r.app.thread == null) {
    // If service is not currently running, can't yet bind.
    return false;
  }
  if ((!i.requested || rebind) && i.apps.size() > 0) {
    try {
      bumpServiceExecutingLocked(r, execInFg, "bind");
      r.app.forceProcessStateUpTo(ActivityManager.PROCESS_STATE_SERVICE);
      r.app.thread.scheduleBindService(r, i.intent.getIntent(), rebind,
          r.app.repProcState);
      if (!rebind) {
        i.requested = true;
      }
      i.hasBound = true;
      i.doRebind = false;
    }

  //代码省略

  return true;
}

r.app.thread调用了scheduleBindService方法来绑定服务,而r.app.thread是ApplicationThread,现在关注到 ApplicationThread即可,scheduleBindService方法如下:

public final void scheduleBindService(IBinder token, Intent intent,
    boolean rebind, int processState) {
  updateProcessState(processState, false);
  BindServiceData s = new BindServiceData();
  s.token = token;
  s.intent = intent;
  s.rebind = rebind;

  if (DEBUG_SERVICE)
    Slog.v(TAG, "scheduleBindService token=" + token + " intent=" + intent + " uid="
        + Binder.getCallingUid() + " pid=" + Binder.getCallingPid());
  sendMessage(H.BIND_SERVICE, s);
}

封装了待绑定的Service的信息,并发送了一个消息给主线程,

public void handleMessage(Message msg) {
  if (DEBUG_MESSAGES) Slog.v(TAG, ">>> handling: " + codeToString(msg.what));
  switch (msg.what) {

  //代码省略

    case BIND_SERVICE:
      Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "serviceBind");
      handleBindService((BindServiceData)msg.obj);
      Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
      break;

  //代码省略

  }
}

调用了handleBindService方法,即将绑定完成啦。

private void handleBindService(BindServiceData data) {
  Service s = mServices.get(data.token);
  if (DEBUG_SERVICE)
    Slog.v(TAG, "handleBindService s=" + s + " rebind=" + data.rebind);
  if (s != null) {
    try {
      data.intent.setExtrasClassLoader(s.getClassLoader());
      data.intent.prepareToEnterProcess();
      try {
        if (!data.rebind) {
          IBinder binder = s.onBind(data.intent);
          ActivityManagerNative.getDefault().publishService(
              data.token, data.intent, binder);
        } else {
          s.onRebind(data.intent);
          ActivityManagerNative.getDefault().serviceDoneExecuting(
              data.token, SERVICE_DONE_EXECUTING_ANON, 0, 0);
        }
        ensureJitEnabled();
      } catch (RemoteException ex) {
        throw ex.rethrowFromSystemServer();
      }
    } catch (Exception e) {
      if (!mInstrumentation.onException(s, e)) {
        throw new RuntimeException(
            "Unable to bind to service " + s
            + " with " + data.intent + ": " + e.toString(), e);
      }
    }
  }
}

根据token获取到Service,然后Service回调onBind方法。结束了?

可是onBind方法返回了一个binder是用来干嘛的?
我们再看看ActivityManagerNative.getDefault()调用了publishService方法做了什么工作,此时又回到了ActivityManagerService。

public void publishService(IBinder token, Intent intent, IBinder service) {
  // Refuse possible leaked file descriptors
  if (intent != null && intent.hasFileDescriptors() == true) {
    throw new IllegalArgumentException("File descriptors passed in Intent");
  }

  synchronized(this) {
    if (!(token instanceof ServiceRecord)) {
      throw new IllegalArgumentException("Invalid service token");
    }
    mServices.publishServiceLocked((ServiceRecord)token, intent, service);
  }
}

又会交给ActiveServices处理,转到了publishServiceLocked方法,那看到ActiveServices的publishServiceLocked方法,

void publishServiceLocked(ServiceRecord r, Intent intent, IBinder service) {
  final long origId = Binder.clearCallingIdentity();
  try {
    if (DEBUG_SERVICE) Slog.v(TAG_SERVICE, "PUBLISHING " + r
        + " " + intent + ": " + service);
    if (r != null) {
      Intent.FilterComparison filter
          = new Intent.FilterComparison(intent);
      IntentBindRecord b = r.bindings.get(filter);
      if (b != null && !b.received) {
        b.binder = service;
        b.requested = true;
        b.received = true;
        for (int conni=r.connections.size()-1; conni>=0; conni--) {
          ArrayList<ConnectionRecord> clist = r.connections.valueAt(conni);
          for (int i=0; i<clist.size(); i++) {
            ConnectionRecord c = clist.get(i);
            if (!filter.equals(c.binding.intent.intent)) {
              if (DEBUG_SERVICE) Slog.v(
                  TAG_SERVICE, "Not publishing to: " + c);
              if (DEBUG_SERVICE) Slog.v(
                  TAG_SERVICE, "Bound intent: " + c.binding.intent.intent);
              if (DEBUG_SERVICE) Slog.v(
                  TAG_SERVICE, "Published intent: " + intent);
              continue;
            }
            if (DEBUG_SERVICE) Slog.v(TAG_SERVICE, "Publishing to: " + c);
            try {
              c.conn.connected(r.name, service);
            }

  //代码省略

}

c.conn是什么? 它是一个InnerConnection对象,对,就是那个那个Binder,上面也贴出了代码,在ActiveServices的bindServiceLocked方法中,InnerConnection对象被封装在ConnectionRecord中。那么现在它调用了connected方法,就很好理解了。

InnerConnection的connected方法如下:

public void connected(ComponentName name, IBinder service) throws RemoteException {
  LoadedApk.ServiceDispatcher sd = mDispatcher.get();
  if (sd != null) {
    sd.connected(name, service);
  }
}

会调用ServiceDispatcher 的connected方法,如下

public void connected(ComponentName name, IBinder service) {
  if (mActivityThread != null) {
    mActivityThread.post(new RunConnection(name, service, 0));
  } else {
    doConnected(name, service);
  }
}

从而ActivityThread会投递一个消息到主线程,此时就解决了跨进程通信。
那么你应该猜到了RunConnection一定有在主线程回调的onServiceConnected方法,

private final class RunConnection implements Runnable {
  RunConnection(ComponentName name, IBinder service, int command) {
    mName = name;
    mService = service;
    mCommand = command;
  }

  public void run() {
    if (mCommand == 0) {
      doConnected(mName, mService);
    } else if (mCommand == 1) {
      doDeath(mName, mService);
    }
  }

  final ComponentName mName;
  final IBinder mService;
  final int mCommand;
}

咦,还不出现?继续跟进doConnected方法,

public void doConnected(ComponentName name, IBinder service) {
  ServiceDispatcher.ConnectionInfo old;
  ServiceDispatcher.ConnectionInfo info;

  synchronized (this) {
    if (mForgotten) {
      // We unbound before receiving the connection; ignore
      // any connection received.
      return;
    }
    old = mActiveConnections.get(name);
    if (old != null && old.binder == service) {
      // Huh, already have this one. Oh well!
      return;
    }

    if (service != null) {
      // A new service is being connected... set it all up.
      info = new ConnectionInfo();
      info.binder = service;
      info.deathMonitor = new DeathMonitor(name, service);
      try {
        service.linkToDeath(info.deathMonitor, 0);
        mActiveConnections.put(name, info);
      } catch (RemoteException e) {
        // This service was dead before we got it... just
        // don't do anything with it.
        mActiveConnections.remove(name);
        return;
      }

    } else {
      // The named service is being disconnected... clean up.
      mActiveConnections.remove(name);
    }

    if (old != null) {
      old.binder.unlinkToDeath(old.deathMonitor, 0);
    }
  }

  // If there was an old service, it is not disconnected.
  if (old != null) {
    mConnection.onServiceDisconnected(name);
  }
  // If there is a new service, it is now connected.
  if (service != null) {
    mConnection.onServiceConnected(name, service);
  }
}

在最后一个if判断,终于找到了onServiceConnected方法!

总结一下,当Service回调onBind方法,其实还没有结束,会转到ActivityManagerService,然后又会在ActiveServices的publishServiceLocked方法中,从ConnectionRecord中取出InnerConnection对象。有了InnerConnection对象后,就回调了它的connected。在InnerConnection的connected方法中,又会调用ServiceDispatcher的connected方法,在ServiceDispatcher的connected方法向主线程扔了一个消息,切换到了主线程,之后就在主线程中回调了客户端传进的ServiceConnected对象的onServiceConnected方法。

至此, Service的绑定过程分析完毕。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android Service自启动注意事项分析

    本文实例分析了Android Service自启动注意事项.分享给大家供大家参考,具体如下: @Override public void onStart(Intent intent, int startId) { super.onStart(intent, startId); if(intent == null) return; } @Override public void onDestroy() { super.onDestroy(); Intent intent = new Intent(

  • android开发教程之开机启动服务service示例

    个例子实现的功能是:1,安装程序后看的一个Activity程序界面,里面有个按钮,点击按钮就会启动一个Service服务,此时在设置程序管理里面会看的有个Activity和一个Service服务运行2,如果手机关机重启,会触发你的程序里面的Service服务,当然,手机启动后是看不到你的程序界面.好比手机里面自带的闹钟功能,手机重启看不到闹钟设置界面只是启动服务,时间到了,闹钟就好响铃提醒. 程序代码是: 首先要有一个用于开机启动的Activity,给你们的按钮设置OnClickListener

  • 解析Android中如何做到Service被关闭后又自动启动的实现方法

    首先要说的是,用户可能把这种做法视为流氓软件.大部分时候,程序员也不想把软件做成流氓软件,没办法,领导说了算. 我们在使用某些Android应用的时候,可能会发现安装了某应用以后,会有一些服务也会随之运行.而且,这些服务每次都会随着手机开机而启动.有的服务做的更绝,当用户在运行的服务中手动停止该服务以后,过了一段时间,服务又自动运行了.虽然,从用户的角度来说,这种方式比较流氓.但是,从程序员的角度来说,这是如何做到的呢?经过研究,我发现有一种方式是可以实现的.下面就和大家分享. 先简单介绍,一会

  • android中soap协议使用(ksoap调用webservice)

    如下面代码所示: 复制代码 代码如下: SoapObject request  = new SoapObject(serviceNamespace, methodName); SoapObject构造函数的两个参数含义为: serviceNamespace – 你的webservice的命名空间,既可以是 http://localhost:8088/flickrBuddy/services/Buddycast这样的,也可以是 urn:PI/DevCentral/SoapService这样的: m

  • Android实现开机自动启动Service或app的方法

    本文实例讲述了Android实现开机自动启动Service或app的方法.分享给大家供大家参考,具体如下: 第一步:首先创建一个广播接收者,重构其抽象方法 onReceive(Context context, Intent intent),在其中启动你想要启动的Service或app. import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; i

  • Android Service 服务不被杀死的妙招

    Service是android 系统中的一种组件,它跟Activity的级别差不多,但是他不能自己运行,只能后台运行,并且可以和其他组件进行交互. Android开发的过程中,每次调用startService(Intent)的时候,都会调用该Service对象的onStartCommand(Intent,int,int)方法,然后在onStartCommand方法中做一些处理. 从Android官方文档中,我们知道onStartCommand有4种int返回值,首先简单地讲讲int返回值的作用.

  • Android中实现开机自动启动服务(service)实例

    最近在将 HevSocks5Client 移植到 Android 上了,在经过增加 signalfd 和 timerfd 相关的系统调用支持后,就可以直接使用 NDK 编译出 executable 了.直接的 native exectuable 在 Android 系统总还是不太方便用哦.还是做成一个 apk 吧,暂定只写一个 service 并开机自动启用,无 activity 的. Java 中调用 native 程序我选择使用 JNI 方式,直接在 JNI_OnLoad 方法中调用 pth

  • Android Service启动过程完整分析

    刚开始学习Service的时候以为它是一个线程的封装,也可以执行耗时操作.其实不然,Service是运行在主线程的.直接执行耗时操作是会阻塞主线程的.长时间就直接ANR了. 我们知道Service可以执行一些后台任务,是后台任务不是耗时的任务,后台和耗时是有区别的喔. 这样就很容易想到音乐播放器,天气预报这些应用是要用到Service的.当然如果要在Service中执行耗时操作的话,开个线程就可以了. 关于Service的运行状态有两种,启动状态和绑定状态,两种状态可以一起. 启动一个Servi

  • Android 启动 Service(startservice和bindservice) 两种方式的区别

    Android Service 生命周期可以促使移动设备的创新,让用户体验到最优越的移动服务,只有broadcast receivers执行此方法的时候才是激活的,当 onReceive()返回的时候,它就是非激活状态. 如果没有程序停止它或者它自己停止,service将一直运行.在这种模式下,service开始于调用Context.startService() ,停止于Context.stopService(). service可以通过调用Android Service 生命周期() 或 Se

  • Android Service绑定过程完整分析

    通常我们使用Service都要和它通信,当想要与Service通信的时候,那么Service要处于绑定状态的.然后客户端可以拿到一个Binder与服务端进行通信,这个过程是很自然的. 那你真的了解过Service的绑定过程吗?为什么可以是Binder和Service通信? 同样的先看一张图大致了解一下,灰色背景框起来的是同一个类的方法,如下: 我们知道调用Context的bindService方法即可绑定一个Service,而ContextImpl是Context的实现类.那接下来就从源码的角度

  • Android Service完整实现流程分析

    目录 前言 一.APP侧启动Service 1.1 前台和后台启动 1.2startServiceCommon 二.系统侧分发处理Service的启动逻辑 2.1 AMS接受启动service的通知 2.2realStartServiceLocked流程 三.系统侧通知APP启动Service 四.总结 前言 一开始的目标是解决各种各样的ANR问题的,我们知道,ANR总体上分有四种类型,这四种类型有三种是和四大组件相对应的,所以,如果想了解ANR发生的根因,对安卓四大组件的实现流程是必须要了解的

  • Android 系统服务TelecomService启动过程原理分析

    由于一直负责的是Android Telephony部分的开发工作,对于通信过程的上层部分Telecom服务以及UI都没有认真研究过.最近恰好碰到一个通话方面的问题,涉及到了Telecom部分,因而就花时间仔细研究了下相关的代码.这里做一个简单的总结.这篇文章,主要以下两个部分的内容: 什么是Telecom服务?其作用是什么? Telecom模块的启动与初始化过程: 接下来一篇文章,主要以实际通话过程为例,分析下telephony收到来电后如何将电话信息发送到Telecom模块以及Telecom是

  • Android Service启动绑定流程详解

    目录 前言 一.Service 的启动流程 二.Service的绑定 三.Service的Context 总结 前言 本文基于Android 11,参考<Android进阶解密>一书资料.了解Service的启动和绑定流程,以及Service的Context创建过程. 由于基于分析流程,忽略很多细节分支.各位在看源码的时候,要尽可能忽略细节,分析整体流程之后,还有精力的话再去看细节.例如有些属性是在后面赋值的,如果在前面追究,难哦. 另:阅读这种流程需要很大的耐心和毅力.建议在心情愉悦想要学习

  • Android系统进程间通信(IPC)机制Binder中的Client获得Server远程接口过程源代码分析

    在上一篇文章中,我们分析了Android系统进程间通信机制Binder中的Server在启动过程使用Service Manager的addService接口把自己添加到Service Manager守护过程中接受管理.在这一篇文章中,我们将深入到Binder驱动程序源代码去分析Client是如何通过Service Manager的getService接口中来获得Server远程接口的.Client只有获得了Server的远程接口之后,才能进一步调用Server提供的服务. 这里,我们仍然是通过A

  • android Service基础(启动服务与绑定服务)

         Service是Android中一个类,它是Android 四大组件之一,使用Service可以在后台执行耗时的操作(注意需另启子线程),其中Service并不与用户产生UI交互.其他的应用组件可以启动Service,即便用户切换了其他应用,启动的Service仍可在后台运行.一个组件可以与Service绑定并与之交互,甚至是跨进程通信.通常情况下Service可以在后台执行网络请求.播放音乐.执行文件读写操作或者与contentprovider交互等.   本文主要讲述service

  • android Service基础(启动服务与绑定服务)

    Service是Android中一个类,它是Android 四大组件之一,使用Service可以在后台执行耗时的操作(注意需另启子线程),其中Service并不与用户产生UI交互.其他的应用组件可以启动Service,即便用户切换了其他应用,启动的Service仍可在后台运行.一个组件可以与Service绑定并与之交互,甚至是跨进程通信.通常情况下Service可以在后台执行网络请求.播放音乐.执行文件读写操作或者与contentprovider交互等. 本文主要讲述service服务里的启动与

  • Android Service(不和用户交互应用组件)案例分析

    Service是在一段不定的时间运行在后台,不和用户交互应用组件.每个Service必须在manifest中 通过<service>来声明.可以通过contect.startservice和contect.bindserverice来启动. Service和其他的应用组件一样,运行在进程的主线程中.这就是说如果service需要很多耗时或者阻塞的操作,需要在其子线程中实现. service的两种模式 本地服务 Local Service 用于应用程序内部. 它可以启动并运行,直至有人停止了它或

随机推荐