Search in sources :

Example 6 with Meal

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

the class CsvExport method doInBackground.

@Override
protected File doInBackground(Void... params) {
    DateTime dateStart = config.getDateStart();
    DateTime dateEnd = config.getDateEnd();
    Category[] categories = config.getCategories();
    boolean isBackup = config.isBackup();
    File file = isBackup ? Export.getBackupFile(config, FileType.CSV) : Export.getExportFile(config);
    try {
        FileWriter fileWriter = new FileWriter(file);
        CSVWriter writer = new CSVWriter(fileWriter, CsvMeta.CSV_DELIMITER);
        if (isBackup) {
            // Meta information to detect the data scheme in future iterations
            String[] meta = new String[] { CsvMeta.CSV_KEY_META, Integer.toString(DatabaseHelper.getVersion()) };
            writer.writeNext(meta);
            List<Tag> tags = TagDao.getInstance().getAll();
            for (Tag tag : tags) {
                writer.writeNext(ArrayUtils.add(tag.getValuesForBackup(), 0, tag.getKeyForBackup()));
            }
            List<Food> foods = FoodDao.getInstance().getAllFromUser();
            for (Food food : foods) {
                writer.writeNext(ArrayUtils.add(food.getValuesForBackup(), 0, food.getKeyForBackup()));
            }
        }
        List<Entry> entries = dateStart != null && dateEnd != null ? EntryDao.getInstance().getEntriesBetween(dateStart, dateEnd) : EntryDao.getInstance().getAll();
        int position = 0;
        for (Entry entry : entries) {
            publishProgress(String.format(Locale.getDefault(), "%s %d/%d", config.getContext().getString(R.string.entry), position, entries.size()));
            writer.writeNext(isBackup ? ArrayUtils.add(entry.getValuesForBackup(), 0, entry.getKeyForBackup()) : entry.getValuesForExport());
            List<Measurement> measurements = categories != null ? EntryDao.getInstance().getMeasurements(entry, categories) : EntryDao.getInstance().getMeasurements(entry);
            for (Measurement measurement : measurements) {
                writer.writeNext(isBackup ? ArrayUtils.add(measurement.getValuesForBackup(), 0, measurement.getKeyForBackup()) : measurement.getValuesForExport());
                if (isBackup && measurement instanceof Meal) {
                    Meal meal = (Meal) measurement;
                    for (FoodEaten foodEaten : meal.getFoodEaten()) {
                        if (foodEaten.getMeal() != null && foodEaten.getFood() != null) {
                            writer.writeNext(ArrayUtils.add(foodEaten.getValuesForBackup(), 0, foodEaten.getKeyForBackup()));
                        }
                    }
                }
            }
            if (isBackup) {
                List<EntryTag> entryTags = EntryTagDao.getInstance().getAll(entry);
                for (EntryTag entryTag : entryTags) {
                    if (entryTag.getEntry() != null && entryTag.getTag() != null) {
                        writer.writeNext(ArrayUtils.add(entryTag.getValuesForBackup(), 0, entryTag.getKeyForBackup()));
                    }
                }
            }
            position++;
        }
        writer.close();
    } catch (IOException exception) {
        Log.e(TAG, exception.toString());
    }
    return file;
}
Also used : Measurement(com.faltenreich.diaguard.shared.data.database.entity.Measurement) Category(com.faltenreich.diaguard.shared.data.database.entity.Category) FileWriter(java.io.FileWriter) Meal(com.faltenreich.diaguard.shared.data.database.entity.Meal) EntryTag(com.faltenreich.diaguard.shared.data.database.entity.EntryTag) FoodEaten(com.faltenreich.diaguard.shared.data.database.entity.FoodEaten) CSVWriter(com.opencsv.CSVWriter) IOException(java.io.IOException) DateTime(org.joda.time.DateTime) Entry(com.faltenreich.diaguard.shared.data.database.entity.Entry) Tag(com.faltenreich.diaguard.shared.data.database.entity.Tag) EntryTag(com.faltenreich.diaguard.shared.data.database.entity.EntryTag) File(java.io.File) Food(com.faltenreich.diaguard.shared.data.database.entity.Food)

Example 7 with Meal

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

the class CsvImport method importFromVersion3_0.

@SuppressWarnings("ParameterCanBeLocal")
private void importFromVersion3_0(CSVReader reader, String[] nextLine) throws Exception {
    Entry lastEntry = null;
    Meal lastMeal = null;
    while ((nextLine = reader.readNext()) != null) {
        switch(nextLine[0]) {
            case Tag.BACKUP_KEY:
                if (nextLine.length >= 2) {
                    String tagName = nextLine[1];
                    if (TagDao.getInstance().getByName(tagName) == null) {
                        Tag tag = new Tag();
                        tag.setName(nextLine[1]);
                        TagDao.getInstance().createOrUpdate(tag);
                    }
                }
                break;
            case Food.BACKUP_KEY:
                if (nextLine.length >= 5) {
                    String foodName = nextLine[1];
                    Food food = FoodDao.getInstance().get(foodName);
                    if (food == null) {
                        food = new Food();
                        food.setName(foodName);
                        food.setBrand(nextLine[2]);
                        food.setIngredients(nextLine[3]);
                        food.setCarbohydrates(FloatUtils.parseNumber(nextLine[4]));
                        FoodDao.getInstance().createOrUpdate(food);
                    } else if (food.isDeleted()) {
                        // Reactivate previously deleted food that is being re-imported
                        food.setDeletedAt(null);
                        FoodDao.getInstance().createOrUpdate(food);
                    }
                }
                break;
            case Entry.BACKUP_KEY:
                lastMeal = null;
                if (nextLine.length >= 3) {
                    DateTime parsedDateTime = DateTimeFormat.forPattern(Export.BACKUP_DATE_FORMAT).parseDateTime(nextLine[1]);
                    DateStrategy dateStrategy = this.dateStrategy != null ? this.dateStrategy : defaultDateStrategy;
                    DateTime dateTime = dateStrategy.convertDate(parsedDateTime);
                    lastEntry = new Entry();
                    lastEntry.setDate(dateTime);
                    String note = nextLine[2];
                    lastEntry.setNote(note != null && note.length() > 0 ? note : null);
                    lastEntry = EntryDao.getInstance().createOrUpdate(lastEntry);
                    break;
                }
            case Measurement.BACKUP_KEY:
                if (lastEntry != null && nextLine.length >= 3) {
                    Category category = Helper.valueOf(Category.class, nextLine[1]);
                    if (category != null) {
                        try {
                            Measurement measurement = category.toClass().newInstance();
                            List<Float> valueList = new ArrayList<>();
                            for (int position = 2; position < nextLine.length; position++) {
                                String valueString = nextLine[position];
                                try {
                                    valueList.add(FloatUtils.parseNumber(valueString));
                                } catch (NumberFormatException exception) {
                                    Log.e(TAG, exception.toString());
                                }
                            }
                            float[] values = new float[valueList.size()];
                            for (int position = 0; position < valueList.size(); position++) {
                                values[position] = valueList.get(position);
                            }
                            measurement.setValues(values);
                            measurement.setEntry(lastEntry);
                            MeasurementDao.getInstance(category.toClass()).createOrUpdate(measurement);
                            if (measurement instanceof Meal) {
                                lastMeal = (Meal) measurement;
                            }
                        } catch (InstantiationException exception) {
                            Log.e(TAG, exception.toString());
                        } catch (IllegalAccessException exception) {
                            Log.e(TAG, exception.toString());
                        }
                    }
                }
                break;
            case EntryTag.BACKUP_KEY:
                if (lastEntry != null && nextLine.length >= 2) {
                    Tag tag = TagDao.getInstance().getByName(nextLine[1]);
                    if (tag != null) {
                        EntryTag entryTag = new EntryTag();
                        entryTag.setEntry(lastEntry);
                        entryTag.setTag(tag);
                        EntryTagDao.getInstance().createOrUpdate(entryTag);
                    }
                }
                break;
            case FoodEaten.BACKUP_KEY:
                if (lastMeal != null && nextLine.length >= 3) {
                    Food food = FoodDao.getInstance().get(nextLine[1]);
                    if (food != null) {
                        FoodEaten foodEaten = new FoodEaten();
                        foodEaten.setMeal(lastMeal);
                        foodEaten.setFood(food);
                        foodEaten.setAmountInGrams(FloatUtils.parseNumber(nextLine[2]));
                        FoodEatenDao.getInstance().createOrUpdate(foodEaten);
                    }
                }
                break;
        }
    }
}
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) EntryTag(com.faltenreich.diaguard.shared.data.database.entity.EntryTag) ArrayList(java.util.ArrayList) FoodEaten(com.faltenreich.diaguard.shared.data.database.entity.FoodEaten) DateStrategy(com.faltenreich.diaguard.feature.export.job.date.DateStrategy) OriginDateStrategy(com.faltenreich.diaguard.feature.export.job.date.OriginDateStrategy) DateTime(org.joda.time.DateTime) Entry(com.faltenreich.diaguard.shared.data.database.entity.Entry) Tag(com.faltenreich.diaguard.shared.data.database.entity.Tag) EntryTag(com.faltenreich.diaguard.shared.data.database.entity.EntryTag) Food(com.faltenreich.diaguard.shared.data.database.entity.Food)

Example 8 with Meal

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

the class LogFetchDataTask method getListItems.

private List<LogListItem> getListItems(DateTime startDate, boolean scrollingDown) {
    List<LogListItem> listItems = new ArrayList<>();
    DateTime date = startDate;
    boolean loadMore = true;
    while (loadMore) {
        List<Entry> entries = EntryDao.getInstance().getEntriesOfDay(date);
        for (Entry entry : entries) {
            List<Measurement> measurements = EntryDao.getInstance().getMeasurements(entry);
            entry.setMeasurementCache(measurements);
        }
        if (entries.size() > 0) {
            LogEntryListItem firstListItemEntryOfDay = null;
            for (int entryIndex = 0; entryIndex < entries.size(); entryIndex++) {
                Entry entry = entries.get(entryIndex);
                List<EntryTag> entryTags = EntryTagDao.getInstance().getAll(entry);
                List<FoodEaten> foodEaten = new ArrayList<>();
                for (Measurement measurement : entry.getMeasurementCache()) {
                    if (measurement instanceof Meal) {
                        foodEaten.addAll(FoodEatenDao.getInstance().getAll((Meal) measurement));
                    }
                }
                LogEntryListItem listItemEntry = new LogEntryListItem(entry, entryTags, foodEaten);
                if (entryIndex == 0) {
                    firstListItemEntryOfDay = listItemEntry;
                }
                listItemEntry.setFirstListItemEntryOfDay(firstListItemEntryOfDay);
                listItems.add(scrollingDown ? listItems.size() : entryIndex, listItemEntry);
            }
        } else {
            listItems.add(scrollingDown ? listItems.size() : 0, new LogEmptyListItem(date));
        }
        boolean isFirstDayOfMonth = date.dayOfMonth().get() == 1;
        if (isFirstDayOfMonth) {
            listItems.add(scrollingDown ? listItems.size() - 1 : 0, new LogMonthListItem(date));
        }
        loadMore = listItems.size() < (EndlessAdapter.BULK_SIZE);
        date = scrollingDown ? date.plusDays(1) : date.minusDays(1);
    }
    return listItems;
}
Also used : Measurement(com.faltenreich.diaguard.shared.data.database.entity.Measurement) LogEmptyListItem(com.faltenreich.diaguard.feature.log.empty.LogEmptyListItem) EntryTag(com.faltenreich.diaguard.shared.data.database.entity.EntryTag) Meal(com.faltenreich.diaguard.shared.data.database.entity.Meal) ArrayList(java.util.ArrayList) FoodEaten(com.faltenreich.diaguard.shared.data.database.entity.FoodEaten) LogMonthListItem(com.faltenreich.diaguard.feature.log.month.LogMonthListItem) DateTime(org.joda.time.DateTime) Entry(com.faltenreich.diaguard.shared.data.database.entity.Entry) LogEntryListItem(com.faltenreich.diaguard.feature.log.entry.LogEntryListItem)

Example 9 with Meal

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

the class PdfNoteFactory method createNote.

@Nullable
public static PdfNote createNote(PdfExportConfig config, Entry entry) {
    List<String> entryNotesAndTagsOfDay = new ArrayList<>();
    List<String> foodOfDay = new ArrayList<>();
    if (config.exportNotes() && !StringUtils.isBlank(entry.getNote())) {
        entryNotesAndTagsOfDay.add(entry.getNote());
    }
    if (config.exportTags()) {
        List<EntryTag> entryTags = EntryTagDao.getInstance().getAll(entry);
        for (EntryTag entryTag : entryTags) {
            Tag tag = entryTag.getTag();
            if (tag != null) {
                entryNotesAndTagsOfDay.add(entryTag.getTag().getName());
            }
        }
    }
    if (config.exportFood()) {
        Meal meal = (Meal) MeasurementDao.getInstance(Meal.class).getMeasurement(entry);
        if (meal != null) {
            for (FoodEaten foodEaten : FoodEatenDao.getInstance().getAll(meal)) {
                String foodNote = foodEaten.print();
                if (foodNote != null) {
                    foodOfDay.add(foodNote);
                }
            }
        }
    }
    boolean hasEntryNotesAndTags = !entryNotesAndTagsOfDay.isEmpty();
    boolean hasFood = !foodOfDay.isEmpty();
    if (hasEntryNotesAndTags || hasFood) {
        List<String> notes = new ArrayList<>();
        if (hasEntryNotesAndTags) {
            notes.add(TextUtils.join(", ", entryNotesAndTagsOfDay));
        }
        if (hasFood) {
            notes.add(TextUtils.join(", ", foodOfDay));
        }
        String note = TextUtils.join("\n", notes);
        return new PdfNote(entry.getDate(), note);
    }
    return null;
}
Also used : EntryTag(com.faltenreich.diaguard.shared.data.database.entity.EntryTag) Meal(com.faltenreich.diaguard.shared.data.database.entity.Meal) ArrayList(java.util.ArrayList) FoodEaten(com.faltenreich.diaguard.shared.data.database.entity.FoodEaten) Tag(com.faltenreich.diaguard.shared.data.database.entity.Tag) EntryTag(com.faltenreich.diaguard.shared.data.database.entity.EntryTag) Nullable(androidx.annotation.Nullable)

Example 10 with Meal

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

the class PdfLog method init.

private void init() {
    PdfExportConfig config = cache.getConfig();
    Context context = config.getContext();
    List<List<Cell>> data = new ArrayList<>();
    List<Cell> headerRow = new ArrayList<>();
    Cell headerCell = new CellBuilder(new Cell(cache.getFontBold())).setWidth(getLabelWidth()).setText(DateTimeUtils.toWeekDayAndDate(cache.getDateTime())).build();
    headerRow.add(headerCell);
    data.add(headerRow);
    for (Entry entry : entriesOfDay) {
        List<Measurement> measurements = EntryDao.getInstance().getMeasurements(entry, cache.getConfig().getCategories());
        entry.setMeasurementCache(measurements);
    }
    int rowIndex = 0;
    for (Entry entry : entriesOfDay) {
        int backgroundColor = rowIndex % 2 == 0 ? cache.getColorDivider() : Color.white;
        int oldSize = data.size();
        String time = entry.getDate().toString("HH:mm");
        for (Measurement measurement : entry.getMeasurementCache()) {
            Category category = measurement.getCategory();
            int textColor = Color.black;
            if (category == Category.BLOODSUGAR && config.highlightLimits()) {
                BloodSugar bloodSugar = (BloodSugar) measurement;
                float value = bloodSugar.getMgDl();
                if (value > PreferenceStore.getInstance().getLimitHyperglycemia()) {
                    textColor = cache.getColorHyperglycemia();
                } else if (value < PreferenceStore.getInstance().getLimitHypoglycemia()) {
                    textColor = cache.getColorHypoglycemia();
                }
            }
            String measurementText = measurement.print(context);
            if (category == Category.MEAL && config.exportFood()) {
                List<String> foodOfDay = new ArrayList<>();
                Meal meal = (Meal) MeasurementDao.getInstance(Meal.class).getMeasurement(entry);
                if (meal != null) {
                    for (FoodEaten foodEaten : FoodEatenDao.getInstance().getAll(meal)) {
                        String foodNote = foodEaten.print();
                        if (foodNote != null) {
                            foodOfDay.add(foodNote);
                        }
                    }
                }
                if (!foodOfDay.isEmpty()) {
                    String foodText = TextUtils.join(", ", foodOfDay);
                    measurementText = String.format("%s\n%s", measurementText, foodText);
                }
            }
            data.add(getRow(cache, data.size() == oldSize ? time : null, context.getString(category.getStringAcronymResId()), measurementText, backgroundColor, textColor));
        }
        if (config.exportTags()) {
            List<EntryTag> entryTags = EntryTagDao.getInstance().getAll(entry);
            if (!entryTags.isEmpty()) {
                List<String> tagNames = new ArrayList<>();
                for (EntryTag entryTag : entryTags) {
                    Tag tag = entryTag.getTag();
                    if (tag != null) {
                        String tagName = tag.getName();
                        if (!StringUtils.isBlank(tagName)) {
                            tagNames.add(tagName);
                        }
                    }
                }
                data.add(getRow(cache, data.size() == oldSize ? time : null, context.getString(R.string.tags), TextUtils.join(", ", tagNames), backgroundColor));
            }
        }
        if (config.exportNotes()) {
            if (!StringUtils.isBlank(entry.getNote())) {
                data.add(getRow(cache, data.size() == oldSize ? time : null, context.getString(R.string.note), entry.getNote(), backgroundColor));
            }
        }
        rowIndex++;
    }
    boolean hasData = data.size() > 1;
    if (!hasData) {
        data.add(CellFactory.createEmptyRow(cache));
    }
    try {
        table.setData(data);
    } catch (Exception exception) {
        Log.e(TAG, exception.toString());
    }
}
Also used : PdfExportConfig(com.faltenreich.diaguard.feature.export.job.pdf.meta.PdfExportConfig) Context(android.content.Context) 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) EntryTag(com.faltenreich.diaguard.shared.data.database.entity.EntryTag) ArrayList(java.util.ArrayList) FoodEaten(com.faltenreich.diaguard.shared.data.database.entity.FoodEaten) BloodSugar(com.faltenreich.diaguard.shared.data.database.entity.BloodSugar) Point(com.pdfjet.Point) Entry(com.faltenreich.diaguard.shared.data.database.entity.Entry) CellBuilder(com.faltenreich.diaguard.feature.export.job.pdf.view.CellBuilder) ArrayList(java.util.ArrayList) List(java.util.List) Tag(com.faltenreich.diaguard.shared.data.database.entity.Tag) EntryTag(com.faltenreich.diaguard.shared.data.database.entity.EntryTag) MultilineCell(com.faltenreich.diaguard.feature.export.job.pdf.view.MultilineCell) Cell(com.pdfjet.Cell)

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