Skip to content

Commit

Permalink
#1379 DropsDaemon
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 21, 2022
1 parent 55dbfff commit c8e5ad1
Show file tree
Hide file tree
Showing 4 changed files with 191 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/rultor/agents/Agents.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import com.jcabi.ssh.Ssh;
import com.rultor.agents.daemons.ArchivesDaemon;
import com.rultor.agents.daemons.DismountDaemon;
import com.rultor.agents.daemons.DropsDaemon;
import com.rultor.agents.daemons.EndsDaemon;
import com.rultor.agents.daemons.KillsDaemon;
import com.rultor.agents.daemons.SanitizesDaemon;
Expand Down Expand Up @@ -254,6 +255,7 @@ public Agent agent(final Talk talk, final Profile profile)
),
// @checkstyle MagicNumber (1 line)
new DismountDaemon(TimeUnit.DAYS.toMinutes(5L)),
new DropsDaemon(TimeUnit.DAYS.toMinutes(1L)),
new StartsDaemon(profile),
new KillsDaemon(TimeUnit.HOURS.toMinutes(2L)),
new StopsDaemon(),
Expand Down
66 changes: 66 additions & 0 deletions src/main/java/com/rultor/agents/daemons/Container.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/**
* Copyright (c) 2009-2022 Yegor Bugayenko
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met: 1) Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer. 2) Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution. 3) Neither the name of the rultor.com nor
* the names of its contributors may be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
* NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.rultor.agents.daemons;

import com.jcabi.aspects.Immutable;
import java.util.Locale;
import lombok.EqualsAndHashCode;

/**
* Turn talk name into Docker container name.
*
* @author Yegor Bugayenko ([email protected])
* @version $Id$
* @since 1.72
*/
@Immutable
@EqualsAndHashCode(callSuper = false)
public final class Container {

/**
* Talk name.
*/
private final transient String name;

/**
* Ctor.
* @param talk Script name
*/
public Container(final String talk) {
this.name = talk;
}

@Override
public String toString() {
return this.name.replaceAll("[^a-zA-Z0-9_.-]", "_")
.toLowerCase(Locale.ENGLISH);
}

}
121 changes: 121 additions & 0 deletions src/main/java/com/rultor/agents/daemons/DropsDaemon.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
/**
* Copyright (c) 2009-2022 Yegor Bugayenko
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met: 1) Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer. 2) Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution. 3) Neither the name of the rultor.com nor
* the names of its contributors may be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
* NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.rultor.agents.daemons;

import com.jcabi.aspects.Immutable;
import com.jcabi.log.Logger;
import com.jcabi.ssh.Shell;
import com.jcabi.ssh.Ssh;
import com.jcabi.xml.XML;
import com.rultor.Time;
import com.rultor.agents.AbstractAgent;
import com.rultor.agents.shells.TalkShells;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.xembly.Directive;
import org.xembly.Directives;
import org.xembly.Xembler;

/**
* If the daemon is too old and the Docker container is already gone.
*
* @author Yegor Bugayenko ([email protected])
* @version $Id$
* @since 1.72
*/
@Immutable
@ToString
@EqualsAndHashCode(callSuper = false)
public final class DropsDaemon extends AbstractAgent {

/**
* Ctor.
*/
public DropsDaemon() {
// @checkstyle MagicNumber (1 line)
this(TimeUnit.DAYS.toMinutes(10L));
}

/**
* Ctor.
* @param mins Maximum minutes per build
*/
public DropsDaemon(final long mins) {
super(
"/talk/daemon[started and not(code) and not(ended)]",
String.format(
// @checkstyle LineLength (1 line)
"/talk[(current-dateTime() - xs:dateTime(daemon/started)) div xs:dayTimeDuration('PT1M') > %d]",
mins
),
"/talk/shell[host and port and login and key]"
);
}

@Override
public Iterable<Directive> process(final XML xml) throws IOException {
final Shell shell = new TalkShells(xml).get();
final String talk = xml.xpath("/talk/@name").get(0);
final String container = new Container(talk).toString();
final int exit = new Shell.Empty(shell).exec(
String.format(
"docker ps | cut -f1 -d ' ' | grep %s",
Ssh.escape(container)
)
);
final Directives dirs = new Directives();
if (exit != 0) {
Logger.warn(
this,
"Docker container %s is lost in %s, time to drop the daemon",
container, talk
);
dirs.append(
new Directives()
.xpath("/talk/daemon")
.strict(1)
.add("ended").set(new Time().iso()).up()
.add("code").set("1").up()
.add("tail").set(
Xembler.escape(
String.format(
"Docker container %s is lost",
container
)
)
)
);
}
return dirs;
}

}
4 changes: 2 additions & 2 deletions src/main/java/com/rultor/agents/req/StartsRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import com.jcabi.ssh.Ssh;
import com.jcabi.xml.XML;
import com.rultor.agents.AbstractAgent;
import com.rultor.agents.daemons.Container;
import com.rultor.spi.Profile;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
Expand Down Expand Up @@ -148,8 +149,7 @@ private String script(final XML req, final String type, final String name)
new MapOf<>(
new MapEntry<>(
"container",
name.replaceAll("[^a-zA-Z0-9_.-]", "_")
.toLowerCase(Locale.ENGLISH)
new Container(name).toString()
)
).entrySet()
)
Expand Down

0 comments on commit c8e5ad1

Please sign in to comment.