xrootd
Main Page
Namespaces
Classes
Files
File List
File Members
src
XrdFfs
XrdFfsDent.hh
Go to the documentation of this file.
1
/******************************************************************************/
2
/* XrdFfsDent.hh help functions to merge direntries */
3
/* */
4
/* (c) 2010 by the Board of Trustees of the Leland Stanford, Jr., University */
5
/* All Rights Reserved */
6
/* Author: Wei Yang (SLAC National Accelerator Laboratory, 2009) */
7
/* Contract DE-AC02-76-SFO0515 with the Department of Energy */
8
/* */
9
/* This file is part of the XRootD software suite. */
10
/* */
11
/* XRootD is free software: you can redistribute it and/or modify it under */
12
/* the terms of the GNU Lesser General Public License as published by the */
13
/* Free Software Foundation, either version 3 of the License, or (at your */
14
/* option) any later version. */
15
/* */
16
/* XRootD is distributed in the hope that it will be useful, but WITHOUT */
17
/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
18
/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
19
/* License for more details. */
20
/* */
21
/* You should have received a copy of the GNU Lesser General Public License */
22
/* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */
23
/* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */
24
/* */
25
/* The copyright holder's institutional names and contributor's names may not */
26
/* be used to endorse or promote products derived from this software without */
27
/* specific prior written permission of the institution or contributor. */
28
/******************************************************************************/
29
30
#include <string.h>
31
#include <stdlib.h>
32
#include <time.h>
33
#include <pthread.h>
34
35
#ifdef __cplusplus
36
extern
"C"
{
37
#endif
38
39
struct
XrdFfsDentnames
{
40
char
*
name
;
41
struct
XrdFfsDentnames
*
next
;
42
};
43
44
void
XrdFfsDent_names_del
(
struct
XrdFfsDentnames
**p);
45
void
XrdFfsDent_names_add
(
struct
XrdFfsDentnames
**p,
char
*
name
);
46
void
XrdFfsDent_names_join
(
struct
XrdFfsDentnames
**p,
struct
XrdFfsDentnames
**n);
47
int
XrdFfsDent_names_extract
(
struct
XrdFfsDentnames
**p,
char
***dnarray);
48
49
void
XrdFfsDent_cache_init
();
50
void
XrdFfsDent_cache_destroy
();
51
int
XrdFfsDent_cache_fill
(
char
*dname,
char
***dnarray,
int
nents);
52
int
XrdFfsDent_cache_search
(
char
*dname,
char
*dentname);
53
54
#ifdef __cplusplus
55
}
56
#endif
57
58
Generated by
1.8.3.1