mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
The current way of tracking the need to update the metadata without propagation using a separate flag makes it difficult to track priorities between the local and remote tree. The logic is also difficult to logically cover since the possibilities matrix isn't 100% covered, leaving the flag only used in a few situations (mostly involving folders, but not only). The reason we need to change this is to be able to track the sync state of files for overlay icons. The instruction alone can't be used since CSYNC_INSTRUCTION_SYNC is used for folders even though they won't be propagated. Removing this logic is however not possible without using something else than CSYNC_INSTRUCTION_NONE since too many codepath interpret (rightfully) this as meaning "nothing to do". This patch adds a new CSYNC_INSTRUCTION_UPDATE_METADATA instruction to let the update and reconcile steps tell the SyncEngine to update the metadata of a file without any propagation. Other flags are left to be interpretted by the implementation as implicitly needing metadata update or not, as this was already the case for most file propagation jobs. For example, CSYNC_INSTRUCTION_NEW for directories now also implicitly update the metadata. Since it's not impossible for folders to emit CSYNC_INSTRUCTION_SYNC or CSYNC_INSTRUCTION_CONFLICT, the corresponding code paths in the sync engine have been removed. Since the reconcile step can now know if the local tree needs metadata update while the remote side might want propagation, the localMetadataUpdate logic in SyncEngine::treewalkFile now simply use a CSYNC_INSTRUCTION_UPDATE_METADATA for the local side, which is now implemented as a different database query.
214 lines
5.8 KiB
C
214 lines
5.8 KiB
C
/*
|
|
* libcsync -- a library to sync a directory with another
|
|
*
|
|
* Copyright (c) 2008-2013 by Andreas Schneider <asn@cryptomilk.org>
|
|
* Copyright (c) 2012-2013 by Klaas Freitag <freitag@owncloud.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "config_csync.h"
|
|
|
|
#ifndef _GNU_SOURCE
|
|
#define _GNU_SOURCE
|
|
#endif
|
|
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
#include <stdio.h>
|
|
|
|
#include "c_jhash.h"
|
|
#include "csync_util.h"
|
|
#include "vio/csync_vio.h"
|
|
|
|
#define CSYNC_LOG_CATEGORY_NAME "csync.util"
|
|
#include "csync_log.h"
|
|
#include "csync_statedb.h"
|
|
|
|
typedef struct {
|
|
const char *instr_str;
|
|
enum csync_instructions_e instr_code;
|
|
} _instr_code_struct;
|
|
|
|
static const _instr_code_struct _instr[] =
|
|
{
|
|
{ "INSTRUCTION_NONE", CSYNC_INSTRUCTION_NONE },
|
|
{ "INSTRUCTION_EVAL", CSYNC_INSTRUCTION_EVAL },
|
|
{ "INSTRUCTION_REMOVE", CSYNC_INSTRUCTION_REMOVE },
|
|
{ "INSTRUCTION_RENAME", CSYNC_INSTRUCTION_RENAME },
|
|
{ "INSTRUCTION_EVAL_RENAME", CSYNC_INSTRUCTION_EVAL_RENAME },
|
|
{ "INSTRUCTION_NEW", CSYNC_INSTRUCTION_NEW },
|
|
{ "INSTRUCTION_CONFLICT", CSYNC_INSTRUCTION_CONFLICT },
|
|
{ "INSTRUCTION_IGNORE", CSYNC_INSTRUCTION_IGNORE },
|
|
{ "INSTRUCTION_SYNC", CSYNC_INSTRUCTION_SYNC },
|
|
{ "INSTRUCTION_STAT_ERR", CSYNC_INSTRUCTION_STAT_ERROR },
|
|
{ "INSTRUCTION_ERROR", CSYNC_INSTRUCTION_ERROR },
|
|
{ "INSTRUCTION_TYPE_CHANGE", CSYNC_INSTRUCTION_TYPE_CHANGE },
|
|
{ "INSTRUCTION_UPDATE_METADATA", CSYNC_INSTRUCTION_UPDATE_METADATA },
|
|
{ NULL, CSYNC_INSTRUCTION_ERROR }
|
|
};
|
|
|
|
struct csync_memstat_s {
|
|
int size;
|
|
int resident;
|
|
int shared;
|
|
int trs;
|
|
int drs;
|
|
int lrs;
|
|
int dt;
|
|
};
|
|
|
|
const char *csync_instruction_str(enum csync_instructions_e instr)
|
|
{
|
|
int idx = 0;
|
|
|
|
while (_instr[idx].instr_str != NULL) {
|
|
if (_instr[idx].instr_code == instr) {
|
|
return _instr[idx].instr_str;
|
|
}
|
|
idx++;
|
|
}
|
|
|
|
return "ERROR!";
|
|
}
|
|
|
|
|
|
void csync_memstat_check(void) {
|
|
int s = 0;
|
|
struct csync_memstat_s m;
|
|
FILE* fp;
|
|
|
|
/* get process memory stats */
|
|
fp = fopen("/proc/self/statm","r");
|
|
if (fp == NULL) {
|
|
return;
|
|
}
|
|
s = fscanf(fp, "%d%d%d%d%d%d%d", &m.size, &m.resident, &m.shared, &m.trs,
|
|
&m.drs, &m.lrs, &m.dt);
|
|
fclose(fp);
|
|
if (s == EOF) {
|
|
return;
|
|
}
|
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_INFO, "Memory: %dK total size, %dK resident, %dK shared",
|
|
m.size * 4, m.resident * 4, m.shared * 4);
|
|
}
|
|
|
|
bool (*csync_file_locked_or_open_ext) (const char*) = 0; // filled in by library user
|
|
void set_csync_file_locked_or_open_ext(bool (*f) (const char*));
|
|
void set_csync_file_locked_or_open_ext(bool (*f) (const char*)) {
|
|
csync_file_locked_or_open_ext = f;
|
|
}
|
|
|
|
bool csync_file_locked_or_open( const char *dir, const char *fname) {
|
|
char *tmp_uri = NULL;
|
|
bool ret;
|
|
if (!csync_file_locked_or_open_ext) {
|
|
return false;
|
|
}
|
|
if (asprintf(&tmp_uri, "%s/%s", dir, fname) < 0) {
|
|
return -1;
|
|
}
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG, "csync_file_locked_or_open %s", tmp_uri);
|
|
ret = csync_file_locked_or_open_ext(tmp_uri);
|
|
SAFE_FREE(tmp_uri);
|
|
return ret;
|
|
}
|
|
|
|
#ifndef HAVE_TIMEGM
|
|
#ifdef _WIN32
|
|
static int is_leap(unsigned y) {
|
|
y += 1900;
|
|
return (y % 4) == 0 && ((y % 100) != 0 || (y % 400) == 0);
|
|
}
|
|
|
|
static time_t timegm(struct tm *tm) {
|
|
static const unsigned ndays[2][12] = {
|
|
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
|
|
{31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31} };
|
|
|
|
time_t res = 0;
|
|
int i;
|
|
|
|
for (i = 70; i < tm->tm_year; ++i)
|
|
res += is_leap(i) ? 366 : 365;
|
|
|
|
for (i = 0; i < tm->tm_mon; ++i)
|
|
res += ndays[is_leap(tm->tm_year)][i];
|
|
res += tm->tm_mday - 1;
|
|
res *= 24;
|
|
res += tm->tm_hour;
|
|
res *= 60;
|
|
res += tm->tm_min;
|
|
res *= 60;
|
|
res += tm->tm_sec;
|
|
return res;
|
|
}
|
|
#else
|
|
/* A hopefully portable version of timegm */
|
|
static time_t timegm(struct tm *tm ) {
|
|
time_t ret;
|
|
char *tz;
|
|
|
|
tz = getenv("TZ");
|
|
setenv("TZ", "", 1);
|
|
tzset();
|
|
ret = mktime(tm);
|
|
if (tz)
|
|
setenv("TZ", tz, 1);
|
|
else
|
|
unsetenv("TZ");
|
|
tzset();
|
|
return ret;
|
|
}
|
|
#endif /* Platform switch */
|
|
#endif /* HAVE_TIMEGM */
|
|
|
|
#define RFC1123_FORMAT "%3s, %02d %3s %4d %02d:%02d:%02d GMT"
|
|
static const char short_months[12][4] = {
|
|
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
|
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
|
|
};
|
|
/*
|
|
* This function is borrowed from libneon's ne_httpdate_parse.
|
|
* Unfortunately that one converts to local time but here UTC is
|
|
* needed.
|
|
* This one uses timegm instead, which returns UTC.
|
|
*/
|
|
time_t oc_httpdate_parse( const char *date ) {
|
|
struct tm gmt;
|
|
char wkday[4], mon[4];
|
|
int n;
|
|
time_t result = 0;
|
|
|
|
memset(&gmt, 0, sizeof(struct tm));
|
|
|
|
/* it goes: Sun, 06 Nov 1994 08:49:37 GMT */
|
|
n = sscanf(date, RFC1123_FORMAT,
|
|
wkday, &gmt.tm_mday, mon, &gmt.tm_year, &gmt.tm_hour,
|
|
&gmt.tm_min, &gmt.tm_sec);
|
|
/* Is it portable to check n==7 here? */
|
|
gmt.tm_year -= 1900;
|
|
for (n=0; n<12; n++)
|
|
if (strcmp(mon, short_months[n]) == 0)
|
|
break;
|
|
/* tm_mon comes out as 12 if the month is corrupt, which is desired,
|
|
* since the mktime will then fail */
|
|
gmt.tm_mon = n;
|
|
gmt.tm_isdst = -1;
|
|
result = timegm(&gmt);
|
|
return result;
|
|
}
|