aboutsummaryrefslogblamecommitdiffstats
path: root/src/dblayer.h
blob: 24fdc2becf1aedc34d8cd566af36870f893c80f0 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                

                                             

                                                                                
  

                                          
  
                                                                                
  


                                                                                




                    

                         









                                
               


                 
                                   
                    
                             




                                     

                                                         
                      
/* dblayer.h - Database layer for ck -----------------------------------*- C -*-
 *
 * This file is part of ck, the config keeper
 * 
 * -----------------------------------------------------------------------------
 *
 * Copyright (C) 2018  Anastasis Grammenos
 * GPLv3 (see LICENCE for the full notice)
 *
 * -----------------------------------------------------------------------------
 *
 * Give access to the database.
 *
 * -------------------------------------------------------------------------- */
#ifndef DBLAYER_H
#define DBLAYER_H

#include <sqlite3.h>

#include "actionparser.h"

typedef enum SqlErrors SqlError;
enum SqlErrors {
  SQL_NO_ERR = 0,
  SQL_ERR_NO_DB_FILE,
  SQL_ERR_NO_TABLES,
  SQL_ERR_SQLITE
};

typedef struct DBstruct DB;
struct DBstruct {
  sqlite3 *ptr;
  SqlError error;
};

extern int db_exists(UserOpt *opt);
extern DB open_DB();
extern void close_DB(DB *DB);

/* init */
extern void init_make_tables(DB *db);
extern DB init_make_DB();

/* add */
extern int add_insert_program_to_db(DB *db, char * name);
#endif /* DBLAEYR_H */