mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-13 12:41:01 -04:00
Instead of building directly into the app directory we build into a rofiles-fuse mount of it, which allows us to safely check out the cache into the app directory using hardlinks (because rofiles-fuse will not let you modify hardlinked files). Additionally, every time we commit to the cache we check out all the new and modified files into the appdir so that we get hardlinks to the repo for the new files too. The advantage of having hardlinks to the repo is that we can commit much more efficient since we don't have to do a full checksum of the hardlinked files. There are some issues here: eu-strip fails due to doing in-place editin rofiles-fuse is using lots of CPU, unclear if this is faster, needs measurements needs testing of how well the fallback works (ie. if fuse is not working). rofuse: use kernel caches rofiles: check out after commit Use devino cache Only check out new files from cache after commit
102 lines
5.4 KiB
C
102 lines
5.4 KiB
C
/*
|
|
* 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.1 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-cache.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_app_dir_raw (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);
|
|
const char * builder_context_get_stop_at (BuilderContext *self);
|
|
void builder_context_set_stop_at (BuilderContext *self,
|
|
const char *module);
|
|
int builder_context_get_jobs (BuilderContext *self);
|
|
void builder_context_set_jobs (BuilderContext *self,
|
|
int n_jobs);
|
|
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_sandboxed (BuilderContext *self,
|
|
gboolean sandboxed);
|
|
gboolean builder_context_get_sandboxed (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);
|
|
gboolean builder_context_get_build_extension (BuilderContext *self);
|
|
void builder_context_set_build_extension (BuilderContext *self,
|
|
gboolean build_extension);
|
|
gboolean builder_context_get_separate_locales (BuilderContext *self);
|
|
void builder_context_set_separate_locales (BuilderContext *self,
|
|
gboolean separate_locales);
|
|
gboolean builder_context_get_rebuild_on_sdk_change (BuilderContext *self);
|
|
void builder_context_set_rebuild_on_sdk_change (BuilderContext *self,
|
|
gboolean rebuild_on_sdk_change);
|
|
|
|
BuilderContext *builder_context_new (GFile *base_dir,
|
|
GFile *app_dir);
|
|
gboolean builder_context_enable_ccache (BuilderContext *self,
|
|
GError **error);
|
|
gboolean builder_context_enable_rofiles (BuilderContext *self,
|
|
GError **error);
|
|
gboolean builder_context_get_rofiles_active (BuilderContext *self);
|
|
gboolean builder_context_get_use_rofiles (BuilderContext *self);
|
|
void builder_context_set_use_rofiles (BuilderContext *self,
|
|
gboolean use_rofiles);
|
|
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__ */
|