Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
fe309e34
Unverified
Commit
fe309e34
authored
Sep 08, 2022
by
Kenzie Davisson
Committed by
GitHub
Sep 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create service extension consts for rendering lib (#111149)
parent
10d7e314
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
219 additions
and
64 deletions
+219
-64
rendering.dart
packages/flutter/lib/rendering.dart
+1
-0
binding.dart
packages/flutter/lib/src/rendering/binding.dart
+14
-13
debug.dart
packages/flutter/lib/src/rendering/debug.dart
+2
-2
service_extensions.dart
packages/flutter/lib/src/rendering/service_extensions.dart
+153
-0
service_extensions_test.dart
...ages/flutter/test/foundation/service_extensions_test.dart
+49
-49
No files found.
packages/flutter/lib/rendering.dart
View file @
fe309e34
...
...
@@ -55,6 +55,7 @@ export 'src/rendering/proxy_box.dart';
export
'src/rendering/proxy_sliver.dart'
;
export
'src/rendering/rotated_box.dart'
;
export
'src/rendering/selection.dart'
;
export
'src/rendering/service_extensions.dart'
;
export
'src/rendering/shifted_box.dart'
;
export
'src/rendering/sliver.dart'
;
export
'src/rendering/sliver_fill.dart'
;
...
...
packages/flutter/lib/src/rendering/binding.dart
View file @
fe309e34
...
...
@@ -14,6 +14,7 @@ import 'box.dart';
import
'debug.dart'
;
import
'mouse_tracker.dart'
;
import
'object.dart'
;
import
'service_extensions.dart'
;
import
'view.dart'
;
export
'package:flutter/gestures.dart'
show
HitTestResult
;
...
...
@@ -63,7 +64,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
assert
(()
{
// these service extensions only work in debug mode
registerBoolServiceExtension
(
name:
'invertOversizedImages'
,
name:
RenderingServiceExtensions
.
invertOversizedImages
.
name
,
getter:
()
async
=>
debugInvertOversizedImages
,
setter:
(
bool
value
)
async
{
if
(
debugInvertOversizedImages
!=
value
)
{
...
...
@@ -74,7 +75,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
},
);
registerBoolServiceExtension
(
name:
'debugPaint'
,
name:
RenderingServiceExtensions
.
debugPaint
.
name
,
getter:
()
async
=>
debugPaintSizeEnabled
,
setter:
(
bool
value
)
{
if
(
debugPaintSizeEnabled
==
value
)
{
...
...
@@ -85,7 +86,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
},
);
registerBoolServiceExtension
(
name:
'debugPaintBaselinesEnabled'
,
name:
RenderingServiceExtensions
.
debugPaintBaselinesEnabled
.
name
,
getter:
()
async
=>
debugPaintBaselinesEnabled
,
setter:
(
bool
value
)
{
if
(
debugPaintBaselinesEnabled
==
value
)
{
...
...
@@ -96,7 +97,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
},
);
registerBoolServiceExtension
(
name:
'repaintRainbow'
,
name:
RenderingServiceExtensions
.
repaintRainbow
.
name
,
getter:
()
async
=>
debugRepaintRainbowEnabled
,
setter:
(
bool
value
)
{
final
bool
repaint
=
debugRepaintRainbowEnabled
&&
!
value
;
...
...
@@ -108,7 +109,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
},
);
registerServiceExtension
(
name:
'debugDumpLayerTree'
,
name:
RenderingServiceExtensions
.
debugDumpLayerTree
.
name
,
callback:
(
Map
<
String
,
String
>
parameters
)
async
{
final
String
data
=
RendererBinding
.
instance
.
renderView
.
debugLayer
?.
toStringDeep
()
??
'Layer tree unavailable.'
;
return
<
String
,
Object
>{
...
...
@@ -117,7 +118,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
},
);
registerBoolServiceExtension
(
name:
'debugDisableClipLayers'
,
name:
RenderingServiceExtensions
.
debugDisableClipLayers
.
name
,
getter:
()
async
=>
debugDisableClipLayers
,
setter:
(
bool
value
)
{
if
(
debugDisableClipLayers
==
value
)
{
...
...
@@ -128,7 +129,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
},
);
registerBoolServiceExtension
(
name:
'debugDisablePhysicalShapeLayers'
,
name:
RenderingServiceExtensions
.
debugDisablePhysicalShapeLayers
.
name
,
getter:
()
async
=>
debugDisablePhysicalShapeLayers
,
setter:
(
bool
value
)
{
if
(
debugDisablePhysicalShapeLayers
==
value
)
{
...
...
@@ -139,7 +140,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
},
);
registerBoolServiceExtension
(
name:
'debugDisableOpacityLayers'
,
name:
RenderingServiceExtensions
.
debugDisableOpacityLayers
.
name
,
getter:
()
async
=>
debugDisableOpacityLayers
,
setter:
(
bool
value
)
{
if
(
debugDisableOpacityLayers
==
value
)
{
...
...
@@ -155,7 +156,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
if
(!
kReleaseMode
)
{
// these service extensions work in debug or profile mode
registerServiceExtension
(
name:
'debugDumpRenderTree'
,
name:
RenderingServiceExtensions
.
debugDumpRenderTree
.
name
,
callback:
(
Map
<
String
,
String
>
parameters
)
async
{
final
String
data
=
RendererBinding
.
instance
.
renderView
.
toStringDeep
();
return
<
String
,
Object
>{
...
...
@@ -164,7 +165,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
},
);
registerServiceExtension
(
name:
'debugDumpSemanticsTreeInTraversalOrder'
,
name:
RenderingServiceExtensions
.
debugDumpSemanticsTreeInTraversalOrder
.
name
,
callback:
(
Map
<
String
,
String
>
parameters
)
async
{
return
<
String
,
Object
>{
'data'
:
_generateSemanticsTree
(
DebugSemanticsDumpOrder
.
traversalOrder
),
...
...
@@ -172,7 +173,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
},
);
registerServiceExtension
(
name:
'debugDumpSemanticsTreeInInverseHitTestOrder'
,
name:
RenderingServiceExtensions
.
debugDumpSemanticsTreeInInverseHitTestOrder
.
name
,
callback:
(
Map
<
String
,
String
>
parameters
)
async
{
return
<
String
,
Object
>{
'data'
:
_generateSemanticsTree
(
DebugSemanticsDumpOrder
.
inverseHitTest
),
...
...
@@ -180,7 +181,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
},
);
registerBoolServiceExtension
(
name:
'profileRenderObjectPaints'
,
name:
RenderingServiceExtensions
.
profileRenderObjectPaints
.
name
,
getter:
()
async
=>
debugProfilePaintsEnabled
,
setter:
(
bool
value
)
async
{
if
(
debugProfilePaintsEnabled
!=
value
)
{
...
...
@@ -189,7 +190,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Gesture
},
);
registerBoolServiceExtension
(
name:
'profileRenderObjectLayouts'
,
name:
RenderingServiceExtensions
.
profileRenderObjectLayouts
.
name
,
getter:
()
async
=>
debugProfileLayoutsEnabled
,
setter:
(
bool
value
)
async
{
if
(
debugProfileLayoutsEnabled
!=
value
)
{
...
...
packages/flutter/lib/src/rendering/debug.dart
View file @
fe309e34
...
...
@@ -94,7 +94,7 @@ bool debugPrintLayouts = false;
/// this on in your unit tests for additional validations.
bool
debugCheckIntrinsicSizes
=
false
;
/// Adds [
dart:developer.
Timeline] events for every [RenderObject] layout.
/// Adds [Timeline] events for every [RenderObject] layout.
///
/// The timing information this flag exposes is not representative of the actual
/// cost of layout, because the overhead of adding timeline events is
...
...
@@ -120,7 +120,7 @@ bool debugCheckIntrinsicSizes = false;
/// debugging information related to [RenderObject] layouts.
bool
debugProfileLayoutsEnabled
=
false
;
/// Adds [
dart:developer.
Timeline] events for every [RenderObject] painted.
/// Adds [Timeline] events for every [RenderObject] painted.
///
/// The timing information this flag exposes is not representative of actual
/// paints, because the overhead of adding timeline events is significant
...
...
packages/flutter/lib/src/rendering/service_extensions.dart
0 → 100644
View file @
fe309e34
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// Service extension constants for the rendering library.
///
/// These constants will be used when registering service extensions in the
/// framework, and they will also be used by tools and services that call these
/// service extensions.
///
/// The String value for each of these extension names should be accessed by
/// calling the `.name` property on the enum value.
enum
RenderingServiceExtensions
{
/// Name of service extension that, when called, will toggle whether the
/// framework will color invert and horizontally flip images that have been
/// decoded to a size taking at least [debugImageOverheadAllowance] bytes more
/// than necessary.
///
/// See also:
///
/// * [debugInvertOversizedImages], which is the flag that this service
/// extension exposes.
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
invertOversizedImages
,
/// Name of service extension that, when called, will toggle whether each
/// [RenderBox] will paint a box around its bounds as well as additional boxes
/// showing construction lines.
///
/// See also:
///
/// * [debugPaintSizeEnabled], which is the flag that this service extension
/// exposes.
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
debugPaint
,
/// Name of service extension that, when called, will toggle whether each
/// [RenderBox] will paint a line at each of its baselines.
///
/// See also:
///
/// * [debugPaintBaselinesEnabled], which is the flag that this service
/// extension exposes.
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
debugPaintBaselinesEnabled
,
/// Name of service extension that, when called, will toggle whether a rotating
/// set of colors will be overlaid on the device when repainting layers in debug
/// mode.
///
/// See also:
///
/// * [debugRepaintRainbowEnabled], which is the flag that this service
/// extension exposes.
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
repaintRainbow
,
/// Name of service extension that, when called, will dump a [String]
/// representation of the layer tree to console.
///
/// See also:
///
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
debugDumpLayerTree
,
/// Name of service extension that, when called, will toggle whether all
/// clipping effects from the layer tree will be ignored.
///
/// See also:
///
/// * [debugDisableClipLayers], which is the flag that this service extension
/// exposes.
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
debugDisableClipLayers
,
/// Name of service extension that, when called, will toggle whether all
/// physical modeling effects from the layer tree will be ignored.
///
/// See also:
///
/// * [debugDisablePhysicalShapeLayers], which is the flag that this service
/// extension exposes.
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
debugDisablePhysicalShapeLayers
,
/// Name of service extension that, when called, will toggle whether all opacity
/// effects from the layer tree will be ignored.
///
/// See also:
///
/// * [debugDisableOpacityLayers], which is the flag that this service extension
/// exposes.
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
debugDisableOpacityLayers
,
/// Name of service extension that, when called, will dump a [String]
/// representation of the render tree to console.
///
/// See also:
///
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
debugDumpRenderTree
,
/// Name of service extension that, when called, will dump a [String]
/// representation of the semantics tree (in traversal order) to console.
///
/// See also:
///
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
debugDumpSemanticsTreeInTraversalOrder
,
/// Name of service extension that, when called, will dump a [String]
/// representation of the semantics tree (in inverse hit test order) to console.
///
/// See also:
///
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
debugDumpSemanticsTreeInInverseHitTestOrder
,
/// Name of service extension that, when called, will toggle whether [Timeline]
/// events are added for every [RenderObject] painted.
///
/// See also:
///
/// * [debugProfilePaintsEnabled], which is the flag that this service extension
/// exposes.
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
profileRenderObjectPaints
,
/// Name of service extension that, when called, will toggle whether [Timeline]
/// events are added for every [RenderObject] laid out.
///
/// See also:
///
/// * [debugProfileLayoutsEnabled], which is the flag that this service
/// extension exposes.
/// * [RendererBinding.initServiceExtensions], where the service extension is
/// registered.
profileRenderObjectLayouts
,
}
packages/flutter/test/foundation/service_extensions_test.dart
View file @
fe309e34
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment