Android Application与SurfaceFlinger连接过程分析

2023-12-19 20:48

本文主要是介绍Android Application与SurfaceFlinger连接过程分析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

     看了罗老师的的博客很久了,特别羡慕,写的非常认真而且详细,所以呢,也经常向大家推荐,各位卓友如果有时间,请多看一下,对自己从整体上掌握Android Framework架构非常有益。自己的学习在同时,也跟着源码分析,得出自己的结论,只是单纯的看罗老师的博客,看完还是一头雾水,只有自己完整完整走一遍,才会有一定的掌握。

     Android当中的GUI绘图应该算是最重要的一块了,因为所有的应用都最直接和用户接触,当然这块也是特别复杂的。自己看了好久,才有一点脉络,记下来,怕以后忘掉了。

     从罗老师的博客当中,可以了解到,Application都会与SurfaceFlinger连接,并得到一个匿名的binder对象,以便能够绘制自己的UI,并在绘制完成后,请求SurfaceFlinger对自己的UI数据进行渲染。一个Application在SurfaceFlinger端对应有一个Client的对象,对应的代码如下:

spSurfaceFlinger::createConnection()
{
spbclient;
spclient(new Client(this));
status_t err = client->initCheck();
if (err == NO_ERROR) {
bclient = client;
}
return bclient;
}

     到这里,Application就取得与SurfaceFlinger的正常连接了,好了,那我们的目标现在就非常清晰了,Application是怎么执行到这里的呢?我们还是从ViewRootImpl类来看起,Application中的每个界面对应一个Activity,而每个Activity都对应一个Window、一个ViewRootImpl、一个WindowState、一个Surface,这些如果有疑问的,可以去看罗老师的博客。ViewRootImpl的创建是在WindowManagerGlobal当中的,代码如下:

public void addView(View view, ViewGroup.LayoutParams params,
Display display, Window parentWindow) {
if (view == null) {
throw new IllegalArgumentException("view must not be null");
}
if (display == null) {
throw new IllegalArgumentException("display must not be null");
}
if (!(params instanceof WindowManager.LayoutParams)) {
throw new IllegalArgumentException("Params must be WindowManager.LayoutParams");
}
final WindowManager.LayoutParams wparams = (WindowManager.LayoutParams) params;
if (parentWindow != null) {
parentWindow.adjustLayoutParamsForSubWindow(wparams);
} else {
// If there's no parent, then hardware acceleration for this view is
// set from the application's hardware acceleration setting.
final Context context = view.getContext();
if (context != null
&& (context.getApplicationInfo().flags
& ApplicationInfo.FLAG_HARDWARE_ACCELERATED) != 0) {
wparams.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
}
}
ViewRootImpl root;
View panelParentView = null;
synchronized (mLock) {
// Start watching for system property changes.
if (mSystemPropertyUpdater == null) {
mSystemPropertyUpdater = new Runnable() {
@Override public void run() {
synchronized (mLock) {
for (int i = mRoots.size() - 1; i >= 0; --i) {
mRoots.get(i).loadSystemProperties();
}
}
}
};
SystemProperties.addChangeCallback(mSystemPropertyUpdater);
}
int index = findViewLocked(view, false);
if (index >= 0) {
if (mDyingViews.contains(view)) {
// Don't wait for MSG_DIE to make it's way through root's queue.
mRoots.get(index).doDie();
} else {
throw new IllegalStateException("View " + view
+ " has already been added to the window manager.");
}
// The previous removeView() had not completed executing. Now it has.
}
// If this is a panel window, then find the window it is being
// attached to for future reference.
if (wparams.type >= WindowManager.LayoutParams.FIRST_SUB_WINDOW &&
wparams.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
final int count = mViews.size();
for (int i = 0; i < count; i++) {
if (mRoots.get(i).mWindow.asBinder() == wparams.token) {
panelParentView = mViews.get(i);
}
}
}
root = new ViewRootImpl(view.getContext(), display);
view.setLayoutParams(wparams);
mViews.add(view);
mRoots.add(root);
mParams.add(wparams);
}
// do this last because it fires off messages to start doing things
try {
root.setView(view, wparams, panelParentView);
} catch (RuntimeException e) {
// BadTokenException or InvalidDisplayException, clean up.
synchronized (mLock) {
final int index = findViewLocked(view, false);
if (index >= 0) {
removeViewLocked(index, true);
}
}
throw e;
}
}
     这里创建了ViewRootImpl对象,在ViewRootImpl的构造方法当中,对类成员变量进行初始化,代码如下:

