File: buildd.pl

package info (click to toggle)
0ad 0.0.17-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 51,248 kB
  • ctags: 46,933
  • sloc: cpp: 223,208; ansic: 31,240; python: 16,343; perl: 4,083; sh: 1,011; makefile: 915; xml: 733; java: 621; ruby: 229; erlang: 53; sql: 40
file content (300 lines) | stat: -rw-r--r-- 8,085 bytes parent folder | download | duplicates (3)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# Build daemon - receives notifications of commits, runs the build process (ensuring there's only one copy at once), commits the built files, and provides access to all earlier builds and the build log of the latest.

use warnings;
use strict;

# Exit codes used by build.pl:
use constant EXIT_BUILDCOMPLETE => 0;
use constant EXIT_NOTCOMPILED => 1;
use constant EXIT_FAILED => 2;
use constant EXIT_ABORTED => 3;

use POE qw(Component::Server::TCP Component::Client::HTTP Filter::HTTPD Filter::Line);
use HTTP::Response;

use Win32::Process;

my $build_process;       # stores Win32::Process handle
my $build_required = 0;  # set by commits, cleared by builds; 1 for normal build, 2 for forced build (even if no source was changed)
my $commit_required = 0; # stores the time when it should happen, or 0 if never
my $build_start_time;    # time that the most recent build started
my $last_exit_code;      # exit code of the most recent completed build
my $build_active = 0;    # 0 => build process not running; 1 => build process running within the past second

use constant COMMIT_DELAY => 60*60; # seconds to wait after a code commit before committing ps.exe

open my $logfile, '>>', 'access_log' or die "Error opening access_log: $!";
$logfile->autoflush();
sub LOG {
	my ($pkg, $file, $line) = caller;
	my $msg = localtime()." - $file:$line - @_\n";
	print $logfile $msg;
	print $msg;
}

my $main_session; # main POE::Session object

POE::Component::Server::TCP->new(
	Alias        => "web_server",
	Port         => 57470,
	ClientFilter => 'POE::Filter::HTTPD',

	ClientInput => sub {
		my ($kernel, $heap, $request) = @_[KERNEL, HEAP, ARG0];

		# Respond to errors in the client's request
		if ($request->isa("HTTP::Response")) {
			$heap->{client}->put($request);
			$kernel->yield("shutdown");
			return;
		}

		LOG $heap->{remote_ip}." - ".$request->uri->as_string;

		my $response = HTTP::Response->new(200);

		my $url = $request->uri->path;
		
		if ($url eq '/commit_notify.html')
		{
			$build_required = 1;
			abort_build();
			$response->push_header('Content-type', 'text/plain');
			$response->content("Build initiated.");
			$kernel->post($main_session, 'commit_notify');
		}
		elsif ($url eq '/force_build.html')
		{
			$build_required = 2;
			abort_build();
			$response->push_header('Content-type', 'text/plain');
			$response->content("Forced build initiated.");
		}
		elsif ($url eq '/commit_latest.html')
		{
			$commit_required = time();
			$response->push_header('Content-type', 'text/plain');
			$response->content("Commit initiated.");
		}
		elsif ($url eq '/abort_build.html')
		{
			abort_build();
			$response->push_header('Content-type', 'text/plain');
			$response->content("Build aborted.");
		}
		elsif ($url eq '/status.html')
		{
			$response->push_header('Content-type', 'text/html');
			my $text = <<EOF;
<html><body>
@{[ $build_active ? "Build in progress - ".(time()-$build_start_time)." seconds elapsed." : "Build not in progress." ]}
<br><br>
Last build status: @{[do{
	if ($last_exit_code == EXIT_BUILDCOMPLETE or $last_exit_code == EXIT_NOTCOMPILED) {
		"Succeeded";
	} elsif ($last_exit_code == EXIT_ABORTED) {
		"Aborted"
	} else {
		"FAILED ($last_exit_code)"
	}
}]}.
<br><br>
Build log: (<a href="logs.html">complete logs</a>)
<br><br>
EOF
			my $buildlog = do { local $/; my $f; open $f, 'buildlog.txt' and <$f> };
			if ($buildlog)
			{
				$buildlog =~ s/&/&amp;/g;
				$buildlog =~ s/</&lt;/g;
				$buildlog =~ s/>/&gt;/g;
			}
			else
			{
				$buildlog = "(Error opening build log)";
			}
			
			$text .= "<pre>$buildlog</pre>";

			$text .= qq{</body></html>};
			$response->content($text);
		}
		elsif ($url eq '/logs.html')
		{
			$response->push_header('Content-type', 'text/plain');
			my $text;
			for my $n (qw(buildlog build_stdout build_stderr))
			{
				my $filedata = do { local $/; my $f; open $f, "$n.txt" and <$f> };
				$text .= "--------------------------------------------------------------------------------\n";
				$text .= "$n\n";
				$text .= "--------------------------------------------------------------------------------\n";
				$text .= $filedata;
				$text .= "\n\n\n";
			}
			$response->content($text);
		}
		elsif ($url eq '/filelist.html')
		{
			my $output = '';
			eval {
				opendir my $d, "..\\builds" or die $!;
				my @revs;
				for (grep /^\d+\.exe$/, readdir $d)
				{
					/^(\d+)/;
					push @revs, $1;
				}
				$output .= qq{<a href="download/$_.exe">$_</a>  (}.int( (stat "..\\builds\\$_.exe")[7]/1024 ).qq{k)\n} for sort { $b <=> $a } @revs;
			};
			if ($@)
			{
				LOG "filelist failed: $@";
				$response->push_header('Content-type', 'text/plain');
				$response->content("Internal error.");
			}
			else
			{
				$response->push_header('Content-type', 'text/html');
				$response->content("<html><body><pre>$output</pre></body></html>");
			}
		}
		elsif ($url =~ m~/download/(\d+).exe~)
		{
			my $rev = $1;
			if (-e "..\\builds\\$rev.exe" and open my $f, "..\\builds\\$rev.exe")
			{
				binmode $f;
				$response->push_header('Content-type', 'application/octet-stream');
				$response->content(do{local $/; <$f>});
			}
			else
			{
				LOG "Error serving file $url";
				$response->push_header('Content-type', 'text/plain');
				$response->content("File not found.");
			}
		}
		elsif ($url eq '/favicon.ico')
		{
			$response = HTTP::Response->new(404);
			$response->push_header('Content-type', 'text/html');
			$response->content($response->error_as_HTML);
		}
		else
		{
			$response->push_header('Content-type', 'text/plain');
			$response->content("Unrecognised request.");
		}

		$heap->{client}->put($response);
		$kernel->yield("shutdown");
	},
);

POE::Component::Client::HTTP->spawn(
	Alias => "web_client",
);

$main_session = POE::Session->create(
	inline_states => {
		_start => sub {
			$_[KERNEL]->delay(tick => 1);
		},
		tick => sub {
			$_[KERNEL]->delay(tick => 1);
			
			if ($build_active and not build_is_running())
			{
				# Build has just completed.
				
				$last_exit_code = get_exit_code();
				$build_active = 0;
				undef $build_process;

				LOG "Build complete ($last_exit_code)";
				
				if ($last_exit_code == EXIT_BUILDCOMPLETE)
				{
					$commit_required = $build_start_time + COMMIT_DELAY;
				}
				else
				{
					$commit_required = 0;	
				}
			}

			if ($build_required and not $build_active)
			{
				start_build(force => ($build_required == 2));
			}
			elsif ($commit_required and time() >= $commit_required)
			{
				start_build(commit => 1);
				$commit_required = 0;
			}
		},
		
		commit_notify => sub {
			$_[KERNEL]->post('web_client', 'request', 'commit_notify_response',
				new HTTP::Request(GET => 'http://192.168.0.223/wfg/svnlog.cgi/logupdate/doupdate'));
		},
		
		commit_notify_response => sub {
			my $response_packet = $_[ARG1];
			my $response = $response_packet->[0];
			LOG "notified - ".$response->content;
		},

	}
);

LOG "Starting kernel";
$poe_kernel->run();
LOG "Kernel exited";
exit 0;


sub build_is_running
{
	my $exit_code = get_exit_code();
	return (defined $exit_code and $exit_code == 259);
}

sub get_exit_code
{
	return undef if not $build_process;
	my $exit_code;
	$build_process->GetExitCode($exit_code);
	return $exit_code;
}

sub abort_build
{
	LOG "Aborting build";

	open my $f, '>', 'build_abort';	
}

sub start_build
{
	my %params = @_;
	
	LOG "Starting build";
	
	unlink 'build_abort';

	$build_start_time = time;
	
	Win32::Process::Create(
		$build_process,
		"c:\\perl\\bin\\perl.exe",
		"perl build.pl" . ($params{commit} ? ' --commitlatest' : '') . ($params{force} ? ' --force' : ''),
		0,
		CREATE_NO_WINDOW,
		"c:\\0ad\\autobuild") or die "Error spawning build script: ".Win32::FormatMessage(Win32::GetLastError());

	$build_required = 0;
	$commit_required = 0;
	$build_active = 1;
}