Skip to content

Commit

Permalink
Update chunkSync to master on splash
Browse files Browse the repository at this point in the history
  • Loading branch information
TaYaKi71751 committed Dec 6, 2023
1 parent a653e98 commit 5ae7b13
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/pages/splash/splash_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ class _SplashPageState extends State<SplashPage> {
if (connectivityResult != ConnectivityResult.none) {
try {
_changeMessage('check sync...');
await SyncManager.checkSync();
await SyncManager.checkSyncLatest();

if (!SyncManager.firstSync && SyncManager.chunkRequire) {
setState(() {
Expand Down
79 changes: 78 additions & 1 deletion lib/version/sync.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,89 @@ class SyncManager {
static const ignoreUserAcceptThreshold = 1024 * 1024 * 10; // 10MB
static List<SyncInfoRecord>? _rows;
static int requestSize = 0;

static Future<void> checkSyncLatest() async {
try {
var ls = const LineSplitter();
var infoRaw = (await http.get(syncInfoURL('master'))).body;
var lines = ls.convert(infoRaw);

final prefs = await SharedPreferences.getInstance();
var latest = prefs.getInt('synclatest');
var lastDB = prefs.getString('databasesync');

if (latest == null) {
syncRequire = firstSync = true;
latest = 0;
} else if (lastDB != null &&
DateTime.now().difference(DateTime.parse(lastDB)).inDays > 7) {
syncRequire = true;
}

// lines: [old ... latest]
// _rows: [latest ... old]
_rows = [];

/*
syncversion은
...
chunk 1640992742 https://github.com/violet-dev/chunk/releases/download/1640992742/data-637765895426855402.json 31519
db 1640997991 https://github.com/violet-dev/db/releases/download/2022.01.01/rawdata
chunk 1640998430 https://github.com/violet-dev/chunk/releases/download/1640998430/data-637765952304854006.json 47546
chunk 1640998430 https://github.com/violet-dev/chunk/releases/download/1640998430/data-637765952304854006.db 45056
chunk 1641003001 https://github.com/violet-dev/chunk/releases/download/1641003001/data-637765998015030026.json 30911
chunk 1641003001 https://github.com/violet-dev/chunk/releases/download/1641003001/data-637765998015030026.db 32768
...
와 같은 형식으로 아래쪽이 항상 최신 청크다. 따라서 reversed 탐색을 시도한다.
*/
for (var element in lines.reversed) {
if (element.startsWith('#')) continue;

var split = element.split(' ');
var type = split[0];
var timestamp = int.parse(split[1]);
var url = split[2];
var size = 0;
if (type == 'chunk') size = int.parse(split[3]);

// We require only json files when synchronize with chunk.
if (type == 'chunk' && !url.endsWith('.json')) continue;

//
// 마지막으로 동기화한 시간보다 작은 경우 해당 청크는 무시한다.
//
if (type == 'chunk' && timestamp <= latest) continue;

requestSize += size;
_rows!.add(SyncInfoRecord(
type: type,
timestamp: timestamp,
url: url,
size: size,
));
}

/*
너무 많은 청크를 다운로드해야하는 경우 동기화를 추천한다.
그 이유는 다운로드해야하는 파일이 너무 많아지기 때문이며,
또한 데이터베이스의 무결성이 훼손될 가능성이 있기 때문이다.
*/
if (requestSize > ignoreUserAcceptThreshold) syncRequire = true;
if (_rows!.any((element) => element.type == 'chunk')) chunkRequire = true;
} catch (e, st) {
Logger.error('[Sync-check] E: $e\n'
'$st');
}
}


static Future<void> checkSync() async {
for(int i = 0;i < 100;i++){
try {
var ls = const LineSplitter();
var infoRaw = (await http.get(syncInfoURL('master~'+i.toString()))).body;
var infoRaw = (await http.get(syncInfoURL('d2bd5ae068efb26eb4689e5d6281a590e59fc4e2'))).body;
var lines = ls.convert(infoRaw);

final prefs = await SharedPreferences.getInstance();
Expand Down

0 comments on commit 5ae7b13

Please sign in to comment.