Skip to content

Commit b6b1e90

Browse files
committed
refactored clientStates, add ClientStatemachine to futures
1 parent 3d58130 commit b6b1e90

17 files changed

+312
-251
lines changed

README.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
# Actionlib for Rosjava
22
A pure java implementation of [actionlib](http://wiki.ros.org/actionlib) for [rosjava](http://wiki.ros.org/rosjava).
3-
Features implemented:
43

5-
Latest release: [v0.2.0](https://github.com/ernestmc/rosjava_actionlib/releases/tag/v0.2.0)
6-
7-
New in this release:
8-
* Added goal state tracking to the client.
9-
* Added a waitForActionServerToStart method to the client.
4+
based on: github.com/ernestmc/rosjava_actionlib
105

116
## Requirements:
127
* ROS Indigo http://wiki.ros.org/
138
* Rosjava ```$ sudo apt-get install ros-indigo-rosjava``` http://wiki.ros.org/rosjava/Tutorials/indigo/Installation
14-
* Java 1.7 or greater (OpenJDK should work)
9+
* Java 1.8 or greater (OpenJDK should work)
1510
* Also make sure you have the following packages: ```ros-indigo-actionlib``` ```ros-indigo-actionlib-tutorials``` ```ros-indigo-genjava```
1611

1712
You can find a video tutorial showing how to install and test the library following the instructions below:

build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ plugins {
2525

2626
apply plugin: 'catkin'
2727
apply plugin: 'ros-java'
28+
sourceCompatibility = 1.8
29+
targetCompatibility = 1.8
2830

2931
task wrapper(type: Wrapper) {
3032
gradleVersion = '4.6'

src/main/java/com/github/rosjava_actionlib/ActionClient.java

+10-5
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ public void detachListener(ActionClientListener target) {
103103
* Publish an action goal to the server. The type of the action goal message
104104
* is dependent on the application.
105105
*
106-
* @param goal The action goal message.
107-
* @param id A string containing the ID for the goal. The ID should represent
106+
* @param agMessage The action goal message.
107+
* @param id A string containing the ID for the goal. The ID should represent
108108
*/
109109
public ActionFuture<T_ACTION_GOAL, T_ACTION_FEEDBACK, T_ACTION_RESULT> sendGoal(T_ACTION_GOAL agMessage, String id) {
110110
GoalID gid = getGoalId(agMessage);
@@ -126,7 +126,7 @@ protected void sendGoalWire(T_ACTION_GOAL agMessage) {
126126
* Publish an action goal to the server. The type of the action goal message
127127
* is dependent on the application. A goal ID will be automatically generated.
128128
*
129-
* @param goal The action goal message.
129+
* @param agMessage The action goal message.
130130
*/
131131
public ActionFuture<T_ACTION_GOAL, T_ACTION_FEEDBACK, T_ACTION_RESULT> sendGoal(T_ACTION_GOAL agMessage) {
132132
return sendGoal(agMessage, "");
@@ -402,12 +402,17 @@ public void onNewPublisher(Subscriber subscriber, PublisherIdentifier publisherI
402402
* Get the current state of the action goal as being tracked by the client.
403403
*
404404
* @return The state of the goal.
405-
* @see ClientStateMachine.ClientStates
405+
* @see ClientState
406406
*/
407-
public int getGoalState() {
407+
public int getGoalStateInteger() {
408+
return goalManager.getGoalState().getValue();
409+
}
410+
411+
public ClientState getGoalState() {
408412
return goalManager.getGoalState();
409413
}
410414

415+
411416
public boolean isActive() {
412417
return goalManager.stateMachine.isRunning();
413418
}

src/main/java/com/github/rosjava_actionlib/ActionClientFuture.java

+20-10
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import actionlib_msgs.GoalID;
44
import actionlib_msgs.GoalStatus;
55
import actionlib_msgs.GoalStatusArray;
6-
import com.github.rosjava_actionlib.ClientStateMachine.ClientStates;
76
import org.apache.commons.logging.Log;
87
import org.apache.commons.logging.LogFactory;
98
import org.ros.internal.message.Message;
@@ -18,7 +17,7 @@ public class ActionClientFuture<T_GOAL extends Message, T_FEEDBACK extends Messa
1817

1918
final GoalID goalid;
2019
final ActionClient<T_GOAL, T_FEEDBACK, T_RESULT> ac;
21-
boolean isDone = false;
20+
ClientGoalManager goalManager = new ClientGoalManager(new ActionGoal<T_GOAL>());
2221
T_FEEDBACK latestFeedback = null;
2322
T_RESULT result = null;
2423

@@ -32,8 +31,9 @@ public class ActionClientFuture<T_GOAL extends Message, T_FEEDBACK extends Messa
3231
GoalID goalId = ac.getGoalId(goal);
3332
ActionClientFuture<T_GOAL, T_FEEDBACK, T_RESULT> ret = new ActionClientFuture<>(ac, goalId);
3433
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());
3635
}
36+
ret.goalManager.setGoal(goal);
3737
ac.sendGoalWire(goal);
3838
ac.attachListener(ret);
3939
return ret;
@@ -50,16 +50,21 @@ public T_FEEDBACK getLatestFeedback() {
5050
return latestFeedback;
5151
}
5252

53+
@Override
54+
public ClientState getCurrentState() {
55+
return goalManager.stateMachine.getState();
56+
}
57+
5358
@Override
5459
public boolean cancel(boolean bln) {
5560
ac.sendCancel(goalid);
56-
isDone = true;
61+
goalManager.cancelGoal();
5762
return true;
5863
}
5964

6065
@Override
6166
public boolean isCancelled() {
62-
if (isDone) {
67+
if (goalManager.stateMachine.isRunning()) {
6368
return result == null;
6469
} else {
6570
return false;
@@ -68,12 +73,12 @@ public boolean isCancelled() {
6873

6974
@Override
7075
public boolean isDone() {
71-
return isDone;
76+
return !goalManager.stateMachine.isRunning();
7277
}
7378

7479
@Override
7580
public T_RESULT get() throws InterruptedException, ExecutionException {
76-
while (!isDone) {
81+
while (goalManager.stateMachine.isRunning()) {
7782
Thread.sleep(100);
7883
}
7984
disconnect();
@@ -83,7 +88,7 @@ public T_RESULT get() throws InterruptedException, ExecutionException {
8388
@Override
8489
public T_RESULT get(long l, TimeUnit tu) throws InterruptedException, ExecutionException, TimeoutException {
8590
long timeout = System.currentTimeMillis() + tu.toMillis(l);
86-
while (!isDone) {
91+
while (goalManager.stateMachine.isRunning()) {
8792
if (timeout > System.currentTimeMillis()) {
8893
throw new TimeoutException();
8994
}
@@ -102,8 +107,10 @@ public void resultReceived(T_RESULT msg) {
102107
return;
103108
}
104109

110+
goalManager.updateStatus(r.getGoalStatusMessage().getStatus());
111+
goalManager.resultReceived();
112+
105113
result = msg;
106-
isDone = true;
107114
disconnect();
108115
}
109116

@@ -114,6 +121,7 @@ public void feedbackReceived(T_FEEDBACK msg) {
114121
return;
115122
}
116123

124+
goalManager.updateStatus(f.getGoalStatusMessage().getStatus());
117125
latestFeedback = msg;
118126
}
119127

@@ -123,7 +131,9 @@ public void statusReceived(GoalStatusArray status) {
123131
if (!goalid.getId().equals(a.getGoalId().getId())) {
124132
continue;
125133
}
126-
//CODE HERE
134+
135+
goalManager.updateStatus(a.getStatus());
136+
127137
}
128138
}
129139

src/main/java/com/github/rosjava_actionlib/ActionClientListener.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,30 @@
2424
* Listener interface to receive the incoming messages from the ActionLib server.
2525
* A client should implement this interface if it wants to receive the callbacks
2626
* with information from the server.
27+
*
2728
* @author Ernesto Corbellini [email protected]
2829
*/
2930
public interface ActionClientListener<T_ACTION_FEEDBACK extends Message,
3031
T_ACTION_RESULT extends Message> {
3132
/**
3233
* Called when a result message is received from the server.
34+
*
3335
* @param result Result message from the server. The type of this message
34-
* depends on the application.
36+
* depends on the application.
3537
*/
3638
void resultReceived(T_ACTION_RESULT result);
3739

3840
/**
3941
* Called when a feedback message is received from the server.
42+
*
4043
* @param feedback The feedback message received from the server. The type of
41-
* this message depends on the application.
44+
* this message depends on the application.
4245
*/
4346
void feedbackReceived(T_ACTION_FEEDBACK feedback);
4447

4548
/**
4649
* Called when a status message is received from the server.
50+
*
4751
* @param status The status message received from the server.
4852
* @see actionlib_msgs.GoalStatusArray
4953
*/

src/main/java/com/github/rosjava_actionlib/ActionFeedback.java

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
/**
2626
* Class to encapsulate the action feedback object.
27+
*
2728
* @author Ernesto Corbellini [email protected]
2829
*/
2930
public class ActionFeedback<T_ACTION_FEEDBACK extends Message> {

src/main/java/com/github/rosjava_actionlib/ActionFuture.java

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
public interface ActionFuture<T_ACTION_GOAL extends Message, T_ACTION_FEEDBACK extends Message, T_ACTION_RESULT extends Message> extends Future<T_ACTION_RESULT> {
88

99
T_ACTION_FEEDBACK getLatestFeedback();
10+
ClientState getCurrentState();
1011

1112
Future<Void> toVoidFuture();
1213

src/main/java/com/github/rosjava_actionlib/ActionGoal.java

+10-2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
/**
2727
* Class to encapsulate the action goal object.
28+
*
2829
* @author Ernesto Corbellini [email protected]
2930
*/
3031
public class ActionGoal<T_ACTION_GOAL extends Message> {
@@ -39,6 +40,7 @@ public ActionGoal() {
3940

4041
/**
4142
* Return the sequence number of the action goal message's header.
43+
*
4244
* @return The sequence number of the std_msgs.Header or -1 if there is an error.
4345
* @see std_msgs.Header
4446
*/
@@ -59,7 +61,8 @@ public int getHeaderSequence() {
5961

6062
/**
6163
* Set the sequence number of the action goal message's header.
62-
* @param seq The sequence number for the std_msgs.Header.
64+
*
65+
* @param seq The sequence number for the std_msgs.Header.
6366
* @see std_msgs.Header
6467
*/
6568
public void setHeaderSequence(int seq) {
@@ -77,6 +80,7 @@ public void setHeaderSequence(int seq) {
7780

7881
/**
7982
* Return the time stamp of the action goal message's header.
83+
*
8084
* @return The time stamp (org.ros.message.Time) of the std_msgs.Header or null otherwise.
8185
* @see org.ros.message.Time
8286
*/
@@ -97,6 +101,7 @@ public Time getHeaderTimestamp() {
97101

98102
/**
99103
* Sets the time stamp for the action goal message's header.
104+
*
100105
* @param t The time stamp (org.ros.message.Time) of the std_msgs.Header.
101106
* @see org.ros.message.Time
102107
*/
@@ -123,6 +128,7 @@ public void setHeaderFrameId(String id) {
123128

124129
/**
125130
* Return the standard actionlib header message for this action goal.
131+
*
126132
* @return The std_msgs.Header object or null otherwise.
127133
* @see std_msgs.Header
128134
*/
@@ -161,8 +167,9 @@ public String getGoalId() {
161167

162168
/**
163169
* Set the action goal's goal ID string and timestamp.
170+
*
164171
* @param id Identification string for this goal.
165-
* @param t Time stamp (org.ros.message.Time).
172+
* @param t Time stamp (org.ros.message.Time).
166173
*/
167174
public void setGoalId(String id, Time t) {
168175
GoalID gid = getGoalIdMessage();
@@ -190,6 +197,7 @@ public void setGoalIdTimestamp(Time t) {
190197

191198
/**
192199
* Return the actionlib GoalID message for this action goal.
200+
*
193201
* @return The actionlib_msgs.GoalID object or null otherwise.
194202
* @see actionlib_msgs.GoalID
195203
*/

src/main/java/com/github/rosjava_actionlib/ActionResult.java

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
/**
2626
* Class to encapsulate the action feedback object.
27+
*
2728
* @author Ernesto Corbellini [email protected]
2829
*/
2930
public class ActionResult<T_ACTION_RESULT extends Message> {

0 commit comments

Comments
 (0)