BaseArchitectural.dart 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. import 'package:flutter/material.dart';
  2. import 'package:sqflite/sqflite.dart';
  3. import 'SqfliteDataBase.dart';
  4. abstract class BaseService extends ChangeNotifier {
  5. BaseService(BuildContext context) {
  6. init(context);
  7. }
  8. void init(BuildContext context) {}
  9. }
  10. abstract class BaseModel extends ChangeNotifier {
  11. BaseModel(BuildContext context) {
  12. init(context);
  13. asyncInit(context);
  14. }
  15. void init(BuildContext context) {}
  16. Future<void> asyncInit(BuildContext context) async {}
  17. void refresh() {
  18. notifyListeners();
  19. }
  20. }
  21. /* demo mapper
  22. class {ENTITY_NAME}Mapper extends CommonMapper<{ENTITY_NAME}> {
  23. {ENTITY_NAME}Mapper._() : super({ENTITY_NAME}());
  24. static {ENTITY_NAME}Mapper _instance = {ENTITY_NAME}Mapper._();
  25. factory {ENTITY_NAME}Mapper() {
  26. return _instance;
  27. }
  28. }
  29. */
  30. abstract class CommonMapper<T extends dynamic> {
  31. dynamic _currentTypeInstance;
  32. CommonMapper(dynamic entityI) {
  33. _currentTypeInstance = entityI;
  34. }
  35. // Batch batch;
  36. //
  37. // void startBatch() {
  38. // if (batch == null) {
  39. // batch = SqfliteDataBase.getInstance().batch();
  40. // }
  41. // else {
  42. // throw "already started a batch";
  43. // }
  44. // }
  45. //
  46. // Future<void> commitBatch() async {
  47. // if (batch == null) {
  48. // throw "there is no batch exist";
  49. // }
  50. // else {
  51. // List list = await batch.commit();
  52. // batch = null;
  53. // debugPrint(list.toString());
  54. // }
  55. // }
  56. // C
  57. Future<bool> insert(T entity) async {
  58. try {
  59. Database database = SqfliteDataBase.getInstance();
  60. await database.insert(_currentTypeInstance.tableName, entity.value);
  61. debugPrint("[CommonMapper] insert: ${entity.toString()}");
  62. return true;
  63. } catch (e) {
  64. debugPrint("[CommonMapper] insert fail ${e.toString()}");
  65. return false;
  66. }
  67. }
  68. // R
  69. Future<List<T>> selectAll({int limit, String orderBy}) async {
  70. try {
  71. Database database = SqfliteDataBase.getInstance();
  72. List<Map<String, dynamic>> dbResult = await database.query(
  73. _currentTypeInstance.tableName,
  74. limit: limit,
  75. orderBy: orderBy,
  76. );
  77. debugPrint(
  78. "[CommonMapper] selectAll result: ${dbResult.length.toString()}");
  79. return _currentTypeInstance.resultAsList(dbResult);
  80. } catch (e) {
  81. debugPrint("[CommonMapper] selectAll fail ${e.toString()}");
  82. return null;
  83. }
  84. }
  85. Future<List<T>> selectWhere(String where,
  86. {int limit, String orderBy}) async {
  87. try {
  88. Database database = SqfliteDataBase.getInstance();
  89. List<Map<String, dynamic>> dbResult = await database.query(
  90. _currentTypeInstance.tableName,
  91. limit: limit,
  92. orderBy: orderBy,
  93. where: where,
  94. );
  95. debugPrint("[CommonMapper] selectWhere result: ${dbResult.length.toString()}");
  96. return _currentTypeInstance.resultAsList(dbResult);
  97. } catch (e) {
  98. debugPrint("[CommonMapper] selectWhere fail ${e.toString()}");
  99. return null;
  100. }
  101. }
  102. Future<List<T>> selectMatchBy(dynamic entity,
  103. {int limit, String orderBy}) async {
  104. try {
  105. Database database = SqfliteDataBase.getInstance();
  106. String matches = "";
  107. entity.value.forEach((key, value) {
  108. if (value != null) {
  109. matches += "$key = '${value.toString()}' AND ";
  110. }
  111. });
  112. if (matches.endsWith("AND ")) {
  113. matches = matches.substring(0, matches.length - 4);
  114. }
  115. List<Map<String, dynamic>> dbResult = await database.query(
  116. _currentTypeInstance.tableName,
  117. where: matches,
  118. limit: limit,
  119. orderBy: orderBy,
  120. );
  121. debugPrint(
  122. "[CommonMapper] selectMatchBy result: ${dbResult.length.toString()}");
  123. return _currentTypeInstance.resultAsList(dbResult);
  124. } catch (e) {
  125. debugPrint("[CommonMapper] selectMatchBy fail ${e.toString()}");
  126. return null;
  127. }
  128. }
  129. // U
  130. // Future<bool> updateByFirstKey(T entity) async {
  131. // try {
  132. // Database database = SqfliteDataBase.getInstance();
  133. // await database.update(currentTypeInstance.tableName, entity.value,
  134. // where:
  135. // "${entity.value.keys.elementAt(0)} = '${entity.value.values.elementAt(0)}'");
  136. // debugPrint("[CommonMapper] update: ${entity.toString()}");
  137. // return true;
  138. // } catch (e) {
  139. // debugPrint("[CommonMapper] update fail ${e.toString()}");
  140. // return false;
  141. // }
  142. // }
  143. Future<bool> updateByFirstKeySelective(T entity) async {
  144. try {
  145. Database database = SqfliteDataBase.getInstance();
  146. entity.value.removeWhere((_, value) {
  147. return value == null;
  148. });
  149. await database.update(_currentTypeInstance.tableName, entity.value,
  150. where:
  151. "${entity.value.keys.elementAt(0)} = '${entity.value.values.elementAt(0)}'");
  152. debugPrint("[CommonMapper] update where: ${entity.toString()}");
  153. return true;
  154. } catch (e) {
  155. debugPrint("[CommonMapper] update fail ${e.toString()}");
  156. return false;
  157. }
  158. }
  159. // D
  160. Future<int> delete(T entity) async {
  161. Database database = SqfliteDataBase.getInstance();
  162. String matches = "";
  163. entity.value.forEach((key, value) {
  164. if (value != null) {
  165. matches += "$key = '${value.toString()}' AND ";
  166. }
  167. });
  168. if (matches.endsWith("AND ")) {
  169. matches = matches.substring(0, matches.length - 4);
  170. }
  171. int count =
  172. await database.delete(_currentTypeInstance.tableName, where: matches);
  173. debugPrint("[CommonMapper] delete $count row");
  174. return count;
  175. }
  176. }