2016-05-25 17:25:20 +02:00
|
|
|
package net.foucry.pilldroid;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.database.sqlite.SQLiteDatabase;
|
|
|
|
import android.database.sqlite.SQLiteException;
|
|
|
|
import android.database.sqlite.SQLiteOpenHelper;
|
|
|
|
import android.util.Log;
|
|
|
|
|
2016-08-29 22:01:03 +02:00
|
|
|
import java.io.File;
|
2016-05-25 17:25:20 +02:00
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.OutputStream;
|
|
|
|
|
2020-06-18 20:52:37 +02:00
|
|
|
|
2016-05-25 17:25:20 +02:00
|
|
|
/**
|
|
|
|
* Created by jfoucry on 5/25/16.
|
|
|
|
*/
|
2016-11-08 12:10:27 +01:00
|
|
|
class DBMedoc extends SQLiteOpenHelper{
|
2016-05-25 17:25:20 +02:00
|
|
|
|
|
|
|
private static final int DATABASE_VERSION = 1;
|
|
|
|
|
2016-08-30 23:54:23 +02:00
|
|
|
private static String dbName = "medicaments.db";
|
2016-05-25 17:25:20 +02:00
|
|
|
private final Context myContext;
|
2020-06-18 20:52:37 +02:00
|
|
|
private SQLiteDatabase myDataBase;
|
2016-05-25 17:25:20 +02:00
|
|
|
|
|
|
|
private static final String TABLE_NAME = "medicaments";
|
|
|
|
private static final String MEDOC_CIS = "cis";
|
|
|
|
private static final String MEDOC_CIP13 = "cip13";
|
|
|
|
private static final String MEDOC_ADMIN = "mode_administration";
|
|
|
|
private static final String MEDOC_NOM = "nom";
|
|
|
|
private static final String MEDOC_PRES = "presentation";
|
|
|
|
|
2016-06-10 21:15:50 +02:00
|
|
|
private static final String[] COLUMNS_NAMES = {MEDOC_CIS, MEDOC_CIP13, MEDOC_ADMIN, MEDOC_NOM, MEDOC_PRES};
|
2016-05-25 17:25:20 +02:00
|
|
|
|
2016-08-10 21:03:28 +02:00
|
|
|
private static final String TAG = DBMedoc.class.getName();
|
|
|
|
|
2020-06-18 20:52:37 +02:00
|
|
|
|
2016-11-08 12:10:27 +01:00
|
|
|
DBMedoc(Context context) {
|
2016-08-29 22:01:03 +02:00
|
|
|
super(context, dbName, null, DATABASE_VERSION);
|
2016-05-25 17:25:20 +02:00
|
|
|
this.myContext = context;
|
|
|
|
}
|
|
|
|
|
2016-08-29 22:01:03 +02:00
|
|
|
@Override
|
|
|
|
public synchronized SQLiteDatabase getWritableDatabase() {
|
2020-06-18 20:52:37 +02:00
|
|
|
|
|
|
|
File dbFile = myContext.getDatabasePath(dbName);
|
|
|
|
|
2016-08-29 22:01:03 +02:00
|
|
|
if (!dbFile.exists()) {
|
|
|
|
SQLiteDatabase db = super.getWritableDatabase();
|
2020-06-18 20:52:37 +02:00
|
|
|
copyDatabase(dbFile.getPath());
|
2016-05-25 17:25:20 +02:00
|
|
|
}
|
|
|
|
|
2016-08-29 22:01:03 +02:00
|
|
|
return super.getWritableDatabase();
|
|
|
|
}
|
2016-05-25 17:25:20 +02:00
|
|
|
|
2016-08-29 22:01:03 +02:00
|
|
|
@Override
|
|
|
|
public synchronized SQLiteDatabase getReadableDatabase() {
|
2020-06-18 20:52:37 +02:00
|
|
|
File dbFile = myContext.getDatabasePath(dbName);
|
|
|
|
|
2020-04-24 21:19:32 +02:00
|
|
|
if (dbFile.exists()) return super.getReadableDatabase();
|
2020-06-18 20:52:37 +02:00
|
|
|
|
2020-04-24 21:19:32 +02:00
|
|
|
SQLiteDatabase db = super.getReadableDatabase();
|
2020-06-18 20:52:37 +02:00
|
|
|
copyDatabase(dbFile.getPath());
|
2016-08-29 22:01:03 +02:00
|
|
|
return super.getReadableDatabase();
|
2016-05-25 17:25:20 +02:00
|
|
|
}
|
|
|
|
|
2016-08-29 22:01:03 +02:00
|
|
|
@Override
|
|
|
|
public void onCreate(SQLiteDatabase db) {}
|
2016-05-25 17:25:20 +02:00
|
|
|
|
2016-08-29 22:01:03 +02:00
|
|
|
@Override
|
|
|
|
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {}
|
2016-05-25 17:25:20 +02:00
|
|
|
|
2016-08-29 22:01:03 +02:00
|
|
|
private void copyDatabase(String dbPath) {
|
2020-06-18 20:52:37 +02:00
|
|
|
Log.d(TAG, "try to copy database");
|
2016-08-29 22:01:03 +02:00
|
|
|
try {
|
2016-08-30 23:54:23 +02:00
|
|
|
InputStream assetDB = myContext.getAssets().open(dbName);
|
2016-08-29 22:01:03 +02:00
|
|
|
OutputStream appDB = new FileOutputStream(dbPath, false);
|
2016-05-25 17:25:20 +02:00
|
|
|
|
2016-08-29 22:01:03 +02:00
|
|
|
byte[] buffer = new byte[1024];
|
|
|
|
int length;
|
2016-08-30 23:54:23 +02:00
|
|
|
while ((length = assetDB.read(buffer)) > 0) {
|
2016-08-29 22:01:03 +02:00
|
|
|
appDB.write(buffer,0, length);
|
|
|
|
}
|
2016-05-25 17:25:20 +02:00
|
|
|
|
2016-08-29 22:01:03 +02:00
|
|
|
appDB.flush();
|
|
|
|
appDB.close();
|
2016-08-30 23:54:23 +02:00
|
|
|
assetDB.close();
|
2016-08-29 22:01:03 +02:00
|
|
|
} catch (IOException e) {
|
|
|
|
e.printStackTrace();
|
2016-05-25 17:25:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-08 12:10:27 +01:00
|
|
|
void openDatabase() throws SQLiteException {
|
2016-08-10 21:03:28 +02:00
|
|
|
Log.e(TAG, "openDatabase called");
|
2020-06-18 20:52:37 +02:00
|
|
|
String myPath = myContext.getDatabasePath(dbName).getPath();
|
2016-05-25 17:25:20 +02:00
|
|
|
|
|
|
|
myDataBase = SQLiteDatabase.openDatabase(myPath, null, SQLiteDatabase.OPEN_READONLY);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public synchronized void close() {
|
|
|
|
if (myDataBase != null) {
|
|
|
|
myDataBase.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-08 12:10:27 +01:00
|
|
|
/**
|
|
|
|
* Lookup in the DB for a record corresponding to cpi1
|
|
|
|
* @param cip13 string representing the object we're looking for
|
2020-06-18 20:52:37 +02:00
|
|
|
* @return return a medicament object
|
2016-11-08 12:10:27 +01:00
|
|
|
*/
|
|
|
|
Medicament getMedocByCIP13(String cip13) {
|
2020-06-18 20:52:37 +02:00
|
|
|
Log.e(TAG, "CIP13 - " + cip13);
|
2016-05-25 17:25:20 +02:00
|
|
|
|
|
|
|
SQLiteDatabase db = this.getReadableDatabase();
|
|
|
|
|
|
|
|
// Build query
|
|
|
|
Cursor cursor = db.query(TABLE_NAME, // Which table
|
|
|
|
COLUMNS_NAMES, // column names
|
2016-11-08 12:10:27 +01:00
|
|
|
" cip13 =?", // selections
|
|
|
|
new String[]{cip13}, // selections args
|
2016-05-25 17:25:20 +02:00
|
|
|
null, // group by
|
|
|
|
null, // having
|
|
|
|
null, // order by
|
|
|
|
null); // limits
|
|
|
|
|
|
|
|
if (cursor != null)
|
|
|
|
cursor.moveToFirst();
|
|
|
|
|
|
|
|
// Build medicament object
|
|
|
|
Medicament medicament = new Medicament();
|
2016-06-10 21:15:50 +02:00
|
|
|
// medicament.setId(Integer.parseInt(cursor.getString(0)));
|
2016-08-29 22:01:03 +02:00
|
|
|
assert cursor != null;
|
2016-06-10 21:15:50 +02:00
|
|
|
medicament.setCis(cursor.getString(0));
|
|
|
|
medicament.setCip13(cursor.getString(1));
|
|
|
|
medicament.setMode_administration(cursor.getString(2));
|
2016-05-25 17:25:20 +02:00
|
|
|
medicament.setNom(cursor.getString(3));
|
2016-06-10 21:15:50 +02:00
|
|
|
medicament.setPresentation(cursor.getString(4));
|
|
|
|
/*medicament.setStock(Double.parseDouble(cursor.getString(5)));
|
|
|
|
medicament.setPrise(Double.parseDouble(cursor.getString(6)));
|
|
|
|
medicament.setWarnThreshold(Integer.parseInt(cursor.getString(7)));
|
|
|
|
medicament.setAlertThreshold(Integer.parseInt(cursor.getString(8)));*/
|
|
|
|
|
|
|
|
// Set default values
|
|
|
|
medicament.setStock(0);
|
|
|
|
medicament.setPrise(0);
|
|
|
|
medicament.setWarnThreshold(14);
|
|
|
|
medicament.setAlertThreshold(7);
|
2016-05-25 17:25:20 +02:00
|
|
|
|
|
|
|
// Log
|
2016-08-10 21:03:28 +02:00
|
|
|
Log.d(TAG, "getDrug(" + cip13 + ")" + medicament.toString());
|
2016-05-25 17:25:20 +02:00
|
|
|
|
|
|
|
// Return medicament
|
|
|
|
|
2016-08-29 22:01:03 +02:00
|
|
|
cursor.close();
|
2016-05-25 17:25:20 +02:00
|
|
|
return medicament;
|
|
|
|
}
|
|
|
|
}
|