android 10车载桌面ActivityView触摸事件源码详解分析

hi,粉丝朋友们:

背景

大家好!近来居然有好几个粉丝朋友居然问到了一个虚拟屏幕触摸相关的问题,还有老版本android 10上面有个车载桌面使用的ActivityView可以正常触摸的问题。
其实这个ActivityView在最新的版本已经没有了,所以以前的话没有去重点分析这个ActivityView触摸部分的原理剖析,但是发现虽然没有了ActivityView。但是很多同学还是喜欢自己在高版本又写一个类似的ActivityView。基于这个背景下,拿出老版本的ActivityView分析一下其实现原理还是有必要哈。前面的blog本身已经分析了ActivityView的显示Activity原理部分,本节就来重点分析ActvityView是怎么在系统中正常触摸的。
为了分析这个ActivityView的触摸原理,我这边特别下载了android 10的代码编译好了一个car的模拟器进行验证分析

车载桌面的当前表现

目前车载的桌面显示如下图,绿色的“”No maps …“”这个区域就是ActivityView,他属于搞了个新的虚拟Display然后启动的Activity。所以这里的就会存在在CarLauncher上面显示两个Activity,一个是桌面自己,一个是地图绿色的Activity,但是大家注意哈,这里的绿色区域的地图Activity明显属于另一个display,这里我们是知道的触摸都是每个display独立的,即多屏display显示都是有各自display的触摸节点。
但是目前画面都显示在主屏幕display0这个屏幕,所以我们触摸绿色区域,肯定触摸事件是display0的,肯定不会到虚拟display去,这个是我们的理论分析的哈,认为如果要虚拟display有事件,必须要手动注入模拟相关的触摸事件注入到虚拟display。但事实真的是这样吗?

在这里插入图片描述

认为绿色虚拟屏幕不可能有触摸事件接受,我们来验证一下是不是触摸没有触摸事件
为了验证,在地图容器Activity的dispatchTouchEvent有日志打印,以此来确定是否有事件到Activity。
实际上在触摸绿色区域时候,发现有对于事件:


```bash
11-13 00:29:48.738  3638  3638 I lsm11   : dispatchTouchEvent ev MotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=188.97656, y[0]=107.98242, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2719884, downTime=2719884, deviceId=0, source=0x1002, displayId=0 }11-13 00:29:48.851  3638  3638 I lsm11   : dispatchTouchEvent ev MotionEvent { action=ACTION_UP, actionButton=0, id[0]=0, x[0]=188.97656, y[0]=107.98242, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2719996, downTime=2719884, deviceId=0, source=0x1002, displayId=0 }

看到结果是不是感觉自己被狠狠打脸了。。。。。
为啥可以收到触摸主屏幕触摸事件呢,activity明明显示在另一个display

问题追踪分析线索:

怀疑线索1:

11-13 00:29:48.738 3638 3638 I lsm11 : dispatchTouchEvent ev MotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=188.97656, y[0]=107.98242, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2719884, downTime=2719884, deviceId=0, source=0x1002, displayId=0 }

看这里触摸事件时候大家是不是发现明明这个displayId居然还是0,明显不太和逻辑是吧,,,正常触摸事件是不是应该为displayId = 1(假设虚拟屏幕是displayId = 1)
不过换着想一下这个displayId决定是inputreader,即说明在inputreader时候就认为是主屏幕事件,故立马吧方向就不用放到inputreader部分

线索2:
dumpsys input

INPUT MANAGER (dumpsys input)Input Manager State:Interactive: trueSystem UI Visibility: 0x8008Pointer Speed: 0Pointer Gestures Enabled: trueShow Touches: falsePointer Capture Enabled: falseEvent Hub State:BuiltInKeyboardId: 2Devices:-1: VirtualClasses: 0x40000023Path: <virtual>Enabled: trueDescriptor: a718a782d34bc767f4689c232d64d527998ea7fdLocation: ControllerNumber: 0UniqueId: <virtual>Identifier: bus=0x0000, vendor=0x0000, product=0x0000, version=0x0000KeyLayoutFile: /system/usr/keylayout/Generic.klKeyCharacterMapFile: /system/usr/keychars/Virtual.kcmConfigurationFile: HaveKeyboardLayoutOverlay: falseVideoDevice: <none>1: Power ButtonClasses: 0x00000001Path: /dev/input/event0Enabled: trueDescriptor: 26d13db3fa0f6bd5d05831266fb01ea6c500b88cLocation: LNXPWRBN/button/input0ControllerNumber: 0UniqueId: Identifier: bus=0x0019, vendor=0x0000, product=0x0001, version=0x0000KeyLayoutFile: /system/usr/keylayout/Generic.klKeyCharacterMapFile: /system/usr/keychars/Generic.kcmConfigurationFile: HaveKeyboardLayoutOverlay: falseVideoDevice: <none>2: qwerty2 (aka device 0 - built-in keyboard)Classes: 0x000000bdPath: /dev/input/event1Enabled: trueDescriptor: 04c0f71d9920e1e448166e8a4feebf80d1849c2fLocation: ControllerNumber: 0UniqueId: Identifier: bus=0x0019, vendor=0x0000, product=0x0000, version=0x0000KeyLayoutFile: /system/usr/keylayout/qwerty.klKeyCharacterMapFile: /system/usr/keychars/qwerty2.kcmConfigurationFile: /system/usr/idc/qwerty2.idcHaveKeyboardLayoutOverlay: falseVideoDevice: <none>3: goldfish_rotaryClasses: 0x00001000Path: /dev/input/event2Enabled: trueDescriptor: 9286b20e4aaa6bcaca619b728b030e3f7b422ee6Location: ControllerNumber: 0UniqueId: Identifier: bus=0x0019, vendor=0x0000, product=0x0000, version=0x0000KeyLayoutFile: KeyCharacterMapFile: ConfigurationFile: /vendor/usr/idc/goldfish_rotary.idcHaveKeyboardLayoutOverlay: falseVideoDevice: <none>Unattached video devices:<none>Input Reader State:Device -1: VirtualGeneration: 2IsExternal: falseAssociatedDisplayPort: <none>HasMic:     falseSources: 0x00000301KeyboardType: 2Keyboard Input Mapper:Parameters:OrientationAware: falseHandlesKeyRepeat: falseKeyboardType: 2Orientation: 0KeyDowns: 0 keys currently downMetaState: 0x0DownTime: 0Device 0: qwerty2Generation: 12IsExternal: falseAssociatedDisplayPort: <none>HasMic:     falseSources: 0x80011307KeyboardType: 1Motion Ranges:X: source=0x00010004, min=-1.000, max=1.000, flat=0.000, fuzz=0.167, resolution=0.000Y: source=0x00010004, min=-1.000, max=1.000, flat=0.000, fuzz=0.167, resolution=0.000PRESSURE: source=0x00010004, min=0.000, max=1.000, flat=0.000, fuzz=0.000, resolution=0.000X: source=0x00001002, min=0.000, max=799.000, flat=0.000, fuzz=0.000, resolution=0.000Y: source=0x00001002, min=0.000, max=479.000, flat=0.000, fuzz=0.000, resolution=0.000PRESSURE: source=0x00001002, min=0.000, max=1.000, flat=0.000, fuzz=0.000, resolution=0.000SIZE: source=0x00001002, min=0.000, max=1.000, flat=0.000, fuzz=0.000, resolution=0.000TOUCH_MAJOR: source=0x00001002, min=0.000, max=932.952, flat=0.000, fuzz=0.000, resolution=0.000TOUCH_MINOR: source=0x00001002, min=0.000, max=932.952, flat=0.000, fuzz=0.000, resolution=0.000TOOL_MAJOR: source=0x00001002, min=0.000, max=932.952, flat=0.000, fuzz=0.000, resolution=0.000TOOL_MINOR: source=0x00001002, min=0.000, max=932.952, flat=0.000, fuzz=0.000, resolution=0.000Switch Input Mapper:SwitchValues: 0Keyboard Input Mapper:Parameters:OrientationAware: trueHandlesKeyRepeat: falseKeyboardType: 1Orientation: 0KeyDowns: 0 keys currently downMetaState: 0x0DownTime: 0Cursor Input Mapper:Parameters:HasAssociatedDisplay: trueMode: navigationOrientationAware: trueXScale: 0.167YScale: 0.167XPrecision: 6.000YPrecision: 6.000HaveVWheel: falseHaveHWheel: falseVWheelScale: 1.000HWheelScale: 1.000Orientation: 0ButtonState: 0x00000000Down: falseDownTime: 0Touch Input Mapper (mode - direct):Parameters:GestureMode: multi-touchDeviceType: touchScreenAssociatedDisplay: hasAssociatedDisplay=true, isExternal=false, displayId=''OrientationAware: trueRaw Touch Axes:X: min=0, max=32767, flat=0, fuzz=0, resolution=0Y: min=0, max=32767, flat=0, fuzz=0, resolution=0Pressure: min=0, max=256, flat=0, fuzz=0, resolution=0TouchMajor: min=0, max=2147483647, flat=0, fuzz=0, resolution=0TouchMinor: unknown rangeToolMajor: unknown rangeToolMinor: unknown rangeOrientation: unknown rangeDistance: unknown rangeTiltX: unknown rangeTiltY: unknown rangeTrackingId: min=0, max=10, flat=0, fuzz=0, resolution=0Slot: min=0, max=9, flat=0, fuzz=0, resolution=0Calibration:touch.size.calibration: geometrictouch.pressure.calibration: physicaltouch.orientation.calibration: nonetouch.distance.calibration: nonetouch.coverage.calibration: noneAffine Transformation:X scale: 1.000X ymix: 0.000X offset: 0.000Y xmix: 0.000Y scale: 1.000Y offset: 0.000Viewport INTERNAL: displayId=0, uniqueId=local:0, port=0, orientation=0, logicalFrame=[0, 0, 800, 480], physicalFrame=[0, 0, 800, 480], deviceSize=[800, 480]SurfaceWidth: 800pxSurfaceHeight: 480pxSurfaceLeft: 0SurfaceTop: 0PhysicalWidth: 800pxPhysicalHeight: 480pxPhysicalLeft: 0PhysicalTop: 0SurfaceOrientation: 0Translation and Scaling Factors:XTranslate: 0.000YTranslate: 0.000XScale: 0.024YScale: 0.015XPrecision: 40.960YPrecision: 68.267GeometricScale: 0.020PressureScale: 0.004SizeScale: 0.000OrientationScale: 0.000DistanceScale: 0.000HaveTilt: falseTiltXCenter: 0.000TiltXScale: 0.000TiltYCenter: 0.000TiltYScale: 0.000Last Raw Button State: 0x00000000Last Raw Touch: pointerCount=0Last Cooked Button State: 0x00000000Last Cooked Touch: pointerCount=0Stylus Fusion:ExternalStylusConnected: falseExternal Stylus ID: -1External Stylus Data Timeout: 9223372036854775807External Stylus State:When: 9223372036854775807Pressure: 0.000000Button State: 0x00000000Tool Type: 0Device 1: Power ButtonGeneration: 9IsExternal: falseAssociatedDisplayPort: <none>HasMic:     falseSources: 0x00000101KeyboardType: 1Keyboard Input Mapper:Parameters:OrientationAware: falseHandlesKeyRepeat: falseKeyboardType: 1Orientation: 0KeyDowns: 0 keys currently downMetaState: 0x0DownTime: 0Device 3: goldfish_rotaryGeneration: 4IsExternal: falseAssociatedDisplayPort: <none>HasMic:     falseSources: 0x00400000KeyboardType: 0Motion Ranges:26: source=0x00400000, min=-1.000, max=1.000, flat=0.000, fuzz=0.000, resolution=0.791Rotary Encoder Input Mapper:HaveWheel: trueConfiguration:ExcludedDeviceNames: []VirtualKeyQuietTime: 0.0msPointerVelocityControlParameters: scale=1.000, lowThreshold=500.000, highThreshold=3000.000, acceleration=3.000WheelVelocityControlParameters: scale=1.000, lowThreshold=15.000, highThreshold=50.000, acceleration=4.000PointerGesture:Enabled: trueQuietInterval: 100.0msDragMinSwitchSpeed: 50.0px/sTapInterval: 150.0msTapDragInterval: 300.0msTapSlop: 20.0pxMultitouchSettleInterval: 100.0msMultitouchMinDistance: 15.0pxSwipeTransitionAngleCosine: 0.3SwipeMaxWidthRatio: 0.2MovementSpeedRatio: 0.8ZoomSpeedRatio: 0.3Viewports:Viewport INTERNAL: displayId=0, uniqueId=local:0, port=0, orientation=0, logicalFrame=[0, 0, 800, 480], physicalFrame=[0, 0, 800, 480], deviceSize=[800, 480]Input Classifier State:Motion Classifier:<nullptr>Input Dispatcher State:DispatchEnabled: trueDispatchFrozen: falseInputFilterEnabled: falseFocusedDisplayId: 2FocusedApplications:displayId=3, name='AppWindowToken{34ea2d9 token=Token{6cc1920 ActivityRecord{e2df023 u10 android.car.cluster/.FakeFreeNavigationActivity t1000019}}}', dispatchingTimeout=5000.000msdisplayId=2, name='AppWindowToken{7f21912 token=Token{601109d ActivityRecord{c985374 u10 com.android.car.mapsplaceholder/.MapsPlaceholderActivity t1000018}}}', dispatchingTimeout=5000.000msdisplayId=1, name='AppWindowToken{ba4478b token=Token{f67795a ActivityRecord{aba2505 u0 android.car.cluster/.MainClusterActivity t5}}}', dispatchingTimeout=5000.000msdisplayId=0, name='AppWindowToken{b53bbef token=Token{3bc30ce ActivityRecord{f6201c9 u10 com.android.car.carlauncher/.CarLauncher t1000002}}}', dispatchingTimeout=5000.000msFocusedWindows:displayId=0, name='Window{71ec913 u10 com.android.car.carlauncher/com.android.car.carlauncher.CarLauncher}'displayId=2, name='Window{36a3ea8 u10 com.android.car.mapsplaceholder/com.android.car.mapsplaceholder.MapsPlaceholderActivity}'displayId=3, name='Window{752545a u10 android.car.cluster/android.car.cluster.FakeFreeNavigationActivity}'displayId=1, name='Window{96a3c94 u0 android.car.cluster/android.car.cluster.MainClusterActivity}'TouchStates: <no displays touched>Display: 3Windows:0: name='Window{752545a u10 android.car.cluster/android.car.cluster.FakeFreeNavigationActivity}', displayId=3, portalToDisplayId=-1, paused=false, hasFocus=true, hasWallpaper=false, visible=true, canReceiveKeys=true, flags=0x01810520, type=0x00000001, layer=0, frame=[0,0][1280,520], globalScale=1.000000, windowScale=(1.000000,1.000000), touchableRegion=[0,0][1280,520], inputFeatures=0x00000000, ownerPid=3735, ownerUid=1001000, dispatchingTimeout=5000.000msDisplay: 2Windows:0: name='Window{36a3ea8 u10 com.android.car.mapsplaceholder/com.android.car.mapsplaceholder.MapsPlaceholderActivity}', displayId=2, portalToDisplayId=-1, paused=false, hasFocus=true, hasWallpaper=false, visible=true, canReceiveKeys=true, flags=0x81810120, type=0x00000001, layer=0, frame=[12,69][474,384], globalScale=1.000000, windowScale=(1.000000,1.000000), touchableRegion=[12,69][474,384], inputFeatures=0x00000000, ownerPid=3638, ownerUid=1010066, dispatchingTimeout=5000.000msDisplay: 1Windows:0: name='Window{96a3c94 u0 android.car.cluster/android.car.cluster.MainClusterActivity}', displayId=1, portalToDisplayId=-1, paused=false, hasFocus=true, hasWallpaper=false, visible=true, canReceiveKeys=true, flags=0x01810520, type=0x00000001, layer=0, frame=[0,0][1280,720], globalScale=1.000000, windowScale=(1.000000,1.000000), touchableRegion=[0,0][1280,720], inputFeatures=0x00000000, ownerPid=3472, ownerUid=1000, dispatchingTimeout=5000.000msDisplay: 0Windows:0: name='Window{263dc87 u0 CarNavigationBar}', displayId=0, portalToDisplayId=-1, paused=false, hasFocus=false, hasWallpaper=false, visible=true, canReceiveKeys=false, flags=0x01840028, type=0x000007e3, layer=0, frame=[0,396][800,480], globalScale=1.000000, windowScale=(1.000000,1.000000), touchableRegion=[0,396][800,480], inputFeatures=0x00000000, ownerPid=2020, ownerUid=10099, dispatchingTimeout=5000.000ms1: name='Window{586637c u0 StatusBar}', displayId=0, portalToDisplayId=-1, paused=false, hasFocus=false, hasWallpaper=false, visible=true, canReceiveKeys=false, flags=0x81840048, type=0x000007d0, layer=0, frame=[0,0][800,57], globalScale=1.000000, windowScale=(1.000000,1.000000), touchableRegion=[0,0][800,57], inputFeatures=0x00000000, ownerPid=2020, ownerUid=10099, dispatchingTimeout=5000.000ms2: name='Window{71ec913 u10 com.android.car.carlauncher/com.android.car.carlauncher.CarLauncher}', displayId=0, portalToDisplayId=-1, paused=false, hasFocus=true, hasWallpaper=true, visible=true, canReceiveKeys=true, flags=0x81910120, type=0x00000001, layer=0, frame=[0,0][800,480], globalScale=1.000000, windowScale=(1.000000,1.000000), touchableRegion=[0,0][800,69]|[0,69][12,384]|[474,69][800,384]|[0,384][800,480], inputFeatures=0x00000000, ownerPid=3531, ownerUid=1001000, dispatchingTimeout=5000.000ms3: name='Surface(name=ActivityViewVirtualDisplay)/@0x8f6acba', displayId=0, portalToDisplayId=2, paused=false, hasFocus=false, hasWallpaper=false, visible=true, canReceiveKeys=false, flags=0x00800028, type=0x00000000, layer=0, frame=[12,69][474,384], globalScale=1.000000, windowScale=(1.000000,1.000000), touchableRegion=[12,69][474,384], inputFeatures=0x00000000, ownerPid=1875, ownerUid=1000, dispatchingTimeout=0.000ms4: name='Window{5bed72e u10 com.android.systemui.ImageWallpaper}', displayId=0, portalToDisplayId=-1, paused=false, hasFocus=false, hasWallpaper=false, visible=true, canReceiveKeys=false, flags=0x00014318, type=0x000007dd, layer=0, frame=[0,0][963,480], globalScale=1.000000, windowScale=(2.666667,2.666667), touchableRegion=[0,0][361,180], inputFeatures=0x00000000, ownerPid=2528, ownerUid=1010099, dispatchingTimeout=5000.000ms

这里我们仔细看我们发现主屏幕display 0有一个Window:

 3: name='Surface(name=ActivityViewVirtualDisplay)/@0x8f6acba', displayId=0, portalToDisplayId=2, paused=false, hasFocus=false, hasWallpaper=false, visible=true, canReceiveKeys=false, flags=0x00800028, type=0x00000000, layer=0, frame=[12,69][474,384], globalScale=1.000000, windowScale=(1.000000,1.000000), touchableRegion=[12,69][474,384], inputFeatures=0x00000000, ownerPid=1875, ownerUid=1000, dispatchingTimeout=0.000ms

这个Surface(name=ActivityViewVirtualDisplay)就是ActivityView专门创建的一个input层面的window,仔细分析他的时候发现有一个变量引起我们的注意:
portalToDisplayId=2,

明显其他窗口都是 -1,他是2,而且这个2又刚好是我们的虚拟display的Id,哈哈哈到了这里大家就是不是找到核心问题点。

原理流程分析:

寻找触摸事件接受窗口时候会根据判断这个portalToDisplayId值,如果有这个值,会重新遍历这个displayId上的window代替自己这个display的window。即实现了Surface(name=ActivityViewVirtualDisplay)/@0x8f6acba这窗口的触摸事件接受都转到了displayId = portalToDisplayId的window上:
0: name=‘Window{36a3ea8 u10 com.android.car.mapsplaceholder/com.android.car.mapsplaceholder.MapsPlaceholderActivity}’, displayId=2,
在这里插入图片描述

那么这个portalToDisplayId谁设置的呢?
其实是ActivityView调用的reparentDisplayContent
在这里插入图片描述

接下来到了wms中执行:
在这里插入图片描述

这里调用到了DisplayContent:
在这里插入图片描述

好那么今天就把ActivityView的触摸部分就原理剖析完成,弥补了网络上这块的技术空白,方便大家学习,大家想要学习更多framework高深干货技术,那就跟着马哥很多干货课程,需要的课程优惠的可以+v(androidframework007)
在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/141635.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Node.js 框架 star 星数量排名——NestJs跃居第二

文章目录 什么是NodeJs?什么是NodeJs框架?图表数据框架排名 什么是NodeJs? Node.js是一个基于Chrome V8引擎的JavaScript运行环境&#xff0c;它使得我们可以在服务器端使用JavaScript开发高效、可扩展的应用程序。作为一个快速、轻量级的平台&#xff0c;Node.js在Web开发领…

企业计算机中了eking勒索病毒如何解毒,eking勒索病毒文件恢复

网络技术的不断发展&#xff0c;为企业的生产生活提供了极大便利&#xff0c;但随之而来的网络安全威胁也不断增加&#xff0c;近期&#xff0c;很多企业的计算机服务器遭到了eking勒索病毒攻击&#xff0c;导致企业的计算机服务器所有数据被加密&#xff0c;无法正常使用&…

深眸科技聚焦3D机器视觉技术,从技术形态到应用前景实现详细分析

机器视觉技术的不断升级&#xff0c;使得对二维图像的处理逐渐扩展到了更复杂的三维领域&#xff0c;形成了3D机器视觉。3D机器视觉是机器视觉的重要应用领域之一&#xff0c;通过计算机能够在短时间内处理视觉传感器采集的图像信号&#xff0c;从而获得目标对象的三维信息。 …

C++ 11 新特性

目录 1. 支持特性的编译器版本2. 模板表达式中空格3. 空指针4. auto5. 统一初始化6. explict7. 范围for8. default&#xff0c;delete9. 化名模板&#xff08;alias template&#xff09;10. using11. noexcept12. override13. final14. decltype15. lambda16. Variadic Templa…

SpringBoot整合Activiti7——定时器事件(九)

文章目录 定时器事件时间定义时间固定时间段时间周期 1.开始事件2.中间事件3.边界事件代码实现xml文件自定义服务任务监听器自定义用户任务监听器测试流程流程执行步骤 定时器事件 可以用在开始事件、中间事件、边界事件上&#xff0c;边界事件可以是中断和非中断边界事件 需要…

基于springboot实现小学家校一体“作业帮”系统项目【项目源码】计算机毕业设计

基于springboot实现小学家校一体“作业帮”系统演示 Java语言简介 Java是由SUN公司推出&#xff0c;该公司于2010年被oracle公司收购。Java本是印度尼西亚的一个叫做爪洼岛的英文名称&#xff0c;也因此得来java是一杯正冒着热气咖啡的标识。Java语言在移动互联网的大背景下具…

Scala---数据基础

一、数据类型 二、变量和常量的声明 定义变量或者常量的时候&#xff0c;也可以写上返回的类型&#xff0c;一般省略&#xff0c;如&#xff1a;val a:Int 10常量不可再赋值 1./** 2. * 定义变量和常量 3. * 变量 :用 var 定义 &#xff0c;可修改 4. * 常量 :用 val 定…

黑马程序员微服务Docker实用篇

Docker实用篇 0.学习目标 1.初识Docker 1.1.什么是Docker 微服务虽然具备各种各样的优势&#xff0c;但服务的拆分通用给部署带来了很大的麻烦。 分布式系统中&#xff0c;依赖的组件非常多&#xff0c;不同组件之间部署时往往会产生一些冲突。在数百上千台服务中重复部署…

[极客大挑战 2019]BuyFlag 1(两种解法)

题目环境&#xff1a; FLAG NEED YOUR 100000000 MONEY flag需要你的100000000元 F12瞅瞅源代码&#xff1a; if (isset($_POST[password])){ $password $_POST[password]; if (is_numeric($password)) { echo "password cant be number" } elseif ($pas…

VNC连接服务器实现远程桌面 --以AutoDL云服务器为例

VNC连接服务器实现远程桌面 --以AutoDL云服务器为例 针对本地机为Windows 云服务器租显卡跑些小模型很方便&#xff0c;但是当你想做可视化的时候&#xff0c;可能会遇到麻烦&#xff0c;云服务器没有显示输出界面&#xff0c;无法可视化一些检测任务的结果&#xff0c;或者可…

什么叫做云安全?云安全有哪些要求?

云安全(Cloud Security)是一种基于云计算的安全防护策略&#xff0c;旨在保护企业数据和应用程序的安全性和完整性。云安全利用云计算的分布式处理和存储能力&#xff0c;以更高效、更灵活的方式提供安全服务。 云安全的要求主要包括以下几个方面&#xff1a; 数据安全和隐私保…

Python | 机器学习之数据清洗

​ &#x1f308;个人主页&#xff1a;Sarapines Programmer&#x1f525; 系列专栏&#xff1a;《人工智能奇遇记》&#x1f516;少年有梦不应止于心动&#xff0c;更要付诸行动。 目录结构 1. 机器学习之数据清洗概念 1.1 机器学习 1.2 数据清洗 2. 数据清洗 2.1 实验目的…

Apache Airflow (六) :DAG catchup 参数设置

&#x1f3e1; 个人主页&#xff1a;IT贫道_大数据OLAP体系技术栈,Apache Doris,Clickhouse 技术-CSDN博客 &#x1f6a9; 私聊博主&#xff1a;加入大数据技术讨论群聊&#xff0c;获取更多大数据资料。 &#x1f514; 博主个人B栈地址&#xff1a;豹哥教你大数据的个人空间-豹…

从0到0.01入门React | 010.精选 React 面试题

🤍 前端开发工程师(主业)、技术博主(副业)、已过CET6 🍨 阿珊和她的猫_CSDN个人主页 🕠 牛客高级专题作者、在牛客打造高质量专栏《前端面试必备》 🍚 蓝桥云课签约作者、已在蓝桥云课上架的前后端实战课程《Vue.js 和 Egg.js 开发企业级健康管理项目》、《带你从入…

【C/PTA——8.数组2(课外实践)】

C/PTA——8.数组2&#xff08;课外实践&#xff09; 7-4 矩阵运算7-2 方阵循环右移7-3 螺旋方阵7-4 数组-杨辉三角7-5 数组-对角线求和7-6 数组-矩阵最小值 7-4 矩阵运算 #include<stdio.h> int main() {int n, i, j;int a[10][10] { 0 };scanf("%d", &n)…

电脑技巧:推荐基于浏览器的远程桌面访问控制工具

一、软件简介 Getscreen.me是一个基于浏览器的远程桌面访问控制工具&#xff0c;可以轻松地远程访问控制特定设备。并且注册登录账户实现允许设置具有永久访问权限的设备&#xff0c;可以通过一键进行快速连接访问&#xff0c;无需共享 ID、密码或任何内容。 Getscreen.me采用…

Linux可以投屏到电视吗?用网页浏览器就能投屏到电视!

Linux系统的电脑如果要投屏到安卓电视屏幕上&#xff0c;可以使用投屏工具AirDroid Cast的网页版和TV版一起实现。 首先&#xff0c;在Linux系统的电脑里用chrome浏览器或edge浏览器打开webcast.airdroid.com。这就是AirDroid Cast的网页版。你可以看到中间白色框框的右上角有个…

ARPG----C++学习记录04 Section8 角色类,移动

角色类输入 新建一个角色C&#xff0c;继承建立蓝图,和Pawn一样&#xff0c;绑定输入移动和相机. 在构造函数中添加这段代码也能实现。打开UsePawnControlRotation就可以让人物不跟随鼠标旋转 得到旋转后的向前向量 使用旋转矩阵 想要前进方向和旋转的方向对应。获取当前控制…

2.3 Windows驱动开发:内核字符串转换方法

在内核编程中字符串有两种格式ANSI_STRING与UNICODE_STRING&#xff0c;这两种格式是微软推出的安全版本的字符串结构体&#xff0c;也是微软推荐使用的格式&#xff0c;通常情况下ANSI_STRING代表的类型是char *也就是ANSI多字节模式的字符串&#xff0c;而UNICODE_STRING则代…

图论14-最短路径-Dijkstra算法+Bellman-Ford算法+Floyed算法

文章目录 0 代码仓库1 Dijkstra算法2 Dijkstra算法的实现2.1 设置距离数组2.2 找到当前路径的最小值 curdis&#xff0c;及对应的该顶点cur2.3 更新权重2.4 其他接口2.4.1 判断某个顶点的连通性2.4.2 求源点s到某个顶点的最短路径 3使用优先队列优化-Dijkstra算法3.1 设计内部类…