Skip to content

Commit 00c2312

Browse files
refactor so that any java 8 or later can use lambdas for Activate and… (#175)
* refactor so that any java 8 or later can use lambdas for Activate and Track listeners. * make some updates according to mike's comments * add some unit tests to up code coverage
1 parent be515ba commit 00c2312

11 files changed

+206
-616
lines changed

core-api/src/main/java/com/optimizely/ab/Optimizely.java

-39
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
import com.optimizely.ab.event.internal.EventBuilder;
4040
import com.optimizely.ab.event.internal.payload.EventBatch.ClientEngine;
4141
import com.optimizely.ab.internal.EventTagUtils;
42-
import com.optimizely.ab.notification.NotificationBroadcaster;
4342
import com.optimizely.ab.notification.NotificationCenter;
4443
import com.optimizely.ab.notification.NotificationListener;
4544
import org.slf4j.Logger;
@@ -90,7 +89,6 @@ public class Optimizely {
9089
@VisibleForTesting final ProjectConfig projectConfig;
9190
@VisibleForTesting final EventHandler eventHandler;
9291
@VisibleForTesting final ErrorHandler errorHandler;
93-
@VisibleForTesting final NotificationBroadcaster notificationBroadcaster = new NotificationBroadcaster();
9492
public final NotificationCenter notificationCenter = new NotificationCenter();
9593

9694
@Nullable private final UserProfileService userProfileService;
@@ -205,8 +203,6 @@ private void sendImpression(@Nonnull ProjectConfig projectConfig,
205203
logger.error("Unexpected exception in event dispatcher", e);
206204
}
207205

208-
notificationBroadcaster.broadcastExperimentActivated(experiment, userId, filteredAttributes, variation);
209-
210206
notificationCenter.sendNotifications(NotificationCenter.NotificationType.Activate, experiment, userId,
211207
filteredAttributes, variation, impressionEvent);
212208
} else {
@@ -245,12 +241,9 @@ public void track(@Nonnull String eventName,
245241
// attributes.
246242
Map<String, String> filteredAttributes = filterAttributes(currentConfig, attributes);
247243

248-
Long eventValue = null;
249244
if (eventTags == null) {
250245
logger.warn("Event tags is null when non-null was expected. Defaulting to an empty event tags map.");
251246
eventTags = Collections.<String, String>emptyMap();
252-
} else {
253-
eventValue = EventTagUtils.getRevenueValue(eventTags);
254247
}
255248

256249
List<Experiment> experimentsForEvent = projectConfig.getExperimentsForEventKey(eventName);
@@ -293,8 +286,6 @@ public void track(@Nonnull String eventName,
293286
logger.error("Unexpected exception in event dispatcher", e);
294287
}
295288

296-
notificationBroadcaster.broadcastEventTracked(eventName, userId, filteredAttributes, eventValue,
297-
conversionEvent);
298289
notificationCenter.sendNotifications(NotificationCenter.NotificationType.Track, eventName, userId,
299290
filteredAttributes, eventTags, conversionEvent);
300291
}
@@ -729,36 +720,6 @@ public UserProfileService getUserProfileService() {
729720
return userProfileService;
730721
}
731722

732-
//======== Notification listeners ========//
733-
734-
/**
735-
* Add a {@link NotificationListener} if it does not exist already.
736-
*
737-
* @param listener listener to add
738-
*/
739-
@Deprecated
740-
public void addNotificationListener(@Nonnull NotificationListener listener) {
741-
notificationBroadcaster.addListener(listener);
742-
}
743-
744-
/**
745-
* Remove a {@link NotificationListener} if it exists.
746-
*
747-
* @param listener listener to remove
748-
*/
749-
@Deprecated
750-
public void removeNotificationListener(@Nonnull NotificationListener listener) {
751-
notificationBroadcaster.removeListener(listener);
752-
}
753-
754-
/**
755-
* Remove all {@link NotificationListener}.
756-
*/
757-
@Deprecated
758-
public void clearNotificationListeners() {
759-
notificationBroadcaster.clearListeners();
760-
}
761-
762723
//======== Helper methods ========//
763724

764725
/**

core-api/src/main/java/com/optimizely/ab/notification/ActivateNotificationListener.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import java.util.Map;
2626

2727

28-
public abstract class ActivateNotificationListener extends NotificationListener {
28+
public abstract class ActivateNotificationListener implements NotificationListener, ActivateNotificationListenerInterface {
2929

3030
/**
3131
* Base notify called with var args. This method parses the parameters and calls the abstract method.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package com.optimizely.ab.notification;
2+
3+
import com.optimizely.ab.config.Experiment;
4+
import com.optimizely.ab.config.Variation;
5+
import com.optimizely.ab.event.LogEvent;
6+
7+
import javax.annotation.Nonnull;
8+
import java.util.Map;
9+
10+
public interface ActivateNotificationListenerInterface {
11+
/**
12+
* onActivate called when an activate was triggered
13+
* @param experiment - The experiment object being activated.
14+
* @param userId - The userId passed into activate.
15+
* @param attributes - The filtered attribute list passed into activate
16+
* @param variation - The variation that was returned from activate.
17+
* @param event - The impression event that was triggered.
18+
*/
19+
public void onActivate(@Nonnull Experiment experiment,
20+
@Nonnull String userId,
21+
@Nonnull Map<String, String> attributes,
22+
@Nonnull Variation variation,
23+
@Nonnull LogEvent event) ;
24+
25+
}

core-api/src/main/java/com/optimizely/ab/notification/NotificationBroadcaster.java

-117
This file was deleted.

core-api/src/main/java/com/optimizely/ab/notification/NotificationCenter.java

+48-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright 2017, Optimizely and contributors
3+
* Copyright 2017-2018, Optimizely and contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -16,9 +16,13 @@
1616
*/
1717
package com.optimizely.ab.notification;
1818

19+
import com.optimizely.ab.config.Experiment;
20+
import com.optimizely.ab.config.Variation;
21+
import com.optimizely.ab.event.LogEvent;
1922
import org.slf4j.Logger;
2023
import org.slf4j.LoggerFactory;
2124

25+
import javax.annotation.Nonnull;
2226
import java.util.ArrayList;
2327
import java.util.HashMap;
2428
import java.util.Map;
@@ -78,6 +82,43 @@ public NotificationCenter() {
7882
// we used a list so that notification order can mean something.
7983
private Map<NotificationType, ArrayList<NotificationHolder>> notificationsListeners =new HashMap<NotificationType, ArrayList<NotificationHolder>>();
8084

85+
/**
86+
* Convenience method to support lambdas as callbacks in later version of Java (8+).
87+
* @param activateNotificationListenerInterface
88+
* @return greater than zero if added.
89+
*/
90+
public int addActivateNotificationListener(final ActivateNotificationListenerInterface activateNotificationListenerInterface) {
91+
if (activateNotificationListenerInterface instanceof ActivateNotificationListener) {
92+
return addNotificationListener(NotificationType.Activate, (NotificationListener)activateNotificationListenerInterface);
93+
}
94+
else {
95+
return addNotificationListener(NotificationType.Activate, new ActivateNotificationListener() {
96+
@Override
97+
public void onActivate(@Nonnull Experiment experiment, @Nonnull String userId, @Nonnull Map<String, String> attributes, @Nonnull Variation variation, @Nonnull LogEvent event) {
98+
activateNotificationListenerInterface.onActivate(experiment, userId, attributes, variation, event);
99+
}
100+
});
101+
}
102+
}
103+
104+
/**
105+
* Convenience method to support lambdas as callbacks in later versions of Java (8+)
106+
* @param trackNotificationListenerInterface
107+
* @return greater than zero if added.
108+
*/
109+
public int addTrackNotificationListener(final TrackNotificationListenerInterface trackNotificationListenerInterface) {
110+
if (trackNotificationListenerInterface instanceof TrackNotificationListener) {
111+
return addNotificationListener(NotificationType.Activate, (NotificationListener)trackNotificationListenerInterface);
112+
}
113+
else {
114+
return addNotificationListener(NotificationType.Track, new TrackNotificationListener() {
115+
@Override
116+
public void onTrack(@Nonnull String eventKey, @Nonnull String userId, @Nonnull Map<String, String> attributes, @Nonnull Map<String, ?> eventTags, @Nonnull LogEvent event) {
117+
trackNotificationListenerInterface.onTrack(eventKey, userId, attributes, eventTags, event);
118+
}
119+
});
120+
}
121+
}
81122

82123
/**
83124
* Add a notification listener to the notification center.
@@ -86,7 +127,7 @@ public NotificationCenter() {
86127
* @param notificationListener - Notification to add.
87128
* @return the notification id used to remove the notification. It is greater than 0 on success.
88129
*/
89-
public int addNotification(NotificationType notificationType, NotificationListener notificationListener) {
130+
public int addNotificationListener(NotificationType notificationType, NotificationListener notificationListener) {
90131

91132
Class clazz = notificationType.notificationTypeClass;
92133
if (clazz == null || !clazz.isInstance(notificationListener)) {
@@ -107,11 +148,11 @@ public int addNotification(NotificationType notificationType, NotificationListen
107148
}
108149

109150
/**
110-
* Remove the notification listener based on the notificationId passed back from addNotification.
151+
* Remove the notification listener based on the notificationId passed back from addNotificationListener.
111152
* @param notificationID the id passed back from add notification.
112153
* @return true if removed otherwise false (if the notification is already registered, it returns false).
113154
*/
114-
public boolean removeNotification(int notificationID) {
155+
public boolean removeNotificationListener(int notificationID) {
115156
for (NotificationType type : NotificationType.values()) {
116157
for (NotificationHolder holder : notificationsListeners.get(type)) {
117158
if (holder.notificationId == notificationID) {
@@ -130,17 +171,17 @@ public boolean removeNotification(int notificationID) {
130171
/**
131172
* Clear out all the notification listeners.
132173
*/
133-
public void clearAllNotifications() {
174+
public void clearAllNotificationListeners() {
134175
for (NotificationType type : NotificationType.values()) {
135-
clearNotifications(type);
176+
clearNotificationListeners(type);
136177
}
137178
}
138179

139180
/**
140181
* Clear notification listeners by notification type.
141182
* @param notificationType type of notificationsListeners to remove.
142183
*/
143-
public void clearNotifications(NotificationType notificationType) {
184+
public void clearNotificationListeners(NotificationType notificationType) {
144185
notificationsListeners.get(notificationType).clear();
145186
}
146187

0 commit comments

Comments
 (0)