Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/tools/perf/util/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  fncache.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-only
/* Manage a cache of file names' existence */
#include <pthread.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <linux/compiler.h>
#include "fncache.h"
#include "hashmap.h"

static struct hashmap *fncache;

static size_t fncache__hash(long key, void *ctx __maybe_unused)
{
 return str_hash((const char *)key);
}

static bool fncache__equal(long key1, long key2, void *ctx __maybe_unused)
{
 return strcmp((const char *)key1, (const char *)key2) == 0;
}

static void fncache__init(void)
{
 fncache = hashmap__new(fncache__hash, fncache__equal, /*ctx=*/NULL);
}

static struct hashmap *fncache__get(void)
{
 static pthread_once_t fncache_once = PTHREAD_ONCE_INIT;

 pthread_once(&fncache_once, fncache__init);

 return fncache;
}

static bool lookup_fncache(const char *name, bool *res)
{
 long val;

 if (!hashmap__find(fncache__get(), name, &val))
  return false;

 *res = (val != 0);
 return true;
}

static void update_fncache(const char *name, bool res)
{
 char *old_key = NULL, *key = strdup(name);

 if (key) {
  hashmap__set(fncache__get(), key, res, &old_key, /*old_value*/NULL);
  free(old_key);
 }
}

/* No LRU, only use when bounded in some other way. */
bool file_available(const char *name)
{
 bool res;

 if (lookup_fncache(name, &res))
  return res;
 res = access(name, R_OK) == 0;
 update_fncache(name, res);
 return res;
}

Messung V0.5
C=89 H=94 G=91

¤ Dauer der Verarbeitung: 0.2 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.