aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-process/src/main/java/org/sonar/process/DefaultProcessCommands.java
blob: 04a608fef06fbf74cbf8a8a86214f4bb2755de9c (plain)
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
/*
 * SonarQube
 * Copyright (C) 2009-2016 SonarSource SA
 * mailto:contact AT sonarsource DOT com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser 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.
 */
package org.sonar.process;

import java.io.File;
import org.slf4j.LoggerFactory;

/**
 * Default implementation of {@link ProcessCommands} based on a {@link AllProcessesCommands} of which will request a
 * single {@link ProcessCommands} to use as delegate for the specified processNumber.
 */
public class DefaultProcessCommands implements ProcessCommands {
  private final AllProcessesCommands allProcessesCommands;
  private final ProcessCommands delegate;

  private DefaultProcessCommands(File directory, int processNumber, boolean clean) {
    this.allProcessesCommands = new AllProcessesCommands(directory);
    this.delegate = clean ? allProcessesCommands.createAfterClean(processNumber) : allProcessesCommands.create(processNumber);
  }

  /**
   * Main DefaultProcessCommands will clear the shared memory space of the specified process number when created and will
   * then write and/or read to it.
   * Therefor there should be only one main DefaultProcessCommands.
   */
  public static DefaultProcessCommands main(File directory, int processNumber) {
    return new DefaultProcessCommands(directory, processNumber, true);
  }

  /**
   * Secondary DefaultProcessCommands will read and write to the shared memory space but will not clear it. Therefor, there
   * can be any number of them.
   */
  public static DefaultProcessCommands secondary(File directory, int processNumber) {
    return new DefaultProcessCommands(directory, processNumber, false);
  }

  @Override
  public boolean isUp() {
    return delegate.isUp();
  }

  @Override
  public void setUp() {
    delegate.setUp();
  }

  @Override
  public boolean isOperational() {
    return delegate.isOperational();
  }

  @Override
  public void setOperational() {
    delegate.setOperational();
  }

  @Override
  public void ping() {
    delegate.ping();
  }

  @Override
  public long getLastPing() {
    return delegate.getLastPing();
  }

  @Override
  public void askForStop() {
    delegate.askForStop();
  }

  @Override
  public boolean askedForStop() {
    return delegate.askedForStop();
  }

  @Override
  public void askForRestart() {
    delegate.askForRestart();
  }

  @Override
  public boolean askedForRestart() {
    return delegate.askedForRestart();
  }

  @Override
  public void acknowledgeAskForRestart() {
    delegate.acknowledgeAskForRestart();
  }

  @Override
  public void endWatch() {
    try {
      close();
    } catch (Exception e) {
      LoggerFactory.getLogger(getClass()).error("Failed to close DefaultProcessCommands", e);
    }
  }

  @Override
  public void close() {
    allProcessesCommands.close();
  }
}