public ViewRootImpl(Context context, Display display) {
mContext = context;
mWindowSession = WindowManagerGlobal.getWindowSession();
mDisplay = display;
mBasePackageName = context.getBasePackageName();
mDisplayAdjustments = display.getDisplayAdjustments();
mThread = Thread.currentThread();
mLocation = new WindowLeaked(null);
mLocation.fillInStackTrace();
mWidth = -1;
mHeight = -1;
mDirty = new Rect();
mTempRect = new Rect();
mVisRect = new Rect();
mWinFrame = new Rect();
mWindow = new W(this);
mTargetSdkVersion = context.getApplicationInfo().targetSdkVersion;
mViewVisibility = View.GONE;
mTransparentRegion = new Region();
mPreviousTransparentRegion = new Region();
// [+LEUI-9331]
mPreBlurParams = new BlurParams();
// [-LEUI-9331]
mFirst = true; // true for the first time the view is added
mAdded = false;
mAttachInfo = new View.AttachInfo(mWindowSession, mWindow, display, this, mHandler, this);
mAccessibilityManager = AccessibilityManager.getInstance(context);
mAccessibilityInteractionConnectionManager =
new AccessibilityInteractionConnectionManager();
mAccessibilityManager.addAccessibilityStateChangeListener(
mAccessibilityInteractionConnectionManager);
mHighContrastTextManager = new HighContrastTextManager();
mAccessibilityManager.addHighTextContrastStateChangeListener(
mHighContrastTextManager);
mViewConfiguration = ViewConfiguration.get(context);
mDensity = context.getResources().getDisplayMetrics().densityDpi;
mNoncompatDensity = context.getResources().getDisplayMetrics().noncompatDensityDpi;
mFallbackEventHandler = new PhoneFallbackEventHandler(context);
mChoreographer = Choreographer.getInstance();
mDisplayManager = (DisplayManager)context.getSystemService(Context.DISPLAY_SERVICE);
loadSystemProperties();
/**
* M: increase instance count and check log property to determine
* whether to enable/disable log system. @{
*/
mIdent = sIdent++;
checkViewRootImplLogProperty();
if (LOCAL_LOGV) {
enableLog(true, "a");
}
if (DEBUG_LIFECYCLE) {
Log.v(TAG, "ViewRootImpl construct: context = " + context + ", mThread = " + mThread
+ ", mChoreographer = " + mChoreographer + ", mTraversalRunnable = "
+ mTraversalRunnable + ", this = " + this);
}
}
     其中的第二行mWindowSession非常重要,它是通过WindowManagerGlobal.getWindowSession()赋值的,这里是一个binder调用,最终的实现是在WindowManagerService中的openSession()方法当中,这里新创建了一个Session对象,并通过binder进程间调用返回给了Application。
    public static IWindowSession getWindowSession() {
synchronized (WindowManagerGlobal.class) {
if (sWindowSession == null) {
try {
InputMethodManager imm = InputMethodManager.getInstance();
IWindowManager windowManager = getWindowManagerService();
sWindowSession = windowManager.openSession(
new IWindowSessionCallback.Stub() {
@Override
public void onAnimatorScaleChanged(float scale) {
ValueAnimator.setDurationScale(scale);
}
},
imm.getClient(), imm.getInputContext());
} catch (RemoteException e) {
Log.e(TAG, "Failed to open window session", e);
}
}
return sWindowSession;
}
}
     继续往下看,当ViewRootImpl对象创建完成,Activity需要绘制自己的UI数据时,通过各种调用,最终都会调用到ViewRootImpl类的performTraversals()方法当中,这个也就是我们通常说的View绘制的标准流程(Measure、Layout、Draw)三步,这个方法代码特别长,这里就不贴出来了,我们主要看一下if (mFirst || windowShouldResize || insetsChanged || viewVisibilityChanged || params != null) 这个分支,就是在绘制时,如果是第一次、窗口大小发生变化、状态栏变化、可见性变化、绘图参数不为空这几种情况时,会调用relayoutWindow(params, viewVisibility, insetsPending)方法,在relayoutWindow方法中,会调用最开始创建好的mWindowSession.relayout()方法,mWindowSession我们在前面已经说过了,是在WindowManagerService的openSession()方法当中创建的对象,它对应的类是Session,它的relayoutWindow就是转调到mService.relayoutWindow()方法当中了,而mService当然就是WindowManagerService了。
    private int relayoutWindow(WindowManager.LayoutParams params, int viewVisibility,
boolean insetsPending) throws RemoteException {
float appScale = mAttachInfo.mApplicationScale;
boolean restore = false;
if (params != null && mTranslator != null) {
restore = true;
params.backup();
mTranslator.translateWindowLayout(params);
}
if (params != null) {
if (DBG) Log.d(TAG, "WindowLayout in layoutWindow:" + params);
}
mPendingConfiguration.seq = 0;
if (DEBUG_LAYOUT) {
Log.d(TAG, ">>>>>> CALLING relayoutW+ " + mWindow + ", params = " + params
+ ",viewVisibility = " + viewVisibility + ", insetsPending = " + insetsPending
+ ", appScale = " + appScale + ", mWinFrame = " + mWinFrame + ", mSeq = "
+ mSeq + ", mPendingOverscanInsets = " + mPendingOverscanInsets
+ ", mPendingContentInsets = " + mPendingContentInsets
+ ", mPendingVisibleInsets = " + mPendingVisibleInsets
+ ", mPendingStableInsets = " + mPendingStableInsets
+ ", mPendingOutsets = " + mPendingOutsets
+ ", mPendingConfiguration = " + mPendingConfiguration + ", mSurface = "
+ mSurface + ",valid = " + mSurface.isValid() + ", mOrigWindowType = "
+ mOrigWindowType + ",this = " + this);
}
if (params != null && mOrigWindowType != params.type) {
// For compatibility with old apps, don't crash here.
if (mTargetSdkVersion < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
Slog.w(TAG, "Window type can not be changed after "
+ "the window is added; ignoring change of " + mView);
params.type = mOrigWindowType;
}
}
int relayoutResult = mWindowSession.relayout(
mWindow, mSeq, params,
(int) (mView.getMeasuredWidth() * appScale + 0.5f),
(int) (mView.getMeasuredHeight() * appScale + 0.5f),
viewVisibility, insetsPending ? WindowManagerGlobal.RELAYOUT_INSETS_PENDING : 0,
mWinFrame, mPendingOverscanInsets, mPendingContentInsets, mPendingVisibleInsets,
mPendingStableInsets, mPendingOutsets, mPendingConfiguration, mSurface);
if (DEBUG_LAYOUT) {
Log.d(TAG, "<<<<<< BACK FROM relayoutW- : res = " + relayoutResult + ", mWinFrame = "
+ mWinFrame + ", mPendingOverscanInsets = " + mPendingOverscanInsets
+ ", mPendingContentInsets = " + mPendingContentInsets
+ ", mPendingVisibleInsets = " + mPendingVisibleInsets
+ ", mPendingStableInsets = " + mPendingStableInsets
+ ", mPendingOutsets = " + mPendingOutsets
+ ", mPendingConfiguration = " + mPendingConfiguration + ", mSurface = "
+ mSurface + ",valid = " + mSurface.isValid() + ",params = " + params
+ ", this = " + this);
}
if (restore) {
params.restore();
}
if (mTranslator != null) {
mTranslator.translateRectInScreenToAppWinFrame(mWinFrame);
mTranslator.translateRectInScreenToAppWindow(mPendingOverscanInsets);
mTranslator.translateRectInScreenToAppWindow(mPendingContentInsets);
mTranslator.translateRectInScreenToAppWindow(mPendingVisibleInsets);
mTranslator.translateRectInScreenToAppWindow(mPendingStableInsets);
}
return relayoutResult;
}
     好,我们进入WindowManagerService.relayoutWindow()方法当中,这里请一定注意,relayoutWindow方法没有带重写的标志,说明不是从其他类继续的,而是直接调用的。因代码较长,这里也就不贴出来了,其中最关键的一句就是SurfaceControl surfaceControl = winAnimator.createSurfaceLocked(),这里创建好一个SurfaceControl对象,然后就将其拷贝到outSurface当中了。这里就有点疑问了,如果执行到这步,那Surface对象就已经生成好了,那么与SurfaceFlinger的连接到底是什么建立的呢?不对了,肯定是中间露掉什么了,回头看一下。
     从添加窗口重新来,ViewRootImpl调用setView方法,间接调用了mWindowSession.addToDisplay()方法,转而调用WindowManagerService.addWindow()方法,每个Activity对应的WindowState对象也是在这里构建的,创建完成后,调用win.attach(),代码如下:
    void attach() {
if (WindowManagerService.localLOGV) Slog.v(
TAG, "Attaching " + this + " token=" + mToken
+ ", list=" + mToken.windows);
mSession.windowAddedLocked();
}
其中的mSession对象就是WindowManagerService为每个ViewRootImpl构建的Session,在Session类的windowAddedLocked方法当中又构建了一个SurfaceSession,好像模糊的看到目标了,跟Surface有关系了,我们继续往下看,SurfaceSession的构造方法直接调用jni的nativeCreate,实现在android_view_SurfaceSession.cpp类中:
static jlong nativeCreate(JNIEnv* env, jclass clazz) {
SurfaceComposerClient* client = new SurfaceComposerClient();
client->incStrong((void*)nativeCreate);
return reinterpret_cast(client);
}
看到这里就很明显了,直接在native层创建了一个SurfaceComposerClient指针,而SurfaceComposerClient创建后,在首次调用时,会执行onFirstRef的方法,就会与SurfaceFlinger取得连接,然后调用到最开始我们看的new Client当中,这样Application就与SurfaceFlinger取得连接了。
中间写的思路开始不清晰,走错了,后面回头再看一次,更加深了印象,写的不好的地方,请大家见谅,谢谢!



