com.segment.analytics.Options Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analytics-core Show documentation
Show all versions of analytics-core Show documentation
The hassle-free way to add analytics to your Android app.
/*
* The MIT License (MIT)
*
* Copyright (c) 2014 Segment, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.segment.analytics;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
/**
* Options let you control behaviour for a specific analytics action, including setting a custom
* timestamp and disabling integrations on demand.
*/
public class Options {
/**
* A special key, whose value which is respected for all integrations, a "default" value, unless
* explicitly overridden. See the documentation for {@link #setIntegration(String, boolean)} on
* how to use this key.
*/
public static final String ALL_INTEGRATIONS_KEY = "All";
private final Map integrations; // passed in by the user
public Options() {
integrations = new ConcurrentHashMap<>();
integrations.put(ALL_INTEGRATIONS_KEY, true);
}
/**
* Sets whether an action will be sent to the target integration.
*
* By default, all integrations are sent a payload, and the value for the {@link
* #ALL_INTEGRATIONS_KEY} is {@code true}. You can disable specific payloads.
*
* Example: options.setIntegration("Google Analytics", false).setIntegration("Countly",
* false)
will send the event to ALL integrations, except Google Analytic and Countly.
*
* If you want to enable only specific integrations, first override the defaults and then enable
* specific integrations.
*
* Example: options.setIntegration(Options.ALL_INTEGRATIONS_KEY,
* false).setIntegration("Countly", true).setIntegration("Google Analytics", true)
will
* only send events to ONLY Countly and Google Analytics.
*
* @param integrationKey The integration key
* @param enabled true
for enabled, false
for disabled
* @return This options object for chaining
*/
public Options setIntegration(String integrationKey, boolean enabled) {
if (SegmentDispatcher.SEGMENT_KEY.equals(integrationKey)) {
throw new IllegalArgumentException("Segment integration cannot be enabled or disabled.");
}
integrations.put(integrationKey, enabled);
return this;
}
/**
* Sets whether an action will be sent to the target integration. Same as {@link
* #setIntegration(String, boolean)} but type safe for bundled integrations.
*
* @param bundledIntegration The target integration
* @param enabled true
for enabled, false
for disabled
* @return This options object for chaining
* @see {@link Options#setIntegration(String, boolean)}
*/
public Options setIntegration(Analytics.BundledIntegration bundledIntegration, boolean enabled) {
setIntegration(bundledIntegration.key, enabled);
return this;
}
/**
* Attach some integration specific options for this call.
*
* @param integrationKey The target integration key
* @param options A map of data that will be used by the integration
* @return This options object for chaining
*/
public Options setIntegrationOptions(String integrationKey, Map options) {
integrations.put(integrationKey, options);
return this;
}
/**
* Attach some integration specific options for this call. Same as
* {@link #setIntegrationOptions(String, Map)} but type safe for bundled integrations.
*
* @param bundledIntegration The target integration
* @param options A map of data that will be used by the integration
* @return This options object for chaining
*/
public Options setIntegrationOptions(Analytics.BundledIntegration bundledIntegration,
Map options) {
integrations.put(bundledIntegration.key, options);
return this;
}
/** Returns a copy of settings for integrations. */
public Map integrations() {
return new LinkedHashMap<>(integrations);
}
}