This commit is contained in:
LingZhaoHui 2022-07-09 22:48:56 +08:00
parent fb5d3a725e
commit a5551d371a
1 changed files with 12 additions and 4 deletions

View File

@ -28,13 +28,21 @@ int rmLoadRioWithLoading(migrateObj *mobj) {
return C_ERR;
}
long long lru_idle = -1, lfu_freq = -1, expiretime = -1, now = mstime();
// syncReadLine(mobj->source_cc->fd, buf, 4, mobj->timeout);
// buf[4] = '\0';
// serverLog(LL_NOTICE, "buf:%s", buf);
// type = atoi(buf);
// serverLog(LL_NOTICE, "type:%d", type);
char type_buf[1];
while (1) {
sds key;
robj *val;
if ((type = rmLoadType(mobj)) == -1) {
if (read(mobj->source_cc->fd, &type_buf, 4) == 0) {
serverLog(LL_WARNING, "read type failed");
return C_ERR;
}
int type = type_buf[0] & 0xff;
serverLog(LL_NOTICE, "type: %d", type);
if (type == RDB_OPCODE_EXPIRETIME) {
@ -244,7 +252,7 @@ uint64_t rmLoadLen(migrateObj *mobj, int *isencoded) {
int rmLoadType(migrateObj *mobj) {
unsigned char type;
if (rmRead(mobj, &type, 1) == -1) {
if (rmRead(mobj, &type, 1) == 0) {
return -1;
}
@ -253,9 +261,9 @@ int rmLoadType(migrateObj *mobj) {
int rmRead(migrateObj *mobj, void *buf, size_t len) {
if (read(mobj->source_cc->fd, &buf, len) == 0) {
return -1;
return 0;
}
// buf = (char*)buf + len;
buf = (char*)buf + len;
return 1;
}