1 /*
2  * Copyright (C) 2012-2013 Red Hat, Inc.
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 HY_REPO_INTERNAL_H
22 #define HY_REPO_INTERNAL_H
23 
24 #include "repo/Repo-private.hpp"
25 
26 // libsolv
27 #include <solv/pooltypes.h>
28 
29 // hawkey
30 #include "hy-iutil.h"
31 #include "hy-repo.h"
32 
33 enum _hy_repo_repodata {
34     _HY_REPODATA_FILENAMES,
35     _HY_REPODATA_PRESTO,
36     _HY_REPODATA_UPDATEINFO,
37     _HY_REPODATA_OTHER
38 };
39 
40 int hy_repo_transition(HyRepo repo, enum _hy_repo_state new_state);
41 
42 void repo_internalize_all_trigger(Pool *pool);
43 void repo_internalize_trigger(Repo *r);
44 void repo_update_state(HyRepo repo, enum _hy_repo_repodata which,
45                        enum _hy_repo_state state);
46 Id repo_get_repodata(HyRepo repo, enum _hy_repo_repodata which);
47 void repo_set_repodata(HyRepo repo, enum _hy_repo_repodata which, Id repodata);
48 
49 namespace libdnf {
50     Repo::Impl * repoGetImpl(Repo * repo);
51 }
52 
53 #endif // HY_REPO_INTERNAL_H
54