Librepo library 1.20.0
C library for downloading linux repository metadata and packages
Loading...
Searching...
No Matches
yum.h
1/* librepo - A library providing (libcURL like) API to downloading repository
2 * Copyright (C) 2012 Tomas Mlcoch
3 *
4 * Licensed under the GNU Lesser General Public License Version 2.1
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#ifndef __LR_YUMREPO_H__
22#define __LR_YUMREPO_H__
23
24#include <glib.h>
25
26#include <librepo/handle.h>
27#include <librepo/metalink.h>
28#include <librepo/rcodes.h>
29#include <librepo/repomd.h>
30#include <librepo/result.h>
31
32G_BEGIN_DECLS
33
40typedef struct {
41 char *type;
42 char *path;
44
46typedef struct {
47 GSList *paths;
48 char *repomd;
49 char *url;
50 char *destdir;
51 char *signature;
54 char *mirrorlist;
55 char *metalink;
56 gboolean use_zchunk;
57} LrYumRepo;
58
68
74
78void
80
86const char *
87lr_yum_repo_path(LrYumRepo *repo, const char *type);
88
96int
97hmfcb(void *clientp, const char *msg, const char *url);
98
104gboolean
105lr_prepare_repodata_dir(LrHandle *handle, GError **err);
106
107
114gboolean
115lr_store_mirrorlist_files(LrHandle *handle, LrYumRepo *repo, GError **err);
116
123gboolean
124lr_copy_metalink_content(LrHandle *handle, LrYumRepo *repo, GError **err);
125
132int
133lr_prepare_repomd_xml_file(LrHandle *handle, char **path, GError **err);
134
135gboolean
136lr_check_repomd_xml_asc_availability(LrHandle *handle, LrYumRepo *repo, int fd, char *path, GError **err);
137
142void
143lr_get_best_checksum(const LrMetalink *metalink, GSList **checksums);
144
149CbData *
151
158gboolean
159lr_yum_download_repos(GSList *targets,
160 GError **err);
161
164G_END_DECLS
165
166#endif
struct _LrHandle LrHandle
Definition handle.h:39
int(* LrProgressCb)(void *clientp, double total_to_download, double now_downloaded)
Definition types.h:125
int(* LrHandleMirrorFailureCb)(void *clientp, const char *msg, const char *url, const char *metadata)
Definition types.h:165
void lr_get_best_checksum(const LrMetalink *metalink, GSList **checksums)
gboolean lr_store_mirrorlist_files(LrHandle *handle, LrYumRepo *repo, GError **err)
int lr_prepare_repomd_xml_file(LrHandle *handle, char **path, GError **err)
CbData * lr_get_metadata_failure_callback(const LrHandle *handle)
const char * lr_yum_repo_path(LrYumRepo *repo, const char *type)
LrYumRepo * lr_yum_repo_init(void)
int hmfcb(void *clientp, const char *msg, const char *url)
gboolean lr_prepare_repodata_dir(LrHandle *handle, GError **err)
void lr_yum_repo_free(LrYumRepo *repo)
gboolean lr_copy_metalink_content(LrHandle *handle, LrYumRepo *repo, GError **err)
gboolean lr_yum_download_repos(GSList *targets, GError **err)
struct CbData_s CbData
Definition yum.h:61
LrHandleMirrorFailureCb hmfcb
Definition yum.h:65
char * metadata
Definition yum.h:66
void * cbdata
Definition yum.h:63
LrProgressCb progresscb
Definition yum.h:64
void * userdata
Definition yum.h:62
GSList * paths
Definition yum.h:47
gboolean use_zchunk
Definition yum.h:56
char * destdir
Definition yum.h:50
char * signature
Definition yum.h:51
char * metalink
Definition yum.h:55
char * repomd
Definition yum.h:48
char * url
Definition yum.h:49
char * mirrorlist
Definition yum.h:54
char * type
Definition yum.h:41
char * path
Definition yum.h:42