summaryrefslogtreecommitdiffstats
path: root/fcp/src/misc.h
blob: a73bc8c2a9e3e4282c80e7bf7555d5d1c61d8134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: fcp/src/misc.h $                                              */
/*                                                                        */
/* OpenPOWER FFS Project                                                  */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2014,2015                        */
/* [+] International Business Machines Corp.                              */
/*                                                                        */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */

/*
 *    File: fcp_misc.h
 *  Author: Shaun Wetzstein <shaun@us.ibm.com>
 *   Descr: Misc. helpers
 *    Date: 05/12/2012
 */

#ifndef __MISC__H__
#define __MISC__H__

#include <sys/types.h>

#include <stdio.h>
#include <regex.h>

#include <clib/list.h>

#include <ffs/libffs.h>

typedef struct entry_list entry_list_t;
struct entry_list {
	list_t list;
	ffs_t * ffs;
};

typedef struct entry_node entry_node_t;
struct entry_node {
	list_node_t node;
	ffs_entry_t entry;
};

extern entry_list_t * entry_list_create(ffs_t *);
extern entry_list_t * entry_list_create_by_regex(ffs_t *, const char *);
extern int entry_list_add(entry_list_t *, ffs_entry_t *);
extern int entry_list_add_child(entry_list_t *, ffs_entry_t *);
extern int entry_list_remove(entry_list_t *, entry_node_t *);
extern int entry_list_delete(entry_list_t *);
extern int entry_list_exists(entry_list_t *, ffs_entry_t *);
extern ffs_entry_t * entry_list_find(entry_list_t *, const char *);
extern int entry_list_dump(entry_list_t *, FILE *);

extern int parse_offset(const char *, off_t *);
extern int parse_size(const char *, uint32_t *);
extern int parse_number(const char *, uint32_t *);
extern int parse_path(const char *, char **, char **, char **);

extern int dump_errors(const char *, FILE *);
extern int check_file(const char *, FILE *, off_t);
extern int is_file(const char *, const char *, const char *);
extern int valid_type(const char *);

extern FILE *__fopen(const char *, const char *, const char *, int);

#endif /* __MISC__H__ */
OpenPOWER on IntegriCloud