mirror of https://github.com/iSoron/uhabits.git
parent
e80292e75d
commit
373f21e247
@ -1,94 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2016 Álinson Santos Xavier <isoron@gmail.com>
|
|
||||||
*
|
|
||||||
* This file is part of Loop Habit Tracker.
|
|
||||||
*
|
|
||||||
* Loop Habit Tracker is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by the
|
|
||||||
* Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
* option) any later version.
|
|
||||||
*
|
|
||||||
* Loop Habit Tracker is distributed in the hope that it will be useful, but
|
|
||||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
||||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
||||||
* more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License along
|
|
||||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package org.isoron.uhabits.core.commands;
|
|
||||||
|
|
||||||
import androidx.annotation.*;
|
|
||||||
|
|
||||||
import org.isoron.uhabits.core.*;
|
|
||||||
import org.isoron.uhabits.core.tasks.*;
|
|
||||||
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
import javax.inject.*;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A CommandRunner executes and undoes commands.
|
|
||||||
* <p>
|
|
||||||
* CommandRunners also allows objects to subscribe to it, and receive events
|
|
||||||
* whenever a command is performed.
|
|
||||||
*/
|
|
||||||
@AppScope
|
|
||||||
public class CommandRunner
|
|
||||||
{
|
|
||||||
private final TaskRunner taskRunner;
|
|
||||||
|
|
||||||
private final LinkedList<Listener> listeners;
|
|
||||||
|
|
||||||
@Inject
|
|
||||||
public CommandRunner(@NonNull TaskRunner taskRunner)
|
|
||||||
{
|
|
||||||
this.taskRunner = taskRunner;
|
|
||||||
listeners = new LinkedList<>();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addListener(Listener l)
|
|
||||||
{
|
|
||||||
listeners.add(l);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void execute(final Command command, final Long refreshKey)
|
|
||||||
{
|
|
||||||
taskRunner.execute(new Task()
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public void doInBackground()
|
|
||||||
{
|
|
||||||
command.execute();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onPostExecute()
|
|
||||||
{
|
|
||||||
notifyListeners(command, refreshKey);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public void notifyListeners(Command command, Long refreshKey)
|
|
||||||
{
|
|
||||||
for (Listener l : listeners)
|
|
||||||
l.onCommandExecuted(command, refreshKey);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void removeListener(Listener l)
|
|
||||||
{
|
|
||||||
listeners.remove(l);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Interface implemented by objects that want to receive an event whenever a
|
|
||||||
* command is executed.
|
|
||||||
*/
|
|
||||||
public interface Listener
|
|
||||||
{
|
|
||||||
void onCommandExecuted(@Nullable Command command,
|
|
||||||
@Nullable Long refreshKey);
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,59 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016 Álinson Santos Xavier <isoron@gmail.com>
|
||||||
|
*
|
||||||
|
* This file is part of Loop Habit Tracker.
|
||||||
|
*
|
||||||
|
* Loop Habit Tracker is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by the
|
||||||
|
* Free Software Foundation, either version 3 of the License, or (at your
|
||||||
|
* option) any later version.
|
||||||
|
*
|
||||||
|
* Loop Habit Tracker is distributed in the hope that it will be useful, but
|
||||||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
|
* more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
package org.isoron.uhabits.core.commands
|
||||||
|
|
||||||
|
import org.isoron.uhabits.core.*
|
||||||
|
import org.isoron.uhabits.core.tasks.*
|
||||||
|
import java.util.*
|
||||||
|
import javax.inject.Inject
|
||||||
|
|
||||||
|
@AppScope
|
||||||
|
open class CommandRunner
|
||||||
|
@Inject constructor(
|
||||||
|
private val taskRunner: TaskRunner,
|
||||||
|
) {
|
||||||
|
private val listeners: LinkedList<Listener> = LinkedList()
|
||||||
|
|
||||||
|
open fun run(command: Command) {
|
||||||
|
taskRunner.execute(object : Task {
|
||||||
|
override fun doInBackground() {
|
||||||
|
command.execute()
|
||||||
|
}
|
||||||
|
override fun onPostExecute() {
|
||||||
|
notifyListeners(command)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
fun addListener(l: Listener) {
|
||||||
|
listeners.add(l)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun notifyListeners(command: Command) {
|
||||||
|
for (l in listeners) l.onCommandFinished(command)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun removeListener(l: Listener) {
|
||||||
|
listeners.remove(l)
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Listener {
|
||||||
|
fun onCommandFinished(command: Command)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue