createrepo_c library  0.17.5
C library for metadata manipulation
threads.h
1 /* createrepo_c - Library of routines for manipulation with repodata
2  * Copyright (C) 2013 Tomas Mlcoch
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17  * USA.
18  */
19 
20 #ifndef __C_CREATEREPOLIB_THREADS_H__
21 #define __C_CREATEREPOLIB_THREADS_H__
22 
23 #include <glib.h>
24 #include "compression_wrapper.h"
25 #include "checksum.h"
26 #include "repomd.h"
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
69 typedef struct {
70  char *src;
72  char *dst;
79  char *zck_dict_dir;
81  gboolean zck_auto_chunk;
83  int delsrc;
85  GError *err;
88 
109 cr_compressiontask_new(const char *src,
110  const char *dst,
111  cr_CompressionType compression_type,
112  cr_ChecksumType checksum_type,
113  const char *zck_dict_dir,
114  gboolean zck_auto_chunk,
115  int delsrc,
116  GError **err);
117 
122 void
124 
127 void
128 cr_compressing_thread(gpointer data, gpointer user_data);
129 
132 typedef struct {
135  GError *err;
137 
146  cr_ChecksumType checksum_type,
147  GError **err);
148 
151 void
153 
156 void
157 cr_repomd_record_fill_thread(gpointer data, gpointer user_data);
158 
161 void
162 cr_rewrite_pkg_count_thread(gpointer data, gpointer user_data);
163 
166 #ifdef __cplusplus
167 }
168 #endif
169 
170 #endif /* __C_CREATEREPOLIB_THREADS_H__ */
cr_ChecksumType
Definition: checksum.h:43
cr_CompressionType
void cr_compressiontask_free(cr_CompressionTask *task, GError **err)
cr_RepomdRecordFillTask * cr_repomdrecordfilltask_new(cr_RepomdRecord *record, cr_ChecksumType checksum_type, GError **err)
void cr_rewrite_pkg_count_thread(gpointer data, gpointer user_data)
cr_CompressionTask * cr_compressiontask_new(const char *src, const char *dst, cr_CompressionType compression_type, cr_ChecksumType checksum_type, const char *zck_dict_dir, gboolean zck_auto_chunk, int delsrc, GError **err)
void cr_repomd_record_fill_thread(gpointer data, gpointer user_data)
void cr_compressing_thread(gpointer data, gpointer user_data)
void cr_repomdrecordfilltask_free(cr_RepomdRecordFillTask *task, GError **err)
cr_ContentStat * stat
Definition: threads.h:77
gboolean zck_auto_chunk
Definition: threads.h:81
GError * err
Definition: threads.h:85
char * zck_dict_dir
Definition: threads.h:79
cr_CompressionType type
Definition: threads.h:75
cr_RepomdRecord * record
Definition: threads.h:133
cr_ChecksumType checksum_type
Definition: threads.h:134