#ifndef RECIPEDATABASE_H #define RECIPEDATABASE_H #include "database.h" #include "model/recipe/recipe.h" #include "utils/fileutils.h" using namespace std; /** * @brief The RecipeDatabase class represents the precise database used for the recipe storage, and is specialized. */ class RecipeDatabase : public Database { public: RecipeDatabase(string filename); //Stores a full recipe in the database. bool storeRecipe(Recipe recipe); //SQL Helper methods. //Storage. bool storeRecipeIngredient(RecipeIngredient ri, int recipeId); int storeIngredient(Ingredient ingredient); bool storeUnitOfMeasure(UnitOfMeasure u); bool storeInstruction(Instruction instruction, int recipeId); bool storeImage(QImage image, int recipeId); bool storeTags(vector tags, int recipeId); //Retrieval. Recipe retrieveRecipe(string name); vector retrieveAllRecipes(); vector retrieveRecipeIngredients(int recipeId); vector retrieveAllIngredients(); vector retrieveAllUnitsOfMeasure(); vector retrieveTags(int recipeId); vector retrieveAllTags(); //Deletion. bool deleteRecipe(string name); bool deleteRecipe(int recipeId); bool deleteIngredient(string name); bool deleteUnitOfMeasure(string name); bool deleteTag(RecipeTag tag); private: //Utility methods. void ensureTablesExist(); }; #endif // RECIPEDATABASE_H