// database.dart
import"package:dict_reader/dict_reader.dart";import"package:drift/drift.dart";import"package:drift/native.dart";import"dart:io";part'database.g.dart';@TableIndex(name:'idx_keyText',columns:{#keyText})classDictionaryextendsTable{TextColumngetkeyText=>text()();IntColumngetrecordBlockOffset=>integer()();IntColumngetstartOffset=>integer()();IntColumngetendOffset=>integer()();IntColumngetcompressedSize=>integer()();}@DriftDatabase(tables:[Dictionary])classAppDatabaseextends_$AppDatabase{// After generating code, this class needs to define a `schemaVersion` getter
// and a constructor telling drift where the database should be stored.
// These are described in the getting started guide: https://drift.simonbinder.eu/getting-started/#open
AppDatabase():super(_openConnection());@overrideintgetschemaVersion=>1;Future<void>insertUsers(List<DictionaryCompanion>dictionary)async{awaitbatch((batch){batch.insertAll(this.dictionary,dictionary);});}Future<List<DictionaryData>>searchWord(Stringword){return(select(dictionary)..where((u)=>u.keyText.like('$word%'))).get();}staticQueryExecutor_openConnection(){returnNativeDatabase(File('dictionary.db'));}}voidmain()async{finaldatabase=AppDatabase();finaldictReader=DictReader("MDX FILE PATH");// 不用获取 keyText 和 offset 存入数据库时,可以传入 false 参数
awaitdictReader.init();// 将 keyText 和 offset 存入数据库,只需一次
varqueue=<DictionaryCompanion>[];awaitfor(final(keyText,(recordBlockOffset,startOffset,endOffset,compressedSize))indictReader.read()){queue.add(DictionaryCompanion(keyText:Value(keyText),recordBlockOffset:Value(recordBlockOffset),startOffset:Value(startOffset),endOffset:Value(endOffset),compressedSize:Value(compressedSize)));}awaitdatabase.insertUsers(queue);// 通过数据库搜索单词
finalresult=(awaitdatabase.searchWord("go"))[0];// 获取单词数据
print(awaitdictReader.readOne(result.recordBlockOffset,result.startOffset,result.endOffset,result.compressedSize));awaitdatabase.close();}