All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.api.plugins.announce.internal.Snarl Maven / Gradle / Ivy

There is a newer version: 8.6
Show newest version
/*
 * Copyright 2010 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.gradle.api.plugins.announce.internal;

import org.gradle.api.UncheckedIOException;
import org.gradle.api.plugins.announce.Announcer;
import org.gradle.internal.UncheckedException;
import org.gradle.util.CollectionUtils;

import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.net.ConnectException;
import java.net.InetAddress;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.Arrays;
import java.util.List;

public class Snarl implements Announcer {

    private static final float SNP_VERSION = 1.1f;
    private static final String HEAD = "type=SNP#?version=" + SNP_VERSION;
    private final IconProvider iconProvider;

    public Snarl(IconProvider iconProvider) {
        this.iconProvider = iconProvider;
    }

    @Override
    public void send(String title, String message) {
        try {
            send(InetAddress.getByName(null), title, message);
        } catch (UnknownHostException e) {
            throw UncheckedException.throwAsUncheckedException(e);
        }
    }

    private void send(InetAddress host, final String title, final String message) {
        try (Socket socket = new Socket(host, 9887);
             OutputStream outputStream = socket.getOutputStream();
             PrintWriter printWriter = new PrintWriter(outputStream, true)) {
            printWriter.println(formatMessage(title, message));
        } catch (ConnectException e) {
            // Snarl is not running
            throw new AnnouncerUnavailableException("Snarl is not running on host " + String.valueOf(host) + ".", e);
        } catch (IOException ioException) {
            throw new UncheckedIOException(ioException);
        }
    }

    private String formatMessage(String title, String message) {
        final File icon = iconProvider.getIcon(32, 32);
        List properties = Arrays.asList(
            formatProperty("action", "notification"),
            formatProperty("app", "Gradle Snarl Notifier"),
            formatProperty("class", "alert"),
            formatProperty("title", title),
            formatProperty("text", message),
            formatProperty("icon", icon == null ? null : icon.getAbsolutePath()),
            formatProperty("timeout", "10"));
        return HEAD + CollectionUtils.join("", properties) + "\r\n";
    }

    private static String formatProperty(String name, String value) {
        if (value != null && !value.isEmpty()) {
            return "#?" + name + "=" + value;
        } else {
            return "";
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy