blob: d0650962c03e5fa9e6527c7ec80fbfd2041070e3 (
plain) (
blame)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
//! @file stasis.h
#ifndef STASIS_CORE_H
#define STASIS_CORE_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <unistd.h>
#include <time.h>
#include <sys/statvfs.h>
#define SYSERROR(MSG, ...) do { \
fprintf(stderr, "%s:%s:%d:%s - ", path_basename(__FILE__), __FUNCTION__, __LINE__, strerror(errno) ? "info" : strerror(errno)); \
fprintf(stderr, MSG LINE_SEP, __VA_ARGS__); \
} while (0)
#define STASIS_BUFSIZ 8192
#define STASIS_NAME_MAX 255
#define STASIS_DIRSTACK_MAX 1024
#define STASIS_TIME_STR_MAX 128
#define HTTP_ERROR(X) X >= 400
#include "config.h"
#include "template.h"
#include "utils.h"
#include "copy.h"
#include "ini.h"
#include "conda.h"
#include "environment.h"
#include "artifactory.h"
#include "docker.h"
#include "delivery.h"
#include "str.h"
#include "strlist.h"
#include "system.h"
#include "download.h"
#include "recipe.h"
#include "relocation.h"
#include "wheel.h"
#include "junitxml.h"
#include "github.h"
#include "template_func_proto.h"
#define guard_runtime_free(X) do { if (X) { runtime_free(X); X = NULL; } } while (0)
#define guard_strlist_free(X) do { if ((*X)) { strlist_free(X); (*X) = NULL; } } while (0)
#define guard_free(X) do { if (X) { free(X); X = NULL; } } while (0)
#define GENERIC_ARRAY_FREE(ARR) do { \
for (size_t ARR_I = 0; ARR && ARR[ARR_I] != NULL; ARR_I++) { \
guard_free(ARR[ARR_I]); \
} \
guard_free(ARR); \
} while (0)
#define COE_CHECK_ABORT(COND, MSG) \
do {\
if (!globals.continue_on_error && COND) { \
msg(STASIS_MSG_ERROR, MSG ": Aborting execution (--continue-on-error/-C is not enabled)\n"); \
exit(1); \
} \
} while (0)
struct EnvCtl {
unsigned flags;
const char *name[10];
};
struct STASIS_GLOBAL {
bool verbose; //!< Enable verbose output
bool always_update_base_environment; //!< Update base environment immediately after activation
bool continue_on_error; //!< Do not stop on test failures
bool conda_fresh_start; //!< Always install a new copy of Conda
bool enable_docker; //!< Enable docker image builds
bool enable_artifactory; //!< Enable artifactory uploads
bool enable_testing; //!< Enable package testing
bool enable_overwrite; //!< Enable release file clobbering
struct StrList *conda_packages; //!< Conda packages to install after initial activation
struct StrList *pip_packages; //!< Pip packages to install after initial activation
char *tmpdir; //!< Path to temporary storage directory
char *conda_install_prefix; //!< Path to install conda
char *sysconfdir; //!< Path where STASIS reads its configuration files (mission directory, etc)
struct {
char *tox_posargs;
char *conda_reactivate;
} workaround;
struct Jfrog {
char *jfrog_artifactory_base_url;
char *jfrog_artifactory_product;
char *cli_major_ver;
char *version;
char *os;
char *arch;
char *remote_filename;
char *repo;
char *url;
} jfrog;
struct EnvCtl envctl[];
};
extern struct STASIS_GLOBAL globals;
#define STASIS_ENVCTL_PASSTHRU 0 << 1
#define STASIS_ENVCTL_REQUIRED 1 << 1
#define STASIS_ENVCTL_REDACT 2 << 1
extern const char *VERSION;
extern const char *AUTHOR;
extern const char *BANNER;
/**
* Free memory allocated in global configuration structure
*/
void globals_free();
#endif //STASIS_CORE_H
|