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
114
115
|
/**
* Interactive Clean
*
* C functions to compile and run a Clean module
*
* The MIT License (MIT)
*
* Copyright (c) 2015 Camil Staps <info@camilstaps.nl>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <stdlib.h>
#include <stdio.h>
#include <inttypes.h>
#include <string.h>
#include "Clean.h"
/**
* Compile a Clean module in a path
*
* This may fail (hard) when out of memory or when clm fails
* clm should be in $PATH
*
* @param CleanString path the path
* @param CleanString module the module
*
* @return void
*/
void compile(CleanString path, CleanString module) {
char* pathchars, * modulechars;
int pathlength, modulelength;
// Copy from CleanString to normal char[]
pathlength = CleanStringLength(path);
modulelength = CleanStringLength(module);
pathchars = calloc(sizeof(char), pathlength + 1);
modulechars = calloc(sizeof(char), pathlength + 1);
if (modulechars == NULL || pathchars == NULL) {
printf("Couldn't allocate memory\n");
exit(-1);
}
int i;
for (i=0;i<modulelength;i++)
modulechars[i] = CleanStringCharacters(module)[i];
modulechars[i] = 0x00;
for (i=0;i<pathlength;i++)
pathchars[i] = CleanStringCharacters(path)[i];
pathchars[i] = 0x00;
// cd to <path>
chdir(pathchars);
// Build command:
// clm -ms <module> -o <module>
char cmd[64] = "clm -ms ";
strcat(cmd, modulechars);
strcat(cmd, " -o ");
strcat(cmd, modulechars);
// Call clm
system(cmd);
}
/**
* Run an executable
*
* This may fail when out of memory, or when the executable fails
* The file should be executable by the user
*
* @param CleanString executable the path to the executable
*
* @return void
*/
void run(CleanString executable) {
char* execchars;
int execlength;
// Copy CleanString to char[]
execlength = CleanStringLength(executable);
execchars = calloc(sizeof(char), execlength + 1 + 4);
if (execchars == NULL) {
printf("Couldn't allocate memory\n");
exit(-1);
}
int i;
for (i=0;i<execlength;i++)
execchars[i] = CleanStringCharacters(executable)[i];
execchars[i] = 0x00;
// Build & run command:
// <module> -nt
strcat(execchars, " -nt");
system(execchars);
}
|