Skip to content
Snippets Groups Projects
Commit d0e1b5c1 authored by Simon McVittie's avatar Simon McVittie
Browse files

Merge branch 'wip/smcv/refactor-runtime' into 'master'

Refactor runtime setup

See merge request steam/pressure-vessel!32
parents 86cce64c f9d55eb9
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ Maintainer: Simon McVittie <smcv@collabora.com> ...@@ -5,6 +5,7 @@ Maintainer: Simon McVittie <smcv@collabora.com>
Standards-Version: 4.4.0 Standards-Version: 4.4.0
Build-Depends: Build-Depends:
debhelper (>= 9), debhelper (>= 9),
g++ (>= 4:4.8) | g++-4.8,
libglib2.0-dev, libglib2.0-dev,
libsteam-runtime-tools-0-dev (>= 0.20190926.0~), libsteam-runtime-tools-0-dev (>= 0.20190926.0~),
libxau-dev, libxau-dev,
......
...@@ -131,6 +131,9 @@ build:scout: ...@@ -131,6 +131,9 @@ build:scout:
${NULL+} ${NULL+}
fi fi
# g++ 4.6 is too old for the submodule (see also debian/rules)
export CXX=g++-4.8
meson \ meson \
--prefix="$(pwd)/_build/prefix" \ --prefix="$(pwd)/_build/prefix" \
-Dsrcdir=src \ -Dsrcdir=src \
......
...@@ -7,6 +7,10 @@ export LC_ALL=C.UTF-8 ...@@ -7,6 +7,10 @@ export LC_ALL=C.UTF-8
include /usr/share/dpkg/default.mk include /usr/share/dpkg/default.mk
ifeq ($(shell dpkg --compare-versions `c++ -dumpversion || echo 0` ge 4.8 || echo old),old)
export CXX = g++-4.8
endif
meson_options = meson_options =
ifeq ($(DEB_DISTRIBUTION),UNRELEASED) ifeq ($(DEB_DISTRIBUTION),UNRELEASED)
......
...@@ -24,10 +24,13 @@ ...@@ -24,10 +24,13 @@
project( project(
'pressure-vessel', 'c', 'pressure-vessel', 'c',
default_options: [ default_options: [
'c_std=c99',
'cpp_std=c++11',
'warning_level=2', 'warning_level=2',
], ],
) )
gnome = import('gnome')
prove = find_program('prove', required : false) prove = find_program('prove', required : false)
sh = find_program('sh', required : true) sh = find_program('sh', required : true)
...@@ -105,6 +108,7 @@ project_warning_cflags = [ ...@@ -105,6 +108,7 @@ project_warning_cflags = [
project_include_dirs = include_directories( project_include_dirs = include_directories(
'.', '.',
'src',
'subprojects', 'subprojects',
) )
...@@ -176,6 +180,16 @@ add_project_arguments( ...@@ -176,6 +180,16 @@ add_project_arguments(
language : 'c', language : 'c',
) )
# Headers to scan for enum/flags types.
headers = [
'src/runtime.h',
]
enums = gnome.mkenums_simple(
'enumtypes',
sources : headers,
)
executable( executable(
'pressure-vessel-with-lock', 'pressure-vessel-with-lock',
sources : [ sources : [
...@@ -222,12 +236,14 @@ executable( ...@@ -222,12 +236,14 @@ executable(
'src/flatpak-utils-base-private.h', 'src/flatpak-utils-base-private.h',
'src/flatpak-utils.c', 'src/flatpak-utils.c',
'src/flatpak-utils-private.h', 'src/flatpak-utils-private.h',
'src/runtime.c',
'src/runtime.h',
'src/utils.c', 'src/utils.c',
'src/utils.h', 'src/utils.h',
'src/wrap.c', 'src/wrap.c',
'src/wrap-interactive.c', 'src/wrap-interactive.c',
'src/wrap-interactive.h', 'src/wrap-interactive.h',
], ] + enums,
c_args : [ c_args : [
'-Wno-unused-local-typedefs', '-Wno-unused-local-typedefs',
], ],
......
...@@ -61,6 +61,23 @@ def tristate_environment(name): ...@@ -61,6 +61,23 @@ def tristate_environment(name):
return None return None
def boolean_environment(name, default):
# type: (str, bool) -> bool
value = os.getenv(name)
if value is None:
return default
if value == '1':
return True
if value in ('', '0'):
return False
logger.warning('Unrecognised value %r for $%s', value, name)
return default
class Gui: class Gui:
def __init__(self): def __init__(self):
# type: (...) -> None # type: (...) -> None
...@@ -145,6 +162,30 @@ class Gui: ...@@ -145,6 +162,30 @@ class Gui:
row += 1 row += 1
self.host_graphics_check = Gtk.CheckButton.new_with_label(
'Use host-system graphics stack'
)
value = boolean_environment('PRESSURE_VESSEL_HOST_GRAPHICS', True)
self.host_graphics_check.set_active(value)
self.grid.attach(self.host_graphics_check, 1, row, 1, 1)
row += 1
label = Gtk.Label.new('')
label.set_markup(
'<small><i>'
"Most games and GPUs won't work when this is disabled."
'</i></small>'
)
label.set_halign(Gtk.Align.START)
label.set_line_wrap(True)
self.grid.attach(label, 1, row, 1, 1)
row += 1
self._container_runtime_changed(self.container_runtime_combo)
self.container_runtime_combo.connect(
'changed',
self._container_runtime_changed)
self.unshare_home_check = Gtk.CheckButton.new_with_label( self.unshare_home_check = Gtk.CheckButton.new_with_label(
'Use a separate home directory per game' 'Use a separate home directory per game'
) )
...@@ -258,6 +299,12 @@ class Gui: ...@@ -258,6 +299,12 @@ class Gui:
else: else:
self.xterm_check.set_sensitive(True) self.xterm_check.set_sensitive(True)
def _container_runtime_changed(self, combo):
if combo.get_active_id() == '/':
self.host_graphics_check.set_sensitive(False)
else:
self.host_graphics_check.set_sensitive(True)
def _describe_runtime( def _describe_runtime(
self, self,
path # type: str path # type: str
...@@ -362,6 +409,11 @@ class Gui: ...@@ -362,6 +409,11 @@ class Gui:
argv.append('--runtime') argv.append('--runtime')
argv.append(os.path.join(id, 'files')) argv.append(os.path.join(id, 'files'))
if self.host_graphics_check.get_active():
argv.append('--with-host-graphics')
else:
argv.append('--without-host-graphics')
if self.unshare_home_check.get_active(): if self.unshare_home_check.get_active():
argv.append('--unshare-home') argv.append('--unshare-home')
else: else:
......
...@@ -404,3 +404,19 @@ pv_bwrap_add_api_filesystems (FlatpakBwrap *bwrap) ...@@ -404,3 +404,19 @@ pv_bwrap_add_api_filesystems (FlatpakBwrap *bwrap)
"--dev-bind", "/dev/shm", "/dev/shm", "--dev-bind", "/dev/shm", "/dev/shm",
NULL); NULL);
} }
FlatpakBwrap *
pv_bwrap_copy (FlatpakBwrap *bwrap)
{
FlatpakBwrap *ret;
g_return_val_if_fail (bwrap != NULL, NULL);
g_return_val_if_fail (!pv_bwrap_was_finished (bwrap), NULL);
/* bwrap can't own any fds, because if it did,
* flatpak_bwrap_append_bwrap() would steal them. */
g_return_val_if_fail (bwrap->fds == NULL || bwrap->fds->len == 0, NULL);
ret = flatpak_bwrap_new (NULL);
flatpak_bwrap_append_bwrap (ret, bwrap);
return ret;
}
...@@ -49,3 +49,5 @@ pv_bwrap_was_finished (FlatpakBwrap *bwrap) ...@@ -49,3 +49,5 @@ pv_bwrap_was_finished (FlatpakBwrap *bwrap)
return (bwrap->argv->len >= 1 && return (bwrap->argv->len >= 1 &&
bwrap->argv->pdata[bwrap->argv->len - 1] == NULL); bwrap->argv->pdata[bwrap->argv->len - 1] == NULL);
} }
FlatpakBwrap *pv_bwrap_copy (FlatpakBwrap *bwrap);
This diff is collapsed.
/*
* Copyright © 2020 Collabora Ltd.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*
* 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/>.
*/
#pragma once
#include <glib.h>
#include <glib/gstdio.h>
#include <glib-object.h>
#include "glib-backports.h"
#include "libglnx/libglnx.h"
#include "flatpak-bwrap-private.h"
#include "flatpak-utils-base-private.h"
/**
* PvRuntimeFlags:
* @PV_RUNTIME_FLAGS_HOST_GRAPHICS_STACK: Use host system graphics stack
* @PV_RUNTIME_FLAGS_NONE: None of the above
*
* Flags affecting how we set up the runtime.
*/
typedef enum
{
PV_RUNTIME_FLAGS_HOST_GRAPHICS_STACK = (1 << 0),
PV_RUNTIME_FLAGS_NONE = 0
} PvRuntimeFlags;
typedef struct _PvRuntime PvRuntime;
typedef struct _PvRuntimeClass PvRuntimeClass;
#define PV_TYPE_RUNTIME (pv_runtime_get_type ())
#define PV_RUNTIME(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PV_TYPE_RUNTIME, PvRuntime))
#define PV_RUNTIME_CLASS(cls) (G_TYPE_CHECK_CLASS_CAST ((cls), PV_TYPE_RUNTIME, PvRuntimeClass))
#define PV_IS_RUNTIME(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PV_TYPE_RUNTIME))
#define PV_IS_RUNTIME_CLASS(cls) (G_TYPE_CHECK_CLASS_TYPE ((cls), PV_TYPE_RUNTIME))
#define PV_RUNTIME_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PV_TYPE_RUNTIME, PvRuntimeClass)
GType pv_runtime_get_type (void);
PvRuntime *pv_runtime_new (const char *source_files,
const char *bubblewrap,
const char *tools_dir,
PvRuntimeFlags flags,
GError **error);
void pv_runtime_append_lock_adverb (PvRuntime *self,
FlatpakBwrap *bwrap);
gboolean pv_runtime_bind (PvRuntime *self,
FlatpakBwrap *bwrap,
GError **error);
void pv_runtime_cleanup (PvRuntime *self);
G_DEFINE_AUTOPTR_CLEANUP_FUNC (PvRuntime, g_object_unref)
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment