Search in sources :

Example 11 with Meal

use of com.faltenreich.diaguard.shared.data.database.entity.Meal in project Diaguard by Faltenreich.

the class EntryDao method getAverageDataTable.

/**
 * @return HashMap with non-null but zeroed and default values for given categories and time periods
 */
public LinkedHashMap<Category, CategoryValueListItem[]> getAverageDataTable(DateTime day, Category[] categories, int hoursToSkip) {
    if (day == null) {
        return new LinkedHashMap<>();
    }
    int indices = DateTimeConstants.HOURS_PER_DAY / hoursToSkip;
    // Key: Category, Value: Fixed-size array of values per hour-index
    LinkedHashMap<Category, CategoryValueListItem[]> values = new LinkedHashMap<>();
    for (Category category : categories) {
        values.put(category, new CategoryValueListItem[indices]);
    }
    for (Category category : categories) {
        // Key: Hour-index, Value: Values of hour-index
        LinkedHashMap<Integer, List<CategoryValueListItem>> valuesOfHours = new LinkedHashMap<>();
        for (int index = 0; index < indices; index++) {
            valuesOfHours.put(index, new ArrayList<>());
        }
        List<Measurement> measurements = MeasurementDao.getInstance(category.toClass()).getMeasurements(day);
        for (Measurement measurement : measurements) {
            int index = measurement.getEntry().getDate().hourOfDay().get() / hoursToSkip;
            CategoryValueListItem item = new CategoryValueListItem(category);
            switch(category) {
                case INSULIN:
                    Insulin insulin = (Insulin) measurement;
                    item.setValueOne(insulin.getBolus());
                    item.setValueTwo(insulin.getCorrection());
                    item.setValueThree(insulin.getBasal());
                    break;
                case PRESSURE:
                    Pressure pressure = (Pressure) measurement;
                    item.setValueOne(pressure.getSystolic());
                    item.setValueTwo(pressure.getDiastolic());
                    break;
                default:
                    float value = category.stackValues() ? ArrayUtils.sum(measurement.getValues()) : ArrayUtils.avg(measurement.getValues());
                    if (category == Category.MEAL) {
                        for (FoodEaten foodEaten : ((Meal) measurement).getFoodEaten()) {
                            value += foodEaten.getCarbohydrates();
                        }
                    }
                    item.setValueOne(value);
                    break;
            }
            List<CategoryValueListItem> valuesOfHour = valuesOfHours.get(index);
            if (valuesOfHour == null) {
                valuesOfHours.put(index, new ArrayList<>());
            }
            valuesOfHours.get(index).add(item);
        }
        // Average for old values
        for (int index = 0; index < indices; index++) {
            List<CategoryValueListItem> valuesOfHour = valuesOfHours.get(index);
            CategoryValueListItem value = category.stackValues() ? CategoryListItemUtils.sum(category, valuesOfHour) : CategoryListItemUtils.avg(category, valuesOfHour);
            values.get(category)[index] = value;
        }
    }
    return values;
}
Also used : Measurement(com.faltenreich.diaguard.shared.data.database.entity.Measurement) Category(com.faltenreich.diaguard.shared.data.database.entity.Category) Meal(com.faltenreich.diaguard.shared.data.database.entity.Meal) FoodEaten(com.faltenreich.diaguard.shared.data.database.entity.FoodEaten) CategoryValueListItem(com.faltenreich.diaguard.feature.timeline.table.CategoryValueListItem) Insulin(com.faltenreich.diaguard.shared.data.database.entity.Insulin) Pressure(com.faltenreich.diaguard.shared.data.database.entity.Pressure) LinkedHashMap(java.util.LinkedHashMap) ArrayList(java.util.ArrayList) List(java.util.List)

Example 12 with Meal

use of com.faltenreich.diaguard.shared.data.database.entity.Meal in project Diaguard by Faltenreich.

the class CalculatorFragment method showResult.

// Values are normalized
private void showResult(String formula, String formulaContent, final float bloodSugar, final float meal, final float bolus, final float correction) {
    float insulin = bolus + correction;
    // Build AlertDialog
    AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(getContext());
    LayoutInflater inflater = getActivity().getLayoutInflater();
    final View viewPopup = inflater.inflate(R.layout.dialog_calculator_result, null);
    final ViewGroup infoLayout = viewPopup.findViewById(R.id.dialog_calculator_result_info);
    TextView textViewFormula = viewPopup.findViewById(R.id.dialog_calculator_result_formula);
    textViewFormula.setText(formula);
    TextView textViewFormulaContent = viewPopup.findViewById(R.id.dialog_calculator_result_formula_content);
    textViewFormulaContent.setText(formulaContent);
    // Handle negative insulin
    TextView textViewInfo = viewPopup.findViewById(R.id.textViewInfo);
    if (insulin <= 0) {
        // Advice skipping bolus
        viewPopup.findViewById(R.id.result).setVisibility(View.GONE);
        textViewInfo.setVisibility(View.VISIBLE);
        if (insulin < -1) {
            // Advice consuming carbohydrates
            textViewInfo.setText(String.format("%s %s", textViewInfo.getText().toString(), getString(R.string.bolus_no2)));
        }
    } else {
        viewPopup.findViewById(R.id.result).setVisibility(View.VISIBLE);
        textViewInfo.setVisibility(View.GONE);
    }
    TextView textViewValue = viewPopup.findViewById(R.id.textViewResult);
    textViewValue.setText(FloatUtils.parseFloat(insulin));
    TextView textViewUnit = viewPopup.findViewById(R.id.textViewUnit);
    textViewUnit.setText(PreferenceStore.getInstance().getUnitAcronym(Category.INSULIN));
    dialogBuilder.setView(viewPopup).setTitle(R.string.bolus).setNegativeButton(R.string.info, (dialog, id) -> {
    /* Set down below */
    }).setPositiveButton(R.string.store_values, (dialog, id) -> storeValues(bloodSugar, meal, bolus, correction)).setNeutralButton(R.string.back, (dialog, id) -> dialog.cancel());
    AlertDialog dialog = dialogBuilder.create();
    dialog.setCanceledOnTouchOutside(true);
    dialog.show();
    dialog.getButton(AlertDialog.BUTTON_NEGATIVE).setOnClickListener(view -> {
        infoLayout.setVisibility(View.VISIBLE);
        view.setEnabled(false);
    });
}
Also used : AlertDialog(android.app.AlertDialog) Bundle(android.os.Bundle) FloatUtils(com.faltenreich.diaguard.shared.data.primitive.FloatUtils) FoodSearchEvent(com.faltenreich.diaguard.shared.event.ui.FoodSearchEvent) MainButton(com.faltenreich.diaguard.feature.navigation.MainButton) NonNull(androidx.annotation.NonNull) PreferenceStore(com.faltenreich.diaguard.feature.preference.data.PreferenceStore) FoodSearchFragment(com.faltenreich.diaguard.feature.food.search.FoodSearchFragment) Meal(com.faltenreich.diaguard.shared.data.database.entity.Meal) ArrayList(java.util.ArrayList) FactorChangedEvent(com.faltenreich.diaguard.shared.event.preference.FactorChangedEvent) EntryAddedEvent(com.faltenreich.diaguard.shared.event.data.EntryAddedEvent) FragmentCalculatorBinding(com.faltenreich.diaguard.databinding.FragmentCalculatorBinding) ToolbarDescribing(com.faltenreich.diaguard.feature.navigation.ToolbarDescribing) Events(com.faltenreich.diaguard.shared.event.Events) Category(com.faltenreich.diaguard.shared.data.database.entity.Category) BloodSugar(com.faltenreich.diaguard.shared.data.database.entity.BloodSugar) View(android.view.View) Validator(com.faltenreich.diaguard.shared.data.validation.Validator) EntryEditFragment(com.faltenreich.diaguard.feature.entry.edit.EntryEditFragment) FoodEatenDao(com.faltenreich.diaguard.shared.data.database.dao.FoodEatenDao) FoodEaten(com.faltenreich.diaguard.shared.data.database.entity.FoodEaten) FoodInputView(com.faltenreich.diaguard.feature.food.input.FoodInputView) Insulin(com.faltenreich.diaguard.shared.data.database.entity.Insulin) BaseFragment(com.faltenreich.diaguard.shared.view.fragment.BaseFragment) EntryDao(com.faltenreich.diaguard.shared.data.database.dao.EntryDao) LayoutInflater(android.view.LayoutInflater) UnitChangedEvent(com.faltenreich.diaguard.shared.event.preference.UnitChangedEvent) DateTime(org.joda.time.DateTime) Entry(com.faltenreich.diaguard.shared.data.database.entity.Entry) StickyHintInputView(com.faltenreich.diaguard.shared.view.edittext.StickyHintInputView) MainButtonProperties(com.faltenreich.diaguard.feature.navigation.MainButtonProperties) BloodSugarPreferenceChangedEvent(com.faltenreich.diaguard.shared.event.preference.BloodSugarPreferenceChangedEvent) ThreadMode(org.greenrobot.eventbus.ThreadMode) ViewGroup(android.view.ViewGroup) AlertDialog(android.app.AlertDialog) R(com.faltenreich.diaguard.R) List(java.util.List) TextView(android.widget.TextView) Nullable(androidx.annotation.Nullable) Subscribe(org.greenrobot.eventbus.Subscribe) MeasurementDao(com.faltenreich.diaguard.shared.data.database.dao.MeasurementDao) ToolbarProperties(com.faltenreich.diaguard.feature.navigation.ToolbarProperties) MealFactorUnitChangedEvent(com.faltenreich.diaguard.shared.event.preference.MealFactorUnitChangedEvent) ViewGroup(android.view.ViewGroup) LayoutInflater(android.view.LayoutInflater) TextView(android.widget.TextView) View(android.view.View) FoodInputView(com.faltenreich.diaguard.feature.food.input.FoodInputView) StickyHintInputView(com.faltenreich.diaguard.shared.view.edittext.StickyHintInputView) TextView(android.widget.TextView)

Example 13 with Meal

use of com.faltenreich.diaguard.shared.data.database.entity.Meal in project Diaguard by Faltenreich.

the class CalculatorFragment method onCreate.

@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    meal = new Meal();
}
Also used : Meal(com.faltenreich.diaguard.shared.data.database.entity.Meal)

Aggregations

Meal (com.faltenreich.diaguard.shared.data.database.entity.Meal)13 FoodEaten (com.faltenreich.diaguard.shared.data.database.entity.FoodEaten)11 ArrayList (java.util.ArrayList)8 Category (com.faltenreich.diaguard.shared.data.database.entity.Category)6 Entry (com.faltenreich.diaguard.shared.data.database.entity.Entry)6 Measurement (com.faltenreich.diaguard.shared.data.database.entity.Measurement)6 EntryTag (com.faltenreich.diaguard.shared.data.database.entity.EntryTag)5 Insulin (com.faltenreich.diaguard.shared.data.database.entity.Insulin)5 BloodSugar (com.faltenreich.diaguard.shared.data.database.entity.BloodSugar)4 Tag (com.faltenreich.diaguard.shared.data.database.entity.Tag)4 DateTime (org.joda.time.DateTime)4 View (android.view.View)3 Pressure (com.faltenreich.diaguard.shared.data.database.entity.Pressure)3 List (java.util.List)3 ImageView (android.widget.ImageView)2 TextView (android.widget.TextView)2 Nullable (androidx.annotation.Nullable)2 FoodInputView (com.faltenreich.diaguard.feature.food.input.FoodInputView)2 Food (com.faltenreich.diaguard.shared.data.database.entity.Food)2 AlertDialog (android.app.AlertDialog)1