summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/taskmanager/tasks/LdadpLauncher.java
blob: cb648b90b83016b3b518fc1503dfb00f4e3da795 (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
package org.openslx.taskmanager.tasks;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.atomic.AtomicReference;

import org.openslx.satserver.util.Constants;
import org.openslx.taskmanager.api.SystemCommandTask;

import com.google.gson.annotations.Expose;

public class LdadpLauncher extends SystemCommandTask
{
	@Expose
	private int[] ids = null;

	private Output status = new Output();

	private static AtomicReference<LdadpLauncher> isRunning = new AtomicReference<>();

	@Override
	protected boolean initTask()
	{
		this.setStatusObject( this.status );
		if ( ids == null ) {
			status.addMessage( "No ids passed to task." );
			return false;
		}
		return true;
	}

	@Override
	protected String[] initCommandLine()
	{
		if ( !isRunning.compareAndSet( null, this ) ) {
			LdadpLauncher other = isRunning.get();
			if ( other != null && !Arrays.equals( this.ids, other.ids ) ) {
				status.addMessage( "Another operation is already in progress." );
			}
			return null;
		}
		List<String> args = new ArrayList<>();
		args.addAll( Arrays.asList( new String[] {
				"/usr/bin/sudo",
				"-n",
				"-u", "ldadp", Constants.BASEDIR + "/scripts/ldadp-launcher",
				"/opt/ldadp",
				"--"
		} ) );
		for ( int i = 0; i < ids.length; ++i ) {
			args.add( Integer.toString( this.ids[i] ) );
		}
		this.timeoutSeconds = 8;
		return args.toArray( new String[ args.size() ] );
	}

	@Override
	protected boolean processEnded( int exitCode )
	{
		isRunning.compareAndSet( this, null );
		return exitCode == 0;
	}

	@Override
	protected void processStdOut( String line )
	{
		//status.addMessage( line );
	}

	@Override
	protected void processStdErr( String line )
	{
		status.addMessage( line );
	}

	class Output
	{
		private String messages = null;

		private void addMessage( String str )
		{
			if ( messages == null ) {
				messages = str;
			} else {
				messages += "\n" + str;
			}
		}
	}

}