Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_frameworks_base-old
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Farzin Kazemzadeh
platform_frameworks_base-old
Commits
af5f00ee
Commit
af5f00ee
authored
7 years ago
by
Treehugger Robot
Committed by
Gerrit Code Review
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Flatten the transitions to tethering and hotspot."
parents
a9cbda5b
f79a34d8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
services/core/java/com/android/server/connectivity/tethering/TetherInterfaceStateMachine.java
+34
-12
34 additions, 12 deletions
...r/connectivity/tethering/TetherInterfaceStateMachine.java
with
34 additions
and
12 deletions
services/core/java/com/android/server/connectivity/tethering/TetherInterfaceStateMachine.java
+
34
−
12
View file @
af5f00ee
...
...
@@ -78,7 +78,6 @@ public class TetherInterfaceStateMachine extends StateMachine {
public
static
final
int
CMD_IPV6_TETHER_UPDATE
=
BASE_IFACE
+
13
;
private
final
State
mInitialState
;
private
final
State
mServingState
;
private
final
State
mLocalHotspotState
;
private
final
State
mTetheredState
;
private
final
State
mUnavailableState
;
...
...
@@ -107,14 +106,12 @@ public class TetherInterfaceStateMachine extends StateMachine {
mLastError
=
ConnectivityManager
.
TETHER_ERROR_NO_ERROR
;
mInitialState
=
new
InitialState
();
mServingState
=
new
ServingState
();
mLocalHotspotState
=
new
LocalHotspotState
();
mTetheredState
=
new
TetheredState
();
mUnavailableState
=
new
UnavailableState
();
addState
(
mInitialState
);
addState
(
mServingState
);
addState
(
mLocalHotspotState
,
mServingState
);
addState
(
mTetheredState
,
mServingState
);
addState
(
mLocalHotspotState
);
addState
(
mTetheredState
);
addState
(
mUnavailableState
);
setInitialState
(
mInitialState
);
...
...
@@ -222,12 +219,11 @@ public class TetherInterfaceStateMachine extends StateMachine {
}
}
class
ServingState
extends
State
{
class
Base
ServingState
extends
State
{
@Override
public
void
enter
()
{
if
(!
configureIfaceIp
(
true
))
{
mLastError
=
ConnectivityManager
.
TETHER_ERROR_IFACE_CFG_ERROR
;
transitionTo
(
mInitialState
);
return
;
}
...
...
@@ -236,12 +232,13 @@ public class TetherInterfaceStateMachine extends StateMachine {
}
catch
(
Exception
e
)
{
Log
.
e
(
TAG
,
"Error Tethering: "
+
e
.
toString
());
mLastError
=
ConnectivityManager
.
TETHER_ERROR_TETHER_IFACE_ERROR
;
transitionTo
(
mInitialState
);
return
;
}
if
(!
mIPv6TetherSvc
.
start
())
{
Log
.
e
(
TAG
,
"Failed to start IPv6TetheringInterfaceServices"
);
// TODO: Make this a fatal error once Bluetooth IPv6 is sorted.
return
;
}
}
...
...
@@ -254,9 +251,9 @@ public class TetherInterfaceStateMachine extends StateMachine {
try
{
mNMService
.
untetherInterface
(
mIfaceName
);
}
catch
(
Exception
e
e
)
{
}
catch
(
Exception
e
)
{
mLastError
=
ConnectivityManager
.
TETHER_ERROR_UNTETHER_IFACE_ERROR
;
Log
.
e
(
TAG
,
"Failed to untether interface: "
+
e
e
.
toString
());
Log
.
e
(
TAG
,
"Failed to untether interface: "
+
e
.
toString
());
}
configureIfaceIp
(
false
);
...
...
@@ -293,15 +290,27 @@ public class TetherInterfaceStateMachine extends StateMachine {
}
}
class
LocalHotspotState
extends
State
{
// Handling errors in BaseServingState.enter() by transitioning is
// problematic because transitioning during a multi-state jump yields
// a Log.wtf(). Ultimately, there should be only one ServingState,
// and forwarding and NAT rules should be handled by a coordinating
// functional element outside of TetherInterfaceStateMachine.
class
LocalHotspotState
extends
BaseServingState
{
@Override
public
void
enter
()
{
super
.
enter
();
if
(
mLastError
!=
ConnectivityManager
.
TETHER_ERROR_NO_ERROR
)
{
transitionTo
(
mInitialState
);
}
if
(
DBG
)
Log
.
d
(
TAG
,
"Local hotspot "
+
mIfaceName
);
sendInterfaceState
(
IControlsTethering
.
STATE_LOCAL_HOTSPOT
);
}
@Override
public
boolean
processMessage
(
Message
message
)
{
if
(
super
.
processMessage
(
message
))
return
true
;
maybeLogMessage
(
this
,
message
.
what
);
switch
(
message
.
what
)
{
case
CMD_TETHER_REQUESTED:
...
...
@@ -317,9 +326,19 @@ public class TetherInterfaceStateMachine extends StateMachine {
}
}
class
TetheredState
extends
State
{
// Handling errors in BaseServingState.enter() by transitioning is
// problematic because transitioning during a multi-state jump yields
// a Log.wtf(). Ultimately, there should be only one ServingState,
// and forwarding and NAT rules should be handled by a coordinating
// functional element outside of TetherInterfaceStateMachine.
class
TetheredState
extends
BaseServingState
{
@Override
public
void
enter
()
{
super
.
enter
();
if
(
mLastError
!=
ConnectivityManager
.
TETHER_ERROR_NO_ERROR
)
{
transitionTo
(
mInitialState
);
}
if
(
DBG
)
Log
.
d
(
TAG
,
"Tethered "
+
mIfaceName
);
sendInterfaceState
(
IControlsTethering
.
STATE_TETHERED
);
}
...
...
@@ -327,6 +346,7 @@ public class TetherInterfaceStateMachine extends StateMachine {
@Override
public
void
exit
()
{
cleanupUpstream
();
super
.
exit
();
}
private
void
cleanupUpstream
()
{
...
...
@@ -361,6 +381,8 @@ public class TetherInterfaceStateMachine extends StateMachine {
@Override
public
boolean
processMessage
(
Message
message
)
{
if
(
super
.
processMessage
(
message
))
return
true
;
maybeLogMessage
(
this
,
message
.
what
);
boolean
retValue
=
true
;
switch
(
message
.
what
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment