3
3
import actionlib_msgs .GoalID ;
4
4
import actionlib_msgs .GoalStatus ;
5
5
import actionlib_msgs .GoalStatusArray ;
6
- import com .github .rosjava_actionlib .ClientStateMachine .ClientStates ;
7
6
import org .apache .commons .logging .Log ;
8
7
import org .apache .commons .logging .LogFactory ;
9
8
import org .ros .internal .message .Message ;
@@ -18,7 +17,7 @@ public class ActionClientFuture<T_GOAL extends Message, T_FEEDBACK extends Messa
18
17
19
18
final GoalID goalid ;
20
19
final ActionClient <T_GOAL , T_FEEDBACK , T_RESULT > ac ;
21
- boolean isDone = false ;
20
+ ClientGoalManager goalManager = new ClientGoalManager ( new ActionGoal < T_GOAL >()) ;
22
21
T_FEEDBACK latestFeedback = null ;
23
22
T_RESULT result = null ;
24
23
@@ -32,8 +31,9 @@ public class ActionClientFuture<T_GOAL extends Message, T_FEEDBACK extends Messa
32
31
GoalID goalId = ac .getGoalId (goal );
33
32
ActionClientFuture <T_GOAL , T_FEEDBACK , T_RESULT > ret = new ActionClientFuture <>(ac , goalId );
34
33
if (ac .isActive ()) {
35
- log .warn ("current goal STATE:" + ac .getGoalState () + "=" + ClientStates . translateState ( ac .getGoalState ()));
34
+ log .warn ("current goal STATE:" + ac .getGoalState () + "=" + ac .getGoalState (). getValue ( ));
36
35
}
36
+ ret .goalManager .setGoal (goal );
37
37
ac .sendGoalWire (goal );
38
38
ac .attachListener (ret );
39
39
return ret ;
@@ -50,16 +50,21 @@ public T_FEEDBACK getLatestFeedback() {
50
50
return latestFeedback ;
51
51
}
52
52
53
+ @ Override
54
+ public ClientState getCurrentState () {
55
+ return goalManager .stateMachine .getState ();
56
+ }
57
+
53
58
@ Override
54
59
public boolean cancel (boolean bln ) {
55
60
ac .sendCancel (goalid );
56
- isDone = true ;
61
+ goalManager . cancelGoal () ;
57
62
return true ;
58
63
}
59
64
60
65
@ Override
61
66
public boolean isCancelled () {
62
- if (isDone ) {
67
+ if (goalManager . stateMachine . isRunning () ) {
63
68
return result == null ;
64
69
} else {
65
70
return false ;
@@ -68,12 +73,12 @@ public boolean isCancelled() {
68
73
69
74
@ Override
70
75
public boolean isDone () {
71
- return isDone ;
76
+ return ! goalManager . stateMachine . isRunning () ;
72
77
}
73
78
74
79
@ Override
75
80
public T_RESULT get () throws InterruptedException , ExecutionException {
76
- while (! isDone ) {
81
+ while (goalManager . stateMachine . isRunning () ) {
77
82
Thread .sleep (100 );
78
83
}
79
84
disconnect ();
@@ -83,7 +88,7 @@ public T_RESULT get() throws InterruptedException, ExecutionException {
83
88
@ Override
84
89
public T_RESULT get (long l , TimeUnit tu ) throws InterruptedException , ExecutionException , TimeoutException {
85
90
long timeout = System .currentTimeMillis () + tu .toMillis (l );
86
- while (! isDone ) {
91
+ while (goalManager . stateMachine . isRunning () ) {
87
92
if (timeout > System .currentTimeMillis ()) {
88
93
throw new TimeoutException ();
89
94
}
@@ -102,8 +107,10 @@ public void resultReceived(T_RESULT msg) {
102
107
return ;
103
108
}
104
109
110
+ goalManager .updateStatus (r .getGoalStatusMessage ().getStatus ());
111
+ goalManager .resultReceived ();
112
+
105
113
result = msg ;
106
- isDone = true ;
107
114
disconnect ();
108
115
}
109
116
@@ -114,6 +121,7 @@ public void feedbackReceived(T_FEEDBACK msg) {
114
121
return ;
115
122
}
116
123
124
+ goalManager .updateStatus (f .getGoalStatusMessage ().getStatus ());
117
125
latestFeedback = msg ;
118
126
}
119
127
@@ -123,7 +131,9 @@ public void statusReceived(GoalStatusArray status) {
123
131
if (!goalid .getId ().equals (a .getGoalId ().getId ())) {
124
132
continue ;
125
133
}
126
- //CODE HERE
134
+
135
+ goalManager .updateStatus (a .getStatus ());
136
+
127
137
}
128
138
}
129
139
0 commit comments