这篇关于Android Application与SurfaceFlinger连接过程分析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/513653

相关文章

MyBatis-Plus中Service接口的lambdaUpdate用法及实例分析

《MyBatis-Plus中Service接口的lambdaUpdate用法及实例分析》本文将详细讲解MyBatis-Plus中的lambdaUpdate用法,并提供丰富的案例来帮助读者更好地理解和应... 目录深入探索MyBATis-Plus中Service接口的lambdaUpdate用法及示例案例背景

MyBatis-Plus中静态工具Db的多种用法及实例分析

《MyBatis-Plus中静态工具Db的多种用法及实例分析》本文将详细讲解MyBatis-Plus中静态工具Db的各种用法,并结合具体案例进行演示和说明,具有很好的参考价值,希望对大家有所帮助,如有... 目录MyBATis-Plus中静态工具Db的多种用法及实例案例背景使用静态工具Db进行数据库操作插入

IDEA连接达梦数据库的详细配置指南

《IDEA连接达梦数据库的详细配置指南》达梦数据库(DMDatabase)作为国产关系型数据库的代表,广泛应用于企业级系统开发,本文将详细介绍如何在IntelliJIDEA中配置并连接达梦数据库,助力... 目录准备工作1. 下载达梦JDBC驱动配置步骤1. 将驱动添加到IDEA2. 创建数据库连接连接参数

Android WebView无法加载H5页面的常见问题和解决方法

《AndroidWebView无法加载H5页面的常见问题和解决方法》AndroidWebView是一种视图组件,使得Android应用能够显示网页内容,它基于Chromium,具备现代浏览器的许多功... 目录1. WebView 简介2. 常见问题3. 网络权限设置4. 启用 JavaScript5. D

Android如何获取当前CPU频率和占用率

《Android如何获取当前CPU频率和占用率》最近在优化App的性能,需要获取当前CPU视频频率和占用率,所以本文小编就来和大家总结一下如何在Android中获取当前CPU频率和占用率吧... 最近在优化 App 的性能,需要获取当前 CPU视频频率和占用率,通过查询资料,大致思路如下:目前没有标准的

Spring Security注解方式权限控制过程

《SpringSecurity注解方式权限控制过程》:本文主要介绍SpringSecurity注解方式权限控制过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、摘要二、实现步骤2.1 在配置类中添加权限注解的支持2.2 创建Controller类2.3 Us

Spring AI集成DeepSeek三步搞定Java智能应用的详细过程

《SpringAI集成DeepSeek三步搞定Java智能应用的详细过程》本文介绍了如何使用SpringAI集成DeepSeek,一个国内顶尖的多模态大模型,SpringAI提供了一套统一的接口,简... 目录DeepSeek 介绍Spring AI 是什么?Spring AI 的主要功能包括1、环境准备2

SpringBoot集成图片验证码框架easy-captcha的详细过程

《SpringBoot集成图片验证码框架easy-captcha的详细过程》本文介绍了如何将Easy-Captcha框架集成到SpringBoot项目中,实现图片验证码功能,Easy-Captcha是... 目录SpringBoot集成图片验证码框架easy-captcha一、引言二、依赖三、代码1. Ea

Go使用pprof进行CPU,内存和阻塞情况分析

《Go使用pprof进行CPU,内存和阻塞情况分析》Go语言提供了强大的pprof工具,用于分析CPU、内存、Goroutine阻塞等性能问题,帮助开发者优化程序,提高运行效率,下面我们就来深入了解下... 目录1. pprof 介绍2. 快速上手:启用 pprof3. CPU Profiling:分析 C

MySQL表锁、页面锁和行锁的作用及其优缺点对比分析

《MySQL表锁、页面锁和行锁的作用及其优缺点对比分析》MySQL中的表锁、页面锁和行锁各有特点,适用于不同的场景,表锁锁定整个表,适用于批量操作和MyISAM存储引擎,页面锁锁定数据页,适用于旧版本... 目录1. 表锁(Table Lock)2. 页面锁(Page Lock)3. 行锁(Row Lock