forked from Telodendria/Telodendria
Format source code, add .exrc
This commit is contained in:
parent
84f311ae09
commit
7544a97c7d
4 changed files with 30 additions and 20 deletions
2
.exrc
Normal file
2
.exrc
Normal file
|
@ -0,0 +1,2 @@
|
|||
set tabstop=4
|
||||
set expandtab
|
28
src/Db.c
28
src/Db.c
|
@ -407,10 +407,10 @@ DbLockFromArr(Db * db, Array * args)
|
|||
{
|
||||
db->leastRecent = ref->next;
|
||||
}
|
||||
else
|
||||
{
|
||||
ref->prev->next = ref->next;
|
||||
}
|
||||
else
|
||||
{
|
||||
ref->prev->next = ref->next;
|
||||
}
|
||||
|
||||
ref->prev = db->mostRecent;
|
||||
ref->next = NULL;
|
||||
|
@ -423,6 +423,9 @@ DbLockFromArr(Db * db, Array * args)
|
|||
}
|
||||
else
|
||||
{
|
||||
Array *name = ArrayCreate();
|
||||
size_t i;
|
||||
|
||||
/* Not in cache; load from disk */
|
||||
|
||||
ref = Malloc(sizeof(DbRef));
|
||||
|
@ -448,7 +451,12 @@ DbLockFromArr(Db * db, Array * args)
|
|||
|
||||
ref->ts = UtilServerTs();
|
||||
ref->size = DbComputeSize(ref->json);
|
||||
ref->name = ArrayDuplicate(args);
|
||||
|
||||
for (i = 0; i < ArraySize(args); i++)
|
||||
{
|
||||
ArrayAdd(name, UtilStringDuplicate(ArrayGet(args, i)));
|
||||
}
|
||||
ref->name = name;
|
||||
|
||||
HashMapSet(db->cache, hash, ref);
|
||||
db->cacheSize += ref->size;
|
||||
|
@ -512,7 +520,7 @@ DbCreate(Db * db, size_t nArgs,...)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
Free(dir);
|
||||
Free(dir);
|
||||
|
||||
fp = fopen(file, "w");
|
||||
Free(file);
|
||||
|
@ -564,10 +572,10 @@ DbUnlock(Db * db, DbRef * ref)
|
|||
|
||||
rewind(ref->fp);
|
||||
if (ftruncate(fileno(ref->fp), 0) < 0)
|
||||
{
|
||||
pthread_mutex_unlock(&db->lock);
|
||||
return 0;
|
||||
}
|
||||
{
|
||||
pthread_mutex_unlock(&db->lock);
|
||||
return 0;
|
||||
}
|
||||
|
||||
JsonEncode(ref->json, ref->fp);
|
||||
|
||||
|
|
|
@ -205,12 +205,12 @@ main(int argc, char **argv)
|
|||
goto finish;
|
||||
}
|
||||
|
||||
if (!configArg)
|
||||
{
|
||||
Log(lc, LOG_ERROR, "No configuration file specified.");
|
||||
exit = EXIT_FAILURE;
|
||||
goto finish;
|
||||
}
|
||||
if (!configArg)
|
||||
{
|
||||
Log(lc, LOG_ERROR, "No configuration file specified.");
|
||||
exit = EXIT_FAILURE;
|
||||
goto finish;
|
||||
}
|
||||
else if (strcmp(configArg, "-") == 0)
|
||||
{
|
||||
configFile = stdin;
|
||||
|
|
|
@ -235,10 +235,10 @@ UtilStringConcat(char *str1, char *str2)
|
|||
{
|
||||
strcpy(ret, str2);
|
||||
}
|
||||
else
|
||||
{
|
||||
strcpy(ret, "");
|
||||
}
|
||||
else
|
||||
{
|
||||
strcpy(ret, "");
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue