All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.firebase.database.OnDisconnect Maven / Gradle / Ivy

/*
 * Copyright 2017 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.firebase.database;

import com.google.api.core.ApiFuture;
import com.google.firebase.database.DatabaseReference.CompletionListener;
import com.google.firebase.database.core.Path;
import com.google.firebase.database.core.Repo;
import com.google.firebase.database.core.ValidationPath;
import com.google.firebase.database.snapshot.Node;
import com.google.firebase.database.snapshot.NodeUtilities;
import com.google.firebase.database.snapshot.PriorityUtilities;
import com.google.firebase.database.utilities.Pair;
import com.google.firebase.database.utilities.Utilities;
import com.google.firebase.database.utilities.Validation;
import com.google.firebase.database.utilities.encoding.CustomClassMapper;

import java.util.Map;

/**
 * The OnDisconnect class is used to manage operations that will be run on the server when this
 * client disconnects. It can be used to add or remove data based on a client's connection status.
 * It is very useful in applications looking for 'presence' functionality. 
*
* Instances of this class are obtained by calling {@link DatabaseReference#onDisconnect() * onDisconnect} on a Firebase Database ref. */ @SuppressWarnings("rawtypes") public class OnDisconnect { private Repo repo; private Path path; OnDisconnect(Repo repo, Path path) { this.repo = repo; this.path = path; } /** * Ensure the data at this location is set to the specified value when the client is disconnected * (due to closing the browser, navigating to a new page, or network issues).
*
* This method is especially useful for implementing "presence" systems, where a value should be * changed or cleared when a user disconnects so that they appear "offline" to other users. * * @param value The value to be set when a disconnect occurs * @param listener A listener that will be triggered once the server has queued up the operation */ public void setValue(Object value, CompletionListener listener) { onDisconnectSetInternal(value, PriorityUtilities.NullPriority(), listener); } /** * Ensure the data at this location is set to the specified value and priority when the client is * disconnected (due to closing the browser, navigating to a new page, or network issues).
*
* This method is especially useful for implementing "presence" systems, where a value should be * changed or cleared when a user disconnects so that they appear "offline" to other users. * * @param value The value to be set when a disconnect occurs * @param priority The priority to be set when a disconnect occurs * @param listener A listener that will be triggered once the server has queued up the operation */ public void setValue(Object value, String priority, CompletionListener listener) { onDisconnectSetInternal(value, PriorityUtilities.parsePriority(path, priority), listener); } /** * Ensure the data at this location is set to the specified value and priority when the client is * disconnected (due to closing the browser, navigating to a new page, or network issues).
*
* This method is especially useful for implementing "presence" systems, where a value should be * changed or cleared when a user disconnects so that they appear "offline" to other users. * * @param value The value to be set when a disconnect occurs * @param priority The priority to be set when a disconnect occurs * @param listener A listener that will be triggered once the server has queued up the operation */ public void setValue(Object value, double priority, CompletionListener listener) { onDisconnectSetInternal(value, PriorityUtilities.parsePriority(path, priority), listener); } /** * Ensure the data at this location is set to the specified value and priority when the client is * disconnected (due to closing the browser, navigating to a new page, or network issues).
*
* This method is especially useful for implementing "presence" systems, where a value should be * changed or cleared when a user disconnects so that they appear "offline" to other users. * * @param value The value to be set when a disconnect occurs * @param priority The priority to be set when a disconnect occurs * @param listener A listener that will be triggered once the server has queued up the operation */ public void setValue(Object value, Map priority, CompletionListener listener) { onDisconnectSetInternal(value, PriorityUtilities.parsePriority(path, priority), listener); } /** * Ensure the data at this location is set to the specified value when the client is disconnected * (due to closing the browser, navigating to a new page, or network issues).
*
* This method is especially useful for implementing "presence" systems, where a value should be * changed or cleared when a user disconnects so that they appear "offline" to other users. * * @param value The value to be set when a disconnect occurs * @return The ApiFuture for this operation. */ public ApiFuture setValueAsync(Object value) { return onDisconnectSetInternal(value, PriorityUtilities.NullPriority(), null); } /** * Ensure the data at this location is set to the specified value and priority when the client is * disconnected (due to closing the browser, navigating to a new page, or network issues).
*
* This method is especially useful for implementing "presence" systems, where a value should be * changed or cleared when a user disconnects so that they appear "offline" to other users. * * @param value The value to be set when a disconnect occurs * @param priority The priority to be set when a disconnect occurs * @return The ApiFuture for this operation. */ public ApiFuture setValueAsync(Object value, String priority) { return onDisconnectSetInternal(value, PriorityUtilities.parsePriority(path, priority), null); } /** * Ensure the data at this location is set to the specified value and priority when the client is * disconnected (due to closing the browser, navigating to a new page, or network issues).
*
* This method is especially useful for implementing "presence" systems, where a value should be * changed or cleared when a user disconnects so that they appear "offline" to other users. * * @param value The value to be set when a disconnect occurs * @param priority The priority to be set when a disconnect occurs * @return The ApiFuture for this operation. */ public ApiFuture setValueAsync(Object value, double priority) { return onDisconnectSetInternal(value, PriorityUtilities.parsePriority(path, priority), null); } private ApiFuture onDisconnectSetInternal( Object value, Node priority, final CompletionListener optListener) { Validation.validateWritablePath(path); ValidationPath.validateWithObject(path, value); Object bouncedValue = CustomClassMapper.convertToPlainJavaTypes(value); Validation.validateWritableObject(bouncedValue); final Node node = NodeUtilities.NodeFromJSON(bouncedValue, priority); final Pair, CompletionListener> wrapped = Utilities.wrapOnComplete(optListener); repo.scheduleNow( new Runnable() { @Override public void run() { repo.onDisconnectSetValue(path, node, wrapped.getSecond()); } }); return wrapped.getFirst(); } // Update /** * Ensure the data has the specified child values updated when the client is disconnected * * @param update The paths to update, along with their desired values * @param listener A listener that will be triggered once the server has queued up the operation */ public void updateChildren(final Map update, final CompletionListener listener) { updateChildrenInternal(update, listener); } /** * Ensure the data has the specified child values updated when the client is disconnected * * @param update The paths to update, along with their desired values * @return The ApiFuture for this operation. */ public ApiFuture updateChildrenAsync(Map update) { return updateChildrenInternal(update, null); } private ApiFuture updateChildrenInternal( final Map update, final CompletionListener optListener) { final Map parsedUpdate = Validation.parseAndValidateUpdate(path, update); final Pair, CompletionListener> wrapped = Utilities.wrapOnComplete(optListener); repo.scheduleNow( new Runnable() { @Override public void run() { repo.onDisconnectUpdate(path, parsedUpdate, wrapped.getSecond(), update); } }); return wrapped.getFirst(); } // Remove /** * Remove the value at this location when the client disconnects * * @param listener A listener that will be triggered once the server has queued up the operation */ public void removeValue(CompletionListener listener) { setValue(null, listener); } /** * Remove the value at this location when the client disconnects * * @return The ApiFuture for this operation. */ public ApiFuture removeValueAsync() { return setValueAsync(null); } // Cancel the operation /** * Cancel any disconnect operations that are queued up at this location * * @param listener A listener that will be triggered once the server has cancelled the operations */ public void cancel(final CompletionListener listener) { cancelInternal(listener); } /** * Cancel any disconnect operations that are queued up at this location * * @return The ApiFuture for this operation. */ public ApiFuture cancelAsync() { return cancelInternal(null); } private ApiFuture cancelInternal(final CompletionListener optListener) { final Pair, CompletionListener> wrapped = Utilities.wrapOnComplete(optListener); repo.scheduleNow( new Runnable() { @Override public void run() { repo.onDisconnectCancel(path, wrapped.getSecond()); } }); return wrapped.getFirst(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy