Optimize opj_t1_update_flags()
[openjpeg.git] / src / lib / openjpip / cache_manager.h
1 /*
2  * $Id$
3  *
4  * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
5  * Copyright (c) 2002-2014, Professor Benoit Macq
6  * Copyright (c) 2010-2011, Kaori Hagihara
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #ifndef     CACHE_MANAGER_H_
32 # define    CACHE_MANAGER_H_
33
34 #include "metadata_manager.h"
35 #include "ihdrbox_manager.h"
36
37 /** cache parameters*/
38 typedef struct cache_param {
39     char *filename;                     /**< file name*/
40     char *tid;                          /**< taregt identifier*/
41     int csn;                            /**< codestream number*/
42     char **cid;                         /**< dynamic array of channel identifiers*/
43     int numOfcid;                       /**< number of cids*/
44     metadatalist_param_t *metadatalist; /**< metadata-bin list*/
45     ihdrbox_param_t *ihdrbox;           /**< ihdrbox*/
46     struct cache_param *next;           /**< pointer to the next cache*/
47 } cache_param_t;
48
49 /**< cache list parameters*/
50 typedef struct cachelist_param {
51     cache_param_t *first; /**< first cache pointer of the list*/
52     cache_param_t *last;  /**< last  cache pointer of the list*/
53 } cachelist_param_t;
54
55
56 /**
57  * generate a cache list
58  *
59  * @return pointer to the generated cache list
60  */
61 cachelist_param_t * gene_cachelist(void);
62
63 /**
64  * delete cache list
65  *
66  * @param[in,out] cachelist address of the cache list pointer
67  */
68 void delete_cachelist(cachelist_param_t **cachelist);
69
70 /**
71  * generate a cache
72  *
73  * @param[in] targetname target file name
74  * @param[in] csn        codestream number
75  * @param[in] tid        target identifier
76  * @param[in] cid        channel identifier
77  * @return               pointer to the generated cache
78  */
79 cache_param_t * gene_cache(const char *targetname, int csn, char *tid,
80                            char *cid);
81
82 /**
83  * delete a cache
84  *
85  * @param[in] cache address of the cache pointer
86  */
87 void delete_cache(cache_param_t **cache);
88
89 /**
90  * insert a cache into list
91  *
92  * @param[in] cache     cache pointer
93  * @param[in] cachelist cache list pointer
94  */
95 void insert_cache_into_list(cache_param_t *cache, cachelist_param_t *cachelist);
96
97
98 /**
99  * search a cache by target name
100  *
101  * @param[in] targetname target filename
102  * @param[in] cachelist  cache list pointer
103  * @return               found cache pointer
104  */
105 cache_param_t * search_cache(const char targetname[],
106                              cachelist_param_t *cachelist);
107
108
109 /**
110  * search a cache by csn
111  *
112  * @param[in] csn        codestream number
113  * @param[in] cachelist  cache list pointer
114  * @return               found cache pointer
115  */
116 cache_param_t * search_cacheBycsn(int csn, cachelist_param_t *cachelist);
117
118
119 /**
120  * search a cache by cid
121  *
122  * @param[in] cid        channel identifer
123  * @param[in] cachelist  cache list pointer
124  * @return               found cache pointer
125  */
126 cache_param_t * search_cacheBycid(const char cid[],
127                                   cachelist_param_t *cachelist);
128
129
130 /**
131  * search a cache by tid
132  *
133  * @param[in] tid        target identifer
134  * @param[in] cachelist  cache list pointer
135  * @return               found cache pointer
136  */
137 cache_param_t * search_cacheBytid(const char tid[],
138                                   cachelist_param_t *cachelist);
139
140 /**
141  * add cid into a cache
142  *
143  * @param[in] cid   channel identifier
144  * @param[in] cache cache pointer
145  */
146 void add_cachecid(const char *cid, cache_param_t *cache);
147
148
149 /**
150  * update tid of a cache
151  *
152  * @param[in] tid   target identifier
153  * @param[in] cache cache pointer
154  */
155 void update_cachetid(const char *tid, cache_param_t *cache);
156
157
158 /**
159  * remove cid in cache
160  *
161  * @param[in] cid       channel identifier
162  * @param[in] cachelist cachelist pointer
163  */
164 void remove_cachecid(const char *cid, cachelist_param_t *cachelist);
165
166
167 /**
168  * print cache parameters
169  *
170  * @param[in] cache cache pointer
171  */
172 void print_cache(cache_param_t *cache);
173
174 /**
175  * print all cache parameters
176  *
177  * @param[in] cachelist cache list pointer
178  */
179 void print_allcache(cachelist_param_t *cachelist);
180
181 #endif /* !CACHE_MANAGER_H_ */