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
|
/* -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 99; -*- */
/* vim: set ts=4 sw=4 et tw=99: */
/*
This file is part of Icecream.
Copyright (c) 2004 Stephan Kulow <coolo@suse.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef ICECREAM_ENVIRONMENT_H
#define ICECREAM_ENVIRONMENT_H
#include <comm.h>
#include <list>
#include <string>
#include <unistd.h>
class MsgChannel;
extern bool cleanup_cache(const std::string &basedir, uid_t user_uid, gid_t user_gid);
extern int start_create_env(const std::string &basedir,
uid_t user_uid, gid_t user_gid,
const std::string &compiler, const std::list<std::string> &extrafiles,
const std::string &compression);
extern size_t finish_create_env(int pipe, const std::string &basedir, std::string &native_environment);
Environments available_environments(const std::string &basename);
extern pid_t start_install_environment(const std::string &basename,
const std::string &target,
const std::string &name,
MsgChannel *c, int& pipe_to_child, int& pipe_from_child,
FileChunkMsg*& fmsg,
uid_t user_uid, gid_t user_gid, int extract_priority);
extern size_t finalize_install_environment(const std::string &basename, const std::string &target,
uid_t user_uid, gid_t user_gid);
extern void remove_environment_files(const std::string &basedir, const std::string &env);
extern void remove_native_environment_files(const std::string &env);
extern void chdir_to_environment(MsgChannel *c, const std::string &dirname, uid_t user_uid, gid_t user_gid);
extern bool verify_env(MsgChannel *c, const std::string &basedir, const std::string &target,
const std::string &env, uid_t user_uid, gid_t user_gid);
#endif
|