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
6a1f47a5
Commit
6a1f47a5
authored
Feb 24, 2016
by
yjbanov
Committed by
Yegor Jbanov
Mar 01, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
factor out enum indexing into reusable EnumIndex
parent
61b2657b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
15 deletions
+47
-15
enum_util.dart
packages/flutter_driver/lib/src/enum_util.dart
+41
-0
health.dart
packages/flutter_driver/lib/src/health.dart
+6
-15
No files found.
packages/flutter_driver/lib/src/enum_util.dart
0 → 100644
View file @
6a1f47a5
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// Indexes a list of `enum` values by simple name.
///
/// In Dart enum names are prefixed with enum class name. For example, for
/// `enum Vote { yea, nay }`, `Vote.yea.toString()` produces `"Vote.yea"`
/// rather than just `"yea"` - the simple name.
///
/// Example:
///
/// enum Vote { yea, nay }
/// final index = new EnumIndex(Vote.values);
/// index.lookupBySimpleName('yea'); // returns Vote.yea
/// index.toSimpleName(Vote.nay); // returns 'nay'
class
EnumIndex
<
E
>
{
/// Creates an index of [enumValues].
EnumIndex
(
List
<
E
>
enumValues
)
:
_nameToValue
=
new
Map
<
String
,
E
>.
fromIterable
(
enumValues
,
key:
_getSimpleName
),
_valueToName
=
new
Map
<
E
,
String
>.
fromIterable
(
enumValues
,
value:
_getSimpleName
);
final
Map
<
String
,
E
>
_nameToValue
;
final
Map
<
E
,
String
>
_valueToName
;
/// Given a [simpleName] finds the corresponding enum value.
E
lookupBySimpleName
(
String
simpleName
)
=>
_nameToValue
[
simpleName
];
/// Returns the simple name for [enumValue].
String
toSimpleName
(
E
enumValue
)
=>
_valueToName
[
enumValue
];
}
String
_getSimpleName
(
dynamic
enumValue
)
{
return
enumValue
.
toString
().
split
(
'.'
).
last
;
}
packages/flutter_driver/lib/src/health.dart
View file @
6a1f47a5
...
...
@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'enum_util.dart'
;
import
'message.dart'
;
/// Requests an application health check.
...
...
@@ -22,6 +23,9 @@ enum HealthStatus {
bad
,
}
final
EnumIndex
<
HealthStatus
>
_healthStatusIndex
=
new
EnumIndex
<
HealthStatus
>(
HealthStatus
.
values
);
/// Application health status.
class
Health
extends
Result
{
Health
(
this
.
status
)
{
...
...
@@ -29,26 +33,13 @@ class Health extends Result {
}
static
Health
fromJson
(
Map
<
String
,
dynamic
>
json
)
{
return
new
Health
(
_
statusFromId
(
json
[
'status'
]));
return
new
Health
(
_
healthStatusIndex
.
lookupBySimpleName
(
json
[
'status'
]));
}
/// Health status
final
HealthStatus
status
;
Map
<
String
,
dynamic
>
toJson
()
=>
{
'status'
:
_
getStatusId
(
status
)
'status'
:
_
healthStatusIndex
.
toSimpleName
(
status
)
};
}
String
_getStatusId
(
HealthStatus
status
)
=>
status
.
toString
().
split
(
'.'
).
last
;
final
Map
<
String
,
HealthStatus
>
_idToStatus
=
new
Map
<
String
,
HealthStatus
>.
fromIterable
(
HealthStatus
.
values
,
key:
_getStatusId
);
HealthStatus
_statusFromId
(
String
id
)
{
return
_idToStatus
.
containsKey
(
id
)
?
_idToStatus
[
id
]
:
throw
new
ArgumentError
.
value
(
id
,
'id'
,
'unknown'
);
}
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