notes/lib/savesystem/note_file.dart

72 lines
1.8 KiB
Dart
Raw Normal View History

import 'dart:io';
2022-11-03 10:22:38 +00:00
import 'package:flutter/widgets.dart';
2022-10-29 18:06:20 +00:00
import 'package:sqflite/sqflite.dart';
import 'path.dart';
2022-10-29 18:06:20 +00:00
class NoteFile {
late Database _db;
String filename;
late String _basePath;
String? _newFileName;
2022-10-29 18:06:20 +00:00
Database db() {
return _db;
}
NoteFile(this.filename);
2022-10-29 18:06:20 +00:00
Future<void> init() async {
_basePath = (await getSavePath()).path;
final path = _basePath + Platform.pathSeparator + filename;
2022-10-29 18:06:20 +00:00
_db = await openDatabase(
path,
onCreate: (db, version) async {
2022-11-03 10:22:38 +00:00
final batch = db.batch();
batch.execute('DROP TABLE IF EXISTS strokes;');
batch.execute('DROP TABLE IF EXISTS points;');
batch.execute(
'CREATE TABLE strokes(id integer primary key autoincrement, color INTEGER, elevation INTEGER)');
batch.execute(
'CREATE TABLE points(id integer primary key autoincrement, x INTEGER, y INTEGER, thickness REAL, strokeid INTEGER)');
await batch.commit();
return;
2022-10-29 18:06:20 +00:00
},
// Set the version. This executes the onCreate function and provides a
// path to perform database upgrades and downgrades.
version: 1,
);
}
Future<void> delete() async {
await close();
await File(_basePath + Platform.pathSeparator + filename).delete();
}
void rename(String newname) {
_newFileName = newname;
2022-10-29 18:06:20 +00:00
}
Future<void> close() async {
// shrink the db file size
2022-11-03 10:22:38 +00:00
if (_db.isOpen) {
await _db.execute('VACUUM');
await _db.close();
} else {
debugPrint('db file unexpectedly closed before shrinking');
}
// perform qued file renaming operations
if (_newFileName != null) {
File(_basePath + Platform.pathSeparator + filename)
.rename(_basePath + Platform.pathSeparator + _newFileName!);
filename = _newFileName!;
_newFileName = null;
}
2022-10-29 18:06:20 +00:00
}
}