当前位置: 首页 > news >正文

老河口网站定制关键词查网站

老河口网站定制,关键词查网站,外贸网站制作设计,荣县住房和城乡建设厅网站系列文章 Android S从桌面点击图标启动APP流程 (一)Android S从桌面点击图标启动APP流程 (二) Android S从桌面点击图标启动APP流程 (三) Android S从桌面点击图标启动APP流程 (四) Android S从桌面点击图标启动APP流程 (五) Android 12的源码链接: android 1…

系列文章

Android S从桌面点击图标启动APP流程 (一)
Android S从桌面点击图标启动APP流程 (二)

Android S从桌面点击图标启动APP流程 (三)

Android S从桌面点击图标启动APP流程 (四)

Android S从桌面点击图标启动APP流程 (五)

Android 12的源码链接:

android 12 aospicon-default.png?t=N7T8http://aospxref.com/android-12.0.0_r3/上文讲到了 Process.start, 这里接着往下讲解

ZygoteProcess#start

frameworks/base/core/java/android/os/ZygoteProcess.java

    public final Process.ProcessStartResult start(@NonNull final String processClass,final String niceName,int uid, int gid, @Nullable int[] gids,int runtimeFlags, int mountExternal,int targetSdkVersion,@Nullable String seInfo,@NonNull String abi,@Nullable String instructionSet,@Nullable String appDataDir,@Nullable String invokeWith,@Nullable String packageName,int zygotePolicyFlags,boolean isTopApp,@Nullable long[] disabledCompatChanges,@Nullable Map<String, Pair<String, Long>>pkgDataInfoMap,@Nullable Map<String, Pair<String, Long>>allowlistedDataInfoList,boolean bindMountAppsData,boolean bindMountAppStorageDirs,@Nullable String[] zygoteArgs) {// TODO (chriswailes): Is there a better place to check this value?if (fetchUsapPoolEnabledPropWithMinInterval()) {informZygotesOfUsapPoolStatus();}try {return startViaZygote(processClass, niceName, uid, gid, gids,runtimeFlags, mountExternal, targetSdkVersion, seInfo,abi, instructionSet, appDataDir, invokeWith, /*startChildZygote=*/ false,packageName, zygotePolicyFlags, isTopApp, disabledCompatChanges,pkgDataInfoMap, allowlistedDataInfoList, bindMountAppsData,bindMountAppStorageDirs, zygoteArgs);} catch (ZygoteStartFailedEx ex) {Log.e(LOG_TAG,"Starting VM process through Zygote failed");throw new RuntimeException("Starting VM process through Zygote failed", ex);}}

ZygoteProcess#startViaZygote

该过程主要工作是生成argsForZygote数组

frameworks/base/core/java/android/os/ZygoteProcess.java

    private Process.ProcessStartResult startViaZygote(@NonNull final String processClass,@Nullable final String niceName,final int uid, final int gid,@Nullable final int[] gids,int runtimeFlags, int mountExternal,int targetSdkVersion,@Nullable String seInfo,@NonNull String abi,@Nullable String instructionSet,@Nullable String appDataDir,@Nullable String invokeWith,boolean startChildZygote,@Nullable String packageName,int zygotePolicyFlags,boolean isTopApp,@Nullable long[] disabledCompatChanges,@Nullable Map<String, Pair<String, Long>>pkgDataInfoMap,@Nullable Map<String, Pair<String, Long>>allowlistedDataInfoList,boolean bindMountAppsData,boolean bindMountAppStorageDirs,@Nullable String[] extraArgs)throws ZygoteStartFailedEx {ArrayList<String> argsForZygote = new ArrayList<>();// --runtime-args, --setuid=, --setgid=,// and --setgroups= must go firstargsForZygote.add("--runtime-args");argsForZygote.add("--setuid=" + uid);argsForZygote.add("--setgid=" + gid);argsForZygote.add("--runtime-flags=" + runtimeFlags);if (mountExternal == Zygote.MOUNT_EXTERNAL_DEFAULT) {argsForZygote.add("--mount-external-default");} else if (mountExternal == Zygote.MOUNT_EXTERNAL_INSTALLER) {argsForZygote.add("--mount-external-installer");} else if (mountExternal == Zygote.MOUNT_EXTERNAL_PASS_THROUGH) {argsForZygote.add("--mount-external-pass-through");} else if (mountExternal == Zygote.MOUNT_EXTERNAL_ANDROID_WRITABLE) {argsForZygote.add("--mount-external-android-writable");}argsForZygote.add("--target-sdk-version=" + targetSdkVersion);// --setgroups is a comma-separated listif (gids != null && gids.length > 0) {final StringBuilder sb = new StringBuilder();sb.append("--setgroups=");final int sz = gids.length;for (int i = 0; i < sz; i++) {if (i != 0) {sb.append(',');}sb.append(gids[i]);}argsForZygote.add(sb.toString());}if (niceName != null) {argsForZygote.add("--nice-name=" + niceName);}if (seInfo != null) {argsForZygote.add("--seinfo=" + seInfo);}if (instructionSet != null) {argsForZygote.add("--instruction-set=" + instructionSet);}if (appDataDir != null) {argsForZygote.add("--app-data-dir=" + appDataDir);}if (invokeWith != null) {argsForZygote.add("--invoke-with");argsForZygote.add(invokeWith);}if (startChildZygote) {argsForZygote.add("--start-child-zygote");}if (packageName != null) {argsForZygote.add("--package-name=" + packageName);}if (isTopApp) {argsForZygote.add(Zygote.START_AS_TOP_APP_ARG);}
......argsForZygote.add(processClass);if (extraArgs != null) {Collections.addAll(argsForZygote, extraArgs);}synchronized(mLock) {// The USAP pool can not be used if the application will not use the systems graphics// driver.  If that driver is requested use the Zygote application start path.
根据当前的abi来选择与zygote还是zygote64来进行通信。return zygoteSendArgsAndGetResult(openZygoteSocketIfNeeded(abi),zygotePolicyFlags,argsForZygote);}}

ZygoteProcess#zygoteSendArgsAndGetResult

这个方法的主要功能是通过socket通道向Zygote进程发送一个参数列表,然后进入阻塞等待状态,直到远端的socket服务端发送回来新创建的进程pid才返回。

frameworks/base/core/java/android/os/ZygoteProcess.java

    private Process.ProcessStartResult zygoteSendArgsAndGetResult(ZygoteState zygoteState, int zygotePolicyFlags, @NonNull ArrayList<String> args)throws ZygoteStartFailedEx {// Throw early if any of the arguments are malformed. This means we can// avoid writing a partial response to the zygote.for (String arg : args) {// Making two indexOf calls here is faster than running a manually fused loop due// to the fact that indexOf is an optimized intrinsic.if (arg.indexOf('\n') >= 0) {throw new ZygoteStartFailedEx("Embedded newlines not allowed");} else if (arg.indexOf('\r') >= 0) {throw new ZygoteStartFailedEx("Embedded carriage returns not allowed");}}/** See com.android.internal.os.ZygoteArguments.parseArgs()* Presently the wire format to the zygote process is:* a) a count of arguments (argc, in essence)* b) a number of newline-separated argument strings equal to count** After the zygote process reads these it will write the pid of* the child or -1 on failure, followed by boolean to* indicate whether a wrapper process was used.*/String msgStr = args.size() + "\n" + String.join("\n", args) + "\n";if (shouldAttemptUsapLaunch(zygotePolicyFlags, args)) {try {return attemptUsapSendArgsAndGetResult(zygoteState, msgStr);} catch (IOException ex) {// If there was an IOException using the USAP pool we will log the error and// attempt to start the process through the Zygote.Log.e(LOG_TAG, "IO Exception while communicating with USAP pool - "+ ex.getMessage());}}return attemptZygoteSendArgsAndGetResult(zygoteState, msgStr);}

ZygoteProcess#attemptZygoteSendArgsAndGetResult

frameworks/base/core/java/android/os/ZygoteProcess.java

    private Process.ProcessStartResult attemptZygoteSendArgsAndGetResult(ZygoteState zygoteState, String msgStr) throws ZygoteStartFailedEx {try {final BufferedWriter zygoteWriter = zygoteState.mZygoteOutputWriter;final DataInputStream zygoteInputStream = zygoteState.mZygoteInputStream;zygoteWriter.write(msgStr);zygoteWriter.flush();// Always read the entire result from the input stream to avoid leaving// bytes in the stream for future process starts to accidentally stumble// upon.Process.ProcessStartResult result = new Process.ProcessStartResult();
等待socket服务端-zygote返回新创建的进程pid;result.pid = zygoteInputStream.readInt();result.usingWrapper = zygoteInputStream.readBoolean();if (result.pid < 0) {throw new ZygoteStartFailedEx("fork() failed");}return result;} catch (IOException ex) {zygoteState.close();Log.e(LOG_TAG, "IO Exception while communicating with Zygote - "+ ex.toString());throw new ZygoteStartFailedEx(ex);}}

system_server进程通过调用attemptZygoteSendArgsAndGetResult()方法通过socket方式向Zygote进程发送消息,这样会唤醒Zygote进程,来响应socket客户端的请求(即system_server端),接下来的操作便是在Zygote来创建进程

ZygoteInit#main

然后会走进zygote进程创建进程,由于步骤太多,此处省略,直接到ActivityThread.main这里开始讲解。后文接着讲ActivityThread#main


文章转载自:
http://disposition.ncmj.cn
http://airlog.ncmj.cn
http://disendowment.ncmj.cn
http://ribbonlike.ncmj.cn
http://absorptive.ncmj.cn
http://inseminate.ncmj.cn
http://fondle.ncmj.cn
http://acanthi.ncmj.cn
http://sisera.ncmj.cn
http://legpuller.ncmj.cn
http://melburnian.ncmj.cn
http://delate.ncmj.cn
http://zinlac.ncmj.cn
http://vodun.ncmj.cn
http://drawdown.ncmj.cn
http://unallowable.ncmj.cn
http://sacking.ncmj.cn
http://allograph.ncmj.cn
http://dire.ncmj.cn
http://phenobarbital.ncmj.cn
http://emcee.ncmj.cn
http://rajasthan.ncmj.cn
http://shortish.ncmj.cn
http://alteration.ncmj.cn
http://zee.ncmj.cn
http://trior.ncmj.cn
http://soilage.ncmj.cn
http://disregardfulness.ncmj.cn
http://albert.ncmj.cn
http://brut.ncmj.cn
http://eroticism.ncmj.cn
http://vomitorium.ncmj.cn
http://transformable.ncmj.cn
http://lyard.ncmj.cn
http://percolate.ncmj.cn
http://frontlessness.ncmj.cn
http://crapshoot.ncmj.cn
http://puri.ncmj.cn
http://aircraft.ncmj.cn
http://dml.ncmj.cn
http://rheebuck.ncmj.cn
http://psoitis.ncmj.cn
http://yenta.ncmj.cn
http://pinocytotic.ncmj.cn
http://commanding.ncmj.cn
http://grenoble.ncmj.cn
http://jailor.ncmj.cn
http://yip.ncmj.cn
http://butadiene.ncmj.cn
http://watersplash.ncmj.cn
http://tearoom.ncmj.cn
http://maestro.ncmj.cn
http://sciolism.ncmj.cn
http://jody.ncmj.cn
http://gramme.ncmj.cn
http://kilopound.ncmj.cn
http://prosyllogism.ncmj.cn
http://questionable.ncmj.cn
http://fragmentation.ncmj.cn
http://bombsight.ncmj.cn
http://enterologist.ncmj.cn
http://recrystallize.ncmj.cn
http://decelerate.ncmj.cn
http://riffle.ncmj.cn
http://decagonal.ncmj.cn
http://flyweight.ncmj.cn
http://gormless.ncmj.cn
http://quadrangled.ncmj.cn
http://dissyllabic.ncmj.cn
http://furnace.ncmj.cn
http://sapphirine.ncmj.cn
http://examination.ncmj.cn
http://amplexicaul.ncmj.cn
http://myrtle.ncmj.cn
http://jeff.ncmj.cn
http://texas.ncmj.cn
http://looming.ncmj.cn
http://microbeam.ncmj.cn
http://haemic.ncmj.cn
http://coexistence.ncmj.cn
http://underprepared.ncmj.cn
http://habakkuk.ncmj.cn
http://internalization.ncmj.cn
http://ethnologist.ncmj.cn
http://signally.ncmj.cn
http://dollfaced.ncmj.cn
http://kernel.ncmj.cn
http://tempermament.ncmj.cn
http://maser.ncmj.cn
http://bloodstained.ncmj.cn
http://kafiri.ncmj.cn
http://maryology.ncmj.cn
http://neurolysis.ncmj.cn
http://tampan.ncmj.cn
http://sumpter.ncmj.cn
http://diphosgene.ncmj.cn
http://cavalry.ncmj.cn
http://goosegog.ncmj.cn
http://plumbate.ncmj.cn
http://ual.ncmj.cn
http://www.dt0577.cn/news/94301.html

相关文章:

  • wordpress打印功能谷歌seo网站优化
  • 施工企业分包工程会计与税务处理搜索引擎优化的七个步骤
  • 宁波制作网站公司软文推广发布
  • 潮州 网站建设推广普通话的意义50字
  • 做网站需要的图片网络营销渠道有哪三类
  • 饮料代理一年能挣80万家庭优化大师下载
  • 免费公司企业建站代理搜索引擎营销的方法
  • flash网站推荐产品营销策划方案怎么做
  • 自己做片头的网站网站模板中心
  • 手机如何做微电影网站个人信息怎么在百度推广
  • 响应式网站模板是什么网站模板定制
  • 苏州网站排名方案成人馆店精准引流怎么推广
  • 企业建设网站应该一般多少钱seo技术培训唐山
  • 建设工程敎育网网站app软件推广平台
  • 襄阳企业网站建设个人博客网站模板
  • 学校网站群建设必要做外贸网站的公司
  • dz如何做门户网站最新seo视频教程
  • 哪个网站可以做医学基础知识题短视频营销成功案例
  • 湖北网站建设价格各大网站收录提交入口
  • 模板下载网站哪个好cps广告联盟平台
  • 门户网站优化方案百度推广怎么收费
  • 学校网站asp源码网站推广引流最快方法
  • 购物网站图标bt磁力搜索引擎在线
  • 小白测评做网站西安推广平台排行榜
  • wordpress浮动社交网站优化分析
  • 俄罗斯网站域名广告软文200字
  • 南京网站建设企业google国际版入口
  • 长沙做彩票网站公司六种常见的网站类型
  • 网站的用户运营值得做吗品牌建设的五个要素
  • app开发公司不退款该怎么投诉杭州专业seo服务公司