com.eveningoutpost.dexdrip.Models.ActiveBgAlert Java Examples

The following examples show how to use com.eveningoutpost.dexdrip.Models.ActiveBgAlert. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AlertPlayer.java    From xDrip-Experimental with GNU General Public License v3.0 6 votes vote down vote up
public synchronized void stopAlert(Context ctx, boolean ClearData, boolean clearIfSnoozeFinished) {

        Log.d(TAG, "stopAlert: stop called ClearData " + ClearData + "  ThreadID " + Thread.currentThread().getId());
        if (ClearData) {
            ActiveBgAlert.ClearData();
        }
        if(clearIfSnoozeFinished) {
            ActiveBgAlert.ClearIfSnoozeFinished();
        }
        notificationDismiss(ctx);
        if (mediaPlayer != null) {
            mediaPlayer.stop();
            mediaPlayer.release();
            mediaPlayer = null;
        }
    }
 
Example #2
Source File: Notifications.java    From xDrip-plus with GNU General Public License v3.0 6 votes vote down vote up
private long calcuatleArmTimeBg(long now) {
    Long wakeTimeBg = Long.MAX_VALUE;
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert != null) {
        AlertType alert = AlertType.get_alert(activeBgAlert.alert_uuid);
        if (alert != null) {
            wakeTimeBg = activeBgAlert.next_alert_at ;
            Log.d(TAG , "ArmTimer BG alert -waking at: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
            if (wakeTimeBg < now) {
                // next alert should be at least one minute from now.
                wakeTimeBg = now + 60000;
                Log.w(TAG , "setting next alert to 1 minute from now (no problem right now, but needs a fix someplace else)");
            }
            
        }
    }
    Log.d("Notifications" , "calcuatleArmTimeBg returning: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
    return wakeTimeBg;
}
 
Example #3
Source File: Home.java    From xDrip-plus with GNU General Public License v3.0 6 votes vote down vote up
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
    switch (event.getKeyCode()) {
        case KeyEvent.KEYCODE_VOLUME_DOWN:
        case KeyEvent.KEYCODE_VOLUME_UP:
        case KeyEvent.KEYCODE_VOLUME_MUTE:
            if (JoH.quietratelimit("button-press", 5)) {
                if (Pref.getBooleanDefaultFalse("buttons_silence_alert")) {
                    final ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
                    if (activeBgAlert != null) {
                        AlertPlayer.getPlayer().Snooze(xdrip.getAppContext(), -1);
                        final String msg = "Snoozing alert due to volume button press";
                        JoH.static_toast_long(msg);
                        UserError.Log.ueh(TAG, msg);
                    } else {
                        if (d) UserError.Log.d(TAG, "no active alert to snooze");
                    }
                } else {
                    if (d) UserError.Log.d(TAG, "No action as preference is disabled");
                }
            }
            break;
    }
    if (d) Log.d(TAG, "Keydown event: " + keyCode + " event: " + event.toString());
    return super.onKeyDown(keyCode, event);
}
 
Example #4
Source File: Home.java    From xDrip with GNU General Public License v3.0 6 votes vote down vote up
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
    switch (event.getKeyCode()) {
        case KeyEvent.KEYCODE_VOLUME_DOWN:
        case KeyEvent.KEYCODE_VOLUME_UP:
        case KeyEvent.KEYCODE_VOLUME_MUTE:
            if (JoH.quietratelimit("button-press", 5)) {
                if (Pref.getBooleanDefaultFalse("buttons_silence_alert")) {
                    final ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
                    if (activeBgAlert != null) {
                        AlertPlayer.getPlayer().Snooze(xdrip.getAppContext(), -1);
                        final String msg = "Snoozing alert due to volume button press";
                        JoH.static_toast_long(msg);
                        UserError.Log.ueh(TAG, msg);
                    } else {
                        if (d) UserError.Log.d(TAG, "no active alert to snooze");
                    }
                } else {
                    if (d) UserError.Log.d(TAG, "No action as preference is disabled");
                }
            }
            break;
    }
    if (d) Log.d(TAG, "Keydown event: " + keyCode + " event: " + event.toString());
    return super.onKeyDown(keyCode, event);
}
 
Example #5
Source File: Notifications.java    From xDrip with GNU General Public License v3.0 6 votes vote down vote up
private long calcuatleArmTimeBg(long now) {
    Long wakeTimeBg = Long.MAX_VALUE;
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert != null) {
        AlertType alert = AlertType.get_alert(activeBgAlert.alert_uuid);
        if (alert != null) {
            wakeTimeBg = activeBgAlert.next_alert_at ;
            Log.d(TAG , "ArmTimer BG alert -waking at: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
            if (wakeTimeBg < now) {
                // next alert should be at least one minute from now.
                wakeTimeBg = now + 60000;
                Log.w(TAG , "setting next alert to 1 minute from now (no problem right now, but needs a fix someplace else)");
            }
            
        }
    }
    Log.d("Notifications" , "calcuatleArmTimeBg returning: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
    return wakeTimeBg;
}
 
Example #6
Source File: AlertPlayer.java    From xDrip-plus with GNU General Public License v3.0 6 votes vote down vote up
public synchronized void stopAlert(Context ctx, boolean ClearData, boolean clearIfSnoozeFinished, boolean cancelNotification) {

        Log.d(TAG, "stopAlert: stop called ClearData " + ClearData + "  ThreadID " + Thread.currentThread().getId());
        if (ClearData) {
            ActiveBgAlert.ClearData();
        }
        if (clearIfSnoozeFinished) {
            ActiveBgAlert.ClearIfSnoozeFinished();
        }
        if (cancelNotification) {
            notificationDismiss(ctx);
        }
        if (mediaPlayer != null) {
            mediaPlayer.stop();
            mediaPlayer.release();
            mediaPlayer = null;
        }
        revertCurrentVolume(ctx);
    }
 
Example #7
Source File: AlertPlayer.java    From xDrip with GNU General Public License v3.0 6 votes vote down vote up
public synchronized void Snooze(Context ctx, int repeatTime, boolean from_interactive) {
    Log.i(TAG, "Snooze called repeatTime = " + repeatTime);
    stopAlert(ctx, false, false);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert == null) {
        Log.e(TAG, "Error, snooze was called but no alert is active.");
        if (from_interactive) GcmActivity.sendSnoozeToRemote();
        return;
    }
    if (repeatTime == -1) {
        // try to work out default
        AlertType alert = ActiveBgAlert.alertTypegetOnly();
        if (alert != null) {
            repeatTime = alert.default_snooze;
            Log.d(TAG, "Selecting default snooze time: " + repeatTime);
        } else {
            repeatTime = 30; // pick a number if we cannot even find the default
            Log.e(TAG, "Cannot even find default snooze time so going with: " + repeatTime);
        }
    }
    activeBgAlert.snooze(repeatTime);
    if (from_interactive) GcmActivity.sendSnoozeToRemote();
}
 
Example #8
Source File: AlertPlayer.java    From xDrip-plus with GNU General Public License v3.0 6 votes vote down vote up
public synchronized void Snooze(Context ctx, int repeatTime, boolean from_interactive) {
    Log.i(TAG, "Snooze called repeatTime = " + repeatTime);
    stopAlert(ctx, false, false);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert == null) {
        Log.e(TAG, "Error, snooze was called but no alert is active.");
        //KS TODO if (from_interactive) GcmActivity.sendSnoozeToRemote();
        return;
    }
    if (repeatTime == -1) {
        // try to work out default
        AlertType alert = ActiveBgAlert.alertTypegetOnly();
        if (alert != null) {
            repeatTime = alert.default_snooze;
            Log.d(TAG, "Selecting default snooze time: " + repeatTime);
        } else {
            repeatTime = 30; // pick a number if we cannot even find the default
            Log.e(TAG, "Cannot even find default snooze time so going with: " + repeatTime);
        }
    }
    activeBgAlert.snooze(repeatTime);
    //KS if (from_interactive) GcmActivity.sendSnoozeToRemote();
}
 
Example #9
Source File: AlertPlayer.java    From xDrip-plus with GNU General Public License v3.0 6 votes vote down vote up
public synchronized void Snooze(Context ctx, int repeatTime, boolean from_interactive) {
    Log.i(TAG, "Snooze called repeatTime = " + repeatTime);
    stopAlert(ctx, false, false);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert == null) {
        Log.e(TAG, "Error, snooze was called but no alert is active.");
        if (from_interactive) GcmActivity.sendSnoozeToRemote();
        return;
    }
    if (repeatTime == -1) {
        // try to work out default
        AlertType alert = ActiveBgAlert.alertTypegetOnly();
        if (alert != null) {
            repeatTime = alert.default_snooze;
            Log.d(TAG, "Selecting default snooze time: " + repeatTime);
        } else {
            repeatTime = 30; // pick a number if we cannot even find the default
            Log.e(TAG, "Cannot even find default snooze time so going with: " + repeatTime);
        }
    }
    activeBgAlert.snooze(repeatTime);
    if (from_interactive) GcmActivity.sendSnoozeToRemote();
}
 
Example #10
Source File: Notifications.java    From xDrip with GNU General Public License v3.0 6 votes vote down vote up
private long calcuatleArmTimeBg(long now) {
    Long wakeTimeBg = Long.MAX_VALUE;
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert != null) {
        AlertType alert = AlertType.get_alert(activeBgAlert.alert_uuid);
        if (alert != null) {
            wakeTimeBg = activeBgAlert.next_alert_at ;
            Log.d(TAG , "ArmTimer BG alert -waking at: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
            if (wakeTimeBg < now) {
                // next alert should be at least one minute from now.
                wakeTimeBg = now + 60000;
                Log.w(TAG , "setting next alert to 1 minute from now (no problem right now, but needs a fix someplace else)");
            }
            
        }
    }
    Log.d("Notifications" , "calcuatleArmTimeBg returning: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
    return wakeTimeBg;
}
 
Example #11
Source File: Notifications.java    From xDrip-plus with GNU General Public License v3.0 6 votes vote down vote up
private long calcuatleArmTimeBg(long now) {
    Long wakeTimeBg = Long.MAX_VALUE;
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert != null) {
        AlertType alert = AlertType.get_alert(activeBgAlert.alert_uuid);
        if (alert != null) {
            wakeTimeBg = activeBgAlert.next_alert_at ;
            Log.d(TAG , "ArmTimer BG alert -waking at: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
            if (wakeTimeBg < now) {
                // next alert should be at least one minute from now.
                wakeTimeBg = now + 60000;
                Log.w(TAG , "setting next alert to 1 minute from now (no problem right now, but needs a fix someplace else)");
            }
            
        }
    }
    Log.d("Notifications" , "calcuatleArmTimeBg returning: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
    return wakeTimeBg;
}
 
Example #12
Source File: Notifications.java    From xDrip-Experimental with GNU General Public License v3.0 6 votes vote down vote up
private long calcuatleArmTimeBg(long now) {
    Long wakeTimeBg = Long.MAX_VALUE;
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert != null) {
        AlertType alert = AlertType.get_alert(activeBgAlert.alert_uuid);
        if (alert != null) {
            wakeTimeBg = activeBgAlert.next_alert_at ;
            Log.d(TAG , "ArmTimer BG alert -waking at: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
            if (wakeTimeBg < now) {
                // next alert should be at least one minute from now.
                wakeTimeBg = now + 60000;
                Log.w(TAG , "setting next alert to 1 minute from now (no problem right now, but needs a fix someplace else)");
            }
            
        }
    }
    Log.d("Notifications" , "calcuatleArmTimeBg returning: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
    return wakeTimeBg;
}
 
Example #13
Source File: AlertPlayer.java    From xDrip with GNU General Public License v3.0 6 votes vote down vote up
public synchronized void Snooze(Context ctx, int repeatTime, boolean from_interactive) {
    Log.i(TAG, "Snooze called repeatTime = " + repeatTime);
    stopAlert(ctx, false, false);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert == null) {
        Log.e(TAG, "Error, snooze was called but no alert is active.");
        //KS TODO if (from_interactive) GcmActivity.sendSnoozeToRemote();
        return;
    }
    if (repeatTime == -1) {
        // try to work out default
        AlertType alert = ActiveBgAlert.alertTypegetOnly();
        if (alert != null) {
            repeatTime = alert.default_snooze;
            Log.d(TAG, "Selecting default snooze time: " + repeatTime);
        } else {
            repeatTime = 30; // pick a number if we cannot even find the default
            Log.e(TAG, "Cannot even find default snooze time so going with: " + repeatTime);
        }
    }
    activeBgAlert.snooze(repeatTime);
    //KS if (from_interactive) GcmActivity.sendSnoozeToRemote();
}
 
Example #14
Source File: AlertPlayer.java    From xDrip with GNU General Public License v3.0 6 votes vote down vote up
public synchronized void stopAlert(Context ctx, boolean ClearData, boolean clearIfSnoozeFinished, boolean cancelNotification) {

        Log.d(TAG, "stopAlert: stop called ClearData " + ClearData + "  ThreadID " + Thread.currentThread().getId());
        if (ClearData) {
            ActiveBgAlert.ClearData();
        }
        if (clearIfSnoozeFinished) {
            ActiveBgAlert.ClearIfSnoozeFinished();
        }
        if (cancelNotification) {
            notificationDismiss(ctx);
        }
        if (mediaPlayer != null) {
            mediaPlayer.stop();
            mediaPlayer.release();
            mediaPlayer = null;
        }
        revertCurrentVolume(ctx);
    }
 
Example #15
Source File: SnoozeActivity.java    From xDrip-plus with GNU General Public License v3.0 5 votes vote down vote up
public void addListenerOnButton() {
    buttonSnooze = (Button)findViewById(R.id.button_snooze);

    //low alerts
    disableLowAlerts = (Button)findViewById(R.id.button_disable_low_alerts);
    clearLowDisabled = (Button)findViewById(R.id.enable_low_alerts);

    //high alerts
    disableHighAlerts = (Button)findViewById(R.id.button_disable_high_alerts);
    clearHighDisabled = (Button)findViewById(R.id.enable_high_alerts);

    //all alerts
    disableAlerts = (Button)findViewById(R.id.button_disable_alerts);
    clearDisabled = (Button)findViewById(R.id.enable_alerts);
    sendRemoteSnooze = (Button)findViewById(R.id.send_remote_snooze);

    buttonSnooze.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            int intValue = getTimeFromSnoozeValue(snoozeValue.getValue());
            AlertPlayer.getPlayer().Snooze(getApplicationContext(), intValue);
            Intent intent = new Intent(getApplicationContext(), Home.class);
            if (ActiveBgAlert.getOnly() != null) {
                startActivity(intent);
            }
            finish();
        }

    });
    showDisableEnableButtons();

    setOnClickListenerOnDisableButton(disableAlerts, "alerts_disabled_until");
    setOnClickListenerOnDisableButton(disableLowAlerts, "low_alerts_disabled_until");
    setOnClickListenerOnDisableButton(disableHighAlerts, "high_alerts_disabled_until");

    setOnClickListenerOnClearDisabledButton(clearDisabled, "alerts_disabled_until");
    setOnClickListenerOnClearDisabledButton(clearLowDisabled, "low_alerts_disabled_until");
    setOnClickListenerOnClearDisabledButton(clearHighDisabled, "high_alerts_disabled_until");
}
 
Example #16
Source File: AlertPlayer.java    From xDrip-plus with GNU General Public License v3.0 5 votes vote down vote up
public synchronized boolean OpportunisticSnooze() {
    if (JoH.ratelimit("opp-snooze-check", 3)) {
        if (ActiveBgAlert.getOnly() != null) {
            // there is an alert so do something
            UserError.Log.ueh(TAG, "Opportunistic snooze attempted to snooze alert");
            Snooze(xdrip.getAppContext(), -1);
            if (JoH.ratelimit("opportunistic-snooze-toast", 300)) {
                JoH.static_toast_long("Opportunistic Snooze");
            }
            return true;
        }
    }
    return false;
}
 
Example #17
Source File: AlertPlayer.java    From xDrip-plus with GNU General Public License v3.0 5 votes vote down vote up
public synchronized void PreSnooze(Context ctx, String uuid, int repeatTime) {
    Log.i(TAG, "PreSnooze called repeatTime = "+ repeatTime);
    stopAlert(ctx, true, false);
    ActiveBgAlert.Create(uuid, true, new Date().getTime() + repeatTime * 60000);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        Log.wtf(TAG, "Just created the alert, where did it go...");
        return;
    }
    activeBgAlert.snooze(repeatTime);
}
 
Example #18
Source File: AlertPlayer.java    From xDrip-plus with GNU General Public License v3.0 5 votes vote down vote up
public void ClockTick(Context ctx, boolean trendingToAlertEnd, String bgValue)
{
    if (trendingToAlertEnd) {
        Log.d(TAG,"ClockTick: This alert is trending to it's end will not do anything");
        return;
    }
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        // Nothing to do ...
        return;
    }
    if(activeBgAlert.ready_to_alarm()) {
        stopAlert(ctx, false, false, false); // also don't cancel notification

        final int minutesFromStartPlaying = activeBgAlert.getAndUpdateAlertingMinutes();
        final AlertType alert = AlertType.get_alert(activeBgAlert.alert_uuid);
        if (alert == null) {
            Log.d(TAG, "ClockTick: The alert was already deleted... will not play");
            ActiveBgAlert.ClearData();
            return;
        }
        Log.d(TAG,"ClockTick: Playing the alert again");
        long nextAlertTime = alert.getNextAlertTime(ctx);
        activeBgAlert.updateNextAlertAt(nextAlertTime);
        
        VibrateNotifyMakeNoise(ctx, alert, bgValue, minutesFromStartPlaying);
        AlertTracker.evaluate();
    }

}
 
Example #19
Source File: AlertPlayer.java    From xDrip-plus with GNU General Public License v3.0 5 votes vote down vote up
public synchronized  void startAlert(Context ctx, boolean trendingToAlertEnd, AlertType newAlert, String bgValue , boolean start_snoozed)  {
    Log.d(TAG, "startAlert called, Threadid " + Thread.currentThread().getId());
    if (trendingToAlertEnd) {
        Log.d(TAG, "startAlert: This alert is trending to it's end will not do anything");
        return;
    }

    stopAlert(ctx, true, false);

    long nextAlertTime = newAlert.getNextAlertTime(ctx);

    ActiveBgAlert.Create(newAlert.uuid, start_snoozed, nextAlertTime);
    if (!start_snoozed) VibrateNotifyMakeNoise(ctx, newAlert, bgValue, 0);
    AlertTracker.evaluate();
}
 
Example #20
Source File: AlertTracker.java    From xDrip-plus with GNU General Public License v3.0 5 votes vote down vote up
public static void evaluate() {

        final ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();

        if (activeBgAlert != null) {
            if (!activeBgAlert.is_snoozed) {
                if (JoH.ratelimit("alert-tracker-eval", 10)) {
                    final AlertType type = ActiveBgAlert.alertTypegetOnly(activeBgAlert);
                    if (type != null) {
                        final long since = JoH.msSince(activeBgAlert.alert_started_at);
                        String summary = "";
                        try {
                            summary = "(glucose " + BestGlucose.getDisplayGlucose().humanSummary() + ")";
                        } catch (Exception e) {
                            //
                        }
                        if (!type.above) {
                            EmergencyAssist.checkAndActivate(EmergencyAssist.Reason.DID_NOT_ACKNOWLEDGE_LOW_ALERT,
                                    since, summary);
                        } else {
                            EmergencyAssist.checkAndActivate(EmergencyAssist.Reason.DID_NOT_ACKNOWLEDGE_HIGH_ALERT,
                                    since, summary);
                        }
                    }
                }
            }
        }
    }
 
Example #21
Source File: AlertPlayer.java    From xDrip-plus with GNU General Public License v3.0 5 votes vote down vote up
public synchronized  void PreSnooze(Context ctx, String uuid, int repeatTime) {
    Log.i(TAG, "PreSnooze called repeatTime = "+ repeatTime);
    stopAlert(ctx, true, false);
    ActiveBgAlert.Create(uuid, true, new Date().getTime() + repeatTime * 60000);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        Log.wtf(TAG, "Just created the alert, where did it go...");
        return;
    }
    activeBgAlert.snooze(repeatTime);
}
 
Example #22
Source File: SnoozeOnNotificationDismissService.java    From xDrip-Experimental with GNU General Public License v3.0 5 votes vote down vote up
private void snoozeBgAlert() {
    AlertType activeBgAlert = ActiveBgAlert.alertTypegetOnly();

    int snooze = 30;
    if(activeBgAlert != null) {
        if(activeBgAlert.default_snooze != 0) {
            snooze = activeBgAlert.default_snooze;
        } else {
            snooze = SnoozeActivity.getDefaultSnooze(activeBgAlert.above);
        }
    }

    AlertPlayer.getPlayer().Snooze(getApplicationContext(), snooze);
}
 
Example #23
Source File: AlertPlayer.java    From xDrip-Experimental with GNU General Public License v3.0 5 votes vote down vote up
public synchronized  void startAlert(Context ctx, boolean trendingToAlertEnd, AlertType newAlert, String bgValue )  {
    Log.d(TAG, "startAlert called, Threadid " + Thread.currentThread().getId());
    if (trendingToAlertEnd) {
        Log.d(TAG,"startAlert: This alert is trending to it's end will not do anything");
        return;
    }

    stopAlert(ctx, true, false);

    long nextAlertTime = newAlert.getNextAlertTime(ctx);
    ActiveBgAlert.Create(newAlert.uuid, false, nextAlertTime );
    Vibrate(ctx, newAlert, bgValue, newAlert.override_silent_mode, 0);
}
 
Example #24
Source File: AlertPlayer.java    From xDrip-Experimental with GNU General Public License v3.0 5 votes vote down vote up
public synchronized  void Snooze(Context ctx, int repeatTime) {
    Log.i(TAG, "Snooze called repeatTime = " + repeatTime);
    stopAlert(ctx, false, false);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        Log.e(TAG, "Error, snooze was called but no alert is active. alert was probably removed in ui ");
        return;
    }
    activeBgAlert.snooze(repeatTime);
}
 
Example #25
Source File: AlertPlayer.java    From xDrip-Experimental with GNU General Public License v3.0 5 votes vote down vote up
public synchronized  void PreSnooze(Context ctx, String uuid, int repeatTime) {
    Log.i(TAG, "PreSnooze called repeatTime = "+ repeatTime);
    stopAlert(ctx, true, false);
    ActiveBgAlert.Create(uuid, true, new Date().getTime() + repeatTime * 60000 );
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        Log.wtf(TAG, "Just created the alert, where did it go...");
        return;
    }
    activeBgAlert.snooze(repeatTime);
}
 
Example #26
Source File: AlertPlayer.java    From xDrip-Experimental with GNU General Public License v3.0 5 votes vote down vote up
public void ClockTick(Context ctx, boolean trendingToAlertEnd, String bgValue)
{
    if (trendingToAlertEnd) {
        Log.d(TAG,"ClockTick: This alert is trending to it's end will not do anything");
        return;
    }
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        // Nothing to do ...
        return;
    }
    if(activeBgAlert.ready_to_alarm()) {
        stopAlert(ctx, false, false);

        int timeFromStartPlaying = activeBgAlert.getUpdatePlayTime();
        AlertType alert = AlertType.get_alert(activeBgAlert.alert_uuid);
        if (alert == null) {
            Log.d(TAG, "ClockTick: The alert was already deleted... will not play");
            ActiveBgAlert.ClearData();
            return;
        }
        Log.d(TAG,"ClockTick: Playing the alert again");
        long nextAlertTime = alert.getNextAlertTime(ctx);
        activeBgAlert.updateNextAlertAt(nextAlertTime);
        
        Vibrate(ctx, alert, bgValue, alert.override_silent_mode, timeFromStartPlaying);
    }

}
 
Example #27
Source File: SnoozeActivity.java    From xDrip-Experimental with GNU General Public License v3.0 5 votes vote down vote up
public void addListenerOnButton() {
    buttonSnooze = (Button)findViewById(R.id.button_snooze);

    //low alerts
    disableLowAlerts = (Button)findViewById(R.id.button_disable_low_alerts);
    clearLowDisabled = (Button)findViewById(R.id.enable_low_alerts);

    //high alerts
    disableHighAlerts = (Button)findViewById(R.id.button_disable_high_alerts);
    clearHighDisabled = (Button)findViewById(R.id.enable_high_alerts);

    //all alerts
    disableAlerts = (Button)findViewById(R.id.button_disable_alerts);
    clearDisabled = (Button)findViewById(R.id.enable_alerts);
    buttonSnooze.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            int intValue = getTimeFromSnoozeValue(snoozeValue.getValue());
            AlertPlayer.getPlayer().Snooze(getApplicationContext(), intValue);
            Intent intent = new Intent(getApplicationContext(), Home.class);
            if (ActiveBgAlert.getOnly() != null) {
                startActivity(intent);
            }
            finish();
        }

    });
    showDisableEnableButtons();

    setOnClickListenerOnDisableButton(disableAlerts, "alerts_disabled_until");
    setOnClickListenerOnDisableButton(disableLowAlerts, "low_alerts_disabled_until");
    setOnClickListenerOnDisableButton(disableHighAlerts, "high_alerts_disabled_until");

    setOnClickListenerOnClearDisabledButton(clearDisabled, "alerts_disabled_until");
    setOnClickListenerOnClearDisabledButton(clearLowDisabled, "low_alerts_disabled_until");
    setOnClickListenerOnClearDisabledButton(clearHighDisabled, "high_alerts_disabled_until");
}
 
Example #28
Source File: SnoozeActivity.java    From xDrip-plus with GNU General Public License v3.0 5 votes vote down vote up
public void addListenerOnButton() {
    buttonSnooze = (Button)findViewById(R.id.button_snooze);

    //low alerts
    disableLowAlerts = (Button)findViewById(R.id.button_disable_low_alerts);
    clearLowDisabled = (Button)findViewById(R.id.enable_low_alerts);

    //high alerts
    disableHighAlerts = (Button)findViewById(R.id.button_disable_high_alerts);
    clearHighDisabled = (Button)findViewById(R.id.enable_high_alerts);

    //all alerts
    disableAlerts = (Button)findViewById(R.id.button_disable_alerts);
    clearDisabled = (Button)findViewById(R.id.enable_alerts);
    sendRemoteSnooze = (Button)findViewById(R.id.send_remote_snooze);

    buttonSnooze.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            int intValue = getTimeFromSnoozeValue(snoozeValue.getValue());
            AlertPlayer.getPlayer().Snooze(getApplicationContext(), intValue);
            Intent intent = new Intent(getApplicationContext(), Home.class);
            if (ActiveBgAlert.getOnly() != null) {
                Log.e(TAG, "Snoozed!  ActiveBgAlert.getOnly() != null TODO restart Home.class - watchface?");
                //KS TODO startActivity(intent);
            }
            finish();
        }

    });
    showDisableEnableButtons();

    setOnClickListenerOnDisableButton(disableAlerts, "alerts_disabled_until");
    setOnClickListenerOnDisableButton(disableLowAlerts, "low_alerts_disabled_until");
    setOnClickListenerOnDisableButton(disableHighAlerts, "high_alerts_disabled_until");

    setOnClickListenerOnClearDisabledButton(clearDisabled, "alerts_disabled_until");
    setOnClickListenerOnClearDisabledButton(clearLowDisabled, "low_alerts_disabled_until");
    setOnClickListenerOnClearDisabledButton(clearHighDisabled, "high_alerts_disabled_until");
}
 
Example #29
Source File: AlertPlayer.java    From xDrip with GNU General Public License v3.0 5 votes vote down vote up
public synchronized  void startAlert(Context ctx, boolean trendingToAlertEnd, AlertType newAlert, String bgValue , boolean start_snoozed)  {
    Log.d(TAG, "startAlert called, Threadid " + Thread.currentThread().getId());
    if (trendingToAlertEnd) {
        Log.d(TAG, "startAlert: This alert is trending to it's end will not do anything");
        return;
    }

    stopAlert(ctx, true, false);

    long nextAlertTime = newAlert.getNextAlertTime(ctx);

    ActiveBgAlert.Create(newAlert.uuid, start_snoozed, nextAlertTime);
    if (!start_snoozed) Vibrate(ctx, newAlert, bgValue, newAlert.override_silent_mode, 0);
}
 
Example #30
Source File: AlertPlayer.java    From xDrip with GNU General Public License v3.0 5 votes vote down vote up
public synchronized  void PreSnooze(Context ctx, String uuid, int repeatTime) {
    Log.i(TAG, "PreSnooze called repeatTime = "+ repeatTime);
    stopAlert(ctx, true, false);
    ActiveBgAlert.Create(uuid, true, new Date().getTime() + repeatTime * 60000);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        Log.wtf(TAG, "Just created the alert, where did it go...");
        return;
    }
    activeBgAlert.snooze(repeatTime);
}