summaryrefslogtreecommitdiff
path: root/builder/builder-context.h
blob: b497c1c33e85d0e4c5aa2883a6216b2793349070 (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
/*
 * Copyright © 2015 Red Hat, Inc
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *       Alexander Larsson <alexl@redhat.com>
 */

#ifndef __BUILDER_CONTEXT_H__
#define __BUILDER_CONTEXT_H__

#include <gio/gio.h>
#include <libsoup/soup.h>
#include "builder-options.h"

G_BEGIN_DECLS

/* BuilderContext defined in builder-options.h to fix include loop */

#define BUILDER_TYPE_CONTEXT (builder_context_get_type())
#define BUILDER_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), BUILDER_TYPE_CONTEXT, BuilderContext))
#define BUILDER_IS_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BUILDER_TYPE_CONTEXT))

GType builder_context_get_type (void);

GFile *         builder_context_get_app_dir         (BuilderContext  *self);
GFile *         builder_context_get_base_dir        (BuilderContext  *self);
GFile *         builder_context_get_state_dir       (BuilderContext  *self);
GFile *         builder_context_get_cache_dir       (BuilderContext  *self);
GFile *         builder_context_get_build_dir       (BuilderContext  *self);
GFile *         builder_context_get_ccache_dir      (BuilderContext  *self);
GFile *         builder_context_get_download_dir    (BuilderContext  *self);
SoupSession *   builder_context_get_soup_session    (BuilderContext  *self);
const char *    builder_context_get_arch            (BuilderContext  *self);
void            builder_context_set_arch            (BuilderContext  *self,
                                                     const char      *arch);
int             builder_context_get_n_cpu           (BuilderContext  *self);
void            builder_context_set_keep_build_dirs (BuilderContext  *self,
                                                     gboolean         keep_build_dirs);
gboolean        builder_context_get_keep_build_dirs (BuilderContext  *self);
void            builder_context_set_global_cleanup  (BuilderContext  *self,
                                                     const char     **cleanup);
const char **   builder_context_get_global_cleanup  (BuilderContext  *self);
void            builder_context_set_global_cleanup_platform  (BuilderContext  *self,
                                                              const char     **cleanup);
const char **   builder_context_get_global_cleanup_platform  (BuilderContext  *self);
BuilderOptions *builder_context_get_options         (BuilderContext  *self);
void            builder_context_set_options         (BuilderContext  *self,
                                                     BuilderOptions  *option);
gboolean        builder_context_get_build_runtime   (BuilderContext  *self);
void            builder_context_set_build_runtime   (BuilderContext  *self,
                                                     gboolean         build_runtime);

BuilderContext *builder_context_new              (GFile          *base_dir,
                                                  GFile          *app_dir);
gboolean        builder_context_enable_ccache    (BuilderContext  *self,
                                                  GError         **error);
char **         builder_context_extend_env       (BuilderContext  *self,
                                                  char           **envp);

G_DEFINE_AUTOPTR_CLEANUP_FUNC(BuilderContext, g_object_unref)

G_END_DECLS

#endif /* __BUILDER_CONTEXT_H__ */