@ -0,0 +1,185 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
|
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic</artifactId> |
||||
<version>5.3</version> |
||||
<name>Subsonic</name> |
||||
<packaging>pom</packaging> |
||||
<organization> |
||||
<name>Subsonic</name> |
||||
<url>http://subsonic.org/</url> |
||||
</organization> |
||||
<inceptionYear>2004</inceptionYear> |
||||
|
||||
<properties> |
||||
<failOnDependencyWarning>true</failOnDependencyWarning> |
||||
<project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding> |
||||
<cxf.version>2.4.2</cxf.version> |
||||
</properties> |
||||
|
||||
<repositories> |
||||
<repository> |
||||
<id>local1</id> |
||||
<name>Local Repository 1</name> |
||||
<url>file:repo</url> |
||||
</repository> |
||||
<repository> |
||||
<id>local2</id> |
||||
<name>Local Repository 2</name> |
||||
<url>file:../repo</url> |
||||
</repository> |
||||
<repository> |
||||
<id>java_net</id> |
||||
<name>download.java.net</name> |
||||
<url>http://download.java.net/maven/2/</url> |
||||
</repository> |
||||
<repository> |
||||
<id>teleal</id> |
||||
<name>teleal</name> |
||||
<url>http://teleal.org/m2</url> |
||||
</repository> |
||||
</repositories> |
||||
|
||||
<pluginRepositories> |
||||
<pluginRepository> |
||||
<id>local1</id> |
||||
<name>Local Repository 1</name> |
||||
<url>file:repo</url> |
||||
</pluginRepository> |
||||
<pluginRepository> |
||||
<id>local2</id> |
||||
<name>Local Repository 2</name> |
||||
<url>file:../repo</url> |
||||
</pluginRepository> |
||||
<pluginRepository> |
||||
<id>Codehaus Repository</id> |
||||
<url>http://repository.codehaus.org/</url> |
||||
</pluginRepository> |
||||
</pluginRepositories> |
||||
|
||||
<scm> |
||||
<connection>scm:svn:svn+ssh://sindre_mehus@svn.code.sf.net/p/subsonic/code/trunk</connection> |
||||
<developerConnection>scm:svn:svn+ssh://sindre_mehus@svn.code.sf.net/p/subsonic/code/trunk</developerConnection> |
||||
<url>https://sourceforge.net/p/subsonic/code</url> |
||||
</scm> |
||||
|
||||
<ciManagement> |
||||
<system>continuum</system> |
||||
<notifiers> |
||||
<notifier> |
||||
<type>mail</type> |
||||
<configuration> |
||||
<address>sindre@activeobjects.no</address> |
||||
</configuration> |
||||
</notifier> |
||||
</notifiers> |
||||
</ciManagement> |
||||
|
||||
<developers> |
||||
<developer> |
||||
<name>Sindre Mehus</name> |
||||
<email>sindre@activeobjects.no</email> |
||||
</developer> |
||||
</developers> |
||||
|
||||
<modules> |
||||
<module>subsonic-rest-api</module> |
||||
<module>subsonic-sonos-api</module> |
||||
<module>subsonic-main</module> |
||||
</modules> |
||||
|
||||
<profiles> |
||||
<profile> |
||||
<id>full</id> |
||||
<modules> |
||||
<module>subsonic-booter</module> |
||||
<module>subsonic-installer-windows</module> |
||||
<module>subsonic-installer-mac</module> |
||||
<module>subsonic-installer-debian</module> |
||||
<module>subsonic-installer-rpm</module> |
||||
<module>subsonic-backend</module> |
||||
<module>subsonic-site</module> |
||||
<module>subsonic-assembly</module> |
||||
</modules> |
||||
</profile> |
||||
|
||||
</profiles> |
||||
|
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-compiler-plugin</artifactId> |
||||
<version>2.3.2</version> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-assembly-plugin</artifactId> |
||||
<version>2.2.1</version> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-antrun-plugin</artifactId> |
||||
<version>1.6</version> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-dependency-plugin</artifactId> |
||||
<version>2.2</version> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.codehaus.mojo</groupId> |
||||
<artifactId>buildnumber-maven-plugin</artifactId> |
||||
<version>1.0</version> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.apache.cxf</groupId> |
||||
<artifactId>cxf-codegen-plugin</artifactId> |
||||
<version>${cxf.version}</version> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.jvnet.jaxb2.maven2</groupId> |
||||
<artifactId>maven-jaxb2-plugin</artifactId> |
||||
<version>0.8.3</version> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
|
||||
<plugins> |
||||
|
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-compiler-plugin</artifactId> |
||||
<configuration> |
||||
<source>1.6</source> |
||||
<target>1.6</target> |
||||
<encoding>ISO-8859-1</encoding> |
||||
<verbose>false</verbose> |
||||
<compilerVersion>1.6</compilerVersion> |
||||
<showWarnings>true</showWarnings> |
||||
</configuration> |
||||
</plugin> |
||||
|
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-dependency-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<id>analyze</id> |
||||
<goals> |
||||
<goal>analyze-only</goal> |
||||
</goals> |
||||
<configuration> |
||||
<failOnWarning>${failOnDependencyWarning}</failOnWarning> |
||||
<ignoreNonCompile>true</ignoreNonCompile> |
||||
</configuration> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
|
||||
</plugins> |
||||
</build> |
||||
</project> |
@ -0,0 +1,6 @@ |
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>ant-zip</groupId> |
||||
<artifactId>ant-zip</artifactId> |
||||
<version>1.6.2</version> |
||||
</project> |
@ -0,0 +1,6 @@ |
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>com.hoodcomputing</groupId> |
||||
<artifactId>natpmp</artifactId> |
||||
<version>0.1</version> |
||||
</project> |
@ -0,0 +1,6 @@ |
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>com.jgoodies</groupId> |
||||
<artifactId>forms</artifactId> |
||||
<version>1.1.0</version> |
||||
</project> |
@ -0,0 +1,6 @@ |
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>com.jgoodies</groupId> |
||||
<artifactId>looks</artifactId> |
||||
<version>2.1.4</version> |
||||
</project> |
@ -0,0 +1,25 @@ |
||||
<!-- |
||||
~ This file is part of Subsonic. |
||||
~ |
||||
~ Subsonic is free software: you can redistribute it and/or modify |
||||
~ it under the terms of the GNU General Public License as published by |
||||
~ the Free Software Foundation, either version 3 of the License, or |
||||
~ (at your option) any later version. |
||||
~ |
||||
~ Subsonic 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 General Public License for more details. |
||||
~ |
||||
~ You should have received a copy of the GNU General Public License |
||||
~ along with Subsonic. If not, see <http://www.gnu.org/licenses/>. |
||||
~ |
||||
~ Copyright 2015 (C) Sindre Mehus |
||||
--> |
||||
|
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>com.oracle</groupId> |
||||
<artifactId>appbundler</artifactId> |
||||
<version>1.0</version> |
||||
</project> |
@ -0,0 +1,6 @@ |
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>javax.xml</groupId> |
||||
<artifactId>jaxrpc</artifactId> |
||||
<version>1.1</version> |
||||
</project> |
@ -0,0 +1,6 @@ |
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>net.sbbi</groupId> |
||||
<artifactId>sbbi-upnplib</artifactId> |
||||
<version>1.0.4</version> |
||||
</project> |
@ -0,0 +1,6 @@ |
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>net.sourceforge.jarbundler</groupId> |
||||
<artifactId>jarbundler</artifactId> |
||||
<version>2.1.0</version> |
||||
</project> |
@ -0,0 +1,6 @@ |
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>net.tanesha.recaptcha4j</groupId> |
||||
<artifactId>recaptcha4j</artifactId> |
||||
<version>0.0.8</version> |
||||
</project> |
@ -0,0 +1,6 @@ |
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.directwebremoting</groupId> |
||||
<artifactId>dwr</artifactId> |
||||
<version>3.0.rc1</version> |
||||
</project> |
@ -0,0 +1,6 @@ |
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.terracotta</groupId> |
||||
<artifactId>ehcache-probe</artifactId> |
||||
<version>1.0.3</version> |
||||
</project> |
@ -0,0 +1,6 @@ |
||||
<project> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.wetorrent</groupId> |
||||
<artifactId>weupnp</artifactId> |
||||
<version>2009-10-16</version> |
||||
</project> |
@ -0,0 +1,63 @@ |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
|
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-assembly</artifactId> |
||||
<packaging>pom</packaging> |
||||
<name>Subsonic Assembly</name> |
||||
|
||||
<parent> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic</artifactId> |
||||
<version>5.3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-main</artifactId> |
||||
<version>${project.version}</version> |
||||
<type>war</type> |
||||
</dependency> |
||||
|
||||
</dependencies> |
||||
|
||||
<build> |
||||
<finalName>subsonic-${project.version}</finalName> |
||||
<plugins> |
||||
|
||||
<!-- Configuration of assembly plugin for creating the distributions. --> |
||||
<plugin> |
||||
<artifactId>maven-assembly-plugin</artifactId> |
||||
<configuration> |
||||
<descriptors> |
||||
<descriptor>src/main/assembly/war.xml</descriptor> |
||||
<descriptor>src/main/assembly/standalone.xml</descriptor> |
||||
<descriptor>src/main/assembly/src.xml</descriptor> |
||||
</descriptors> |
||||
</configuration> |
||||
</plugin> |
||||
|
||||
<!-- Work-around since the target directory is not created automatically. --> |
||||
<plugin> |
||||
<artifactId>maven-antrun-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<phase>validate</phase> |
||||
<configuration> |
||||
<target> |
||||
<mkdir dir="target"/> |
||||
</target> |
||||
</configuration> |
||||
<goals> |
||||
<goal>run</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
|
||||
</plugins> |
||||
</build> |
||||
|
||||
</project> |
@ -0,0 +1,56 @@ |
||||
<!-- Defines the set of files that should be included in the source distribution. --> |
||||
|
||||
<assembly> |
||||
<id>src</id> |
||||
<formats> |
||||
<format>zip</format> |
||||
</formats> |
||||
<includeBaseDirectory>false</includeBaseDirectory> |
||||
<fileSets> |
||||
|
||||
<fileSet> |
||||
<directory>..</directory> |
||||
<includes> |
||||
<include>pom.xml</include> |
||||
</includes> |
||||
<outputDirectory></outputDirectory> |
||||
</fileSet> |
||||
|
||||
<fileSet> |
||||
<directory>../repo</directory> |
||||
<outputDirectory>repo</outputDirectory> |
||||
</fileSet> |
||||
|
||||
<fileSet> |
||||
<directory>../subsonic-main</directory> |
||||
<includes> |
||||
<include>src/**</include> |
||||
<include>pom.xml</include> |
||||
<include>target/classes/build_number.txt</include> |
||||
<include>LICENSE.TXT</include> |
||||
<include>README.TXT</include> |
||||
<include>Getting Started.html</include> |
||||
</includes> |
||||
<outputDirectory>subsonic-main</outputDirectory> |
||||
</fileSet> |
||||
|
||||
<fileSet> |
||||
<directory>../subsonic-rest-api</directory> |
||||
<includes> |
||||
<include>src/**</include> |
||||
<include>pom.xml</include> |
||||
</includes> |
||||
<outputDirectory>subsonic-rest-api</outputDirectory> |
||||
</fileSet> |
||||
|
||||
<fileSet> |
||||
<directory>../subsonic-sonos-api</directory> |
||||
<includes> |
||||
<include>src/**</include> |
||||
<include>pom.xml</include> |
||||
</includes> |
||||
<outputDirectory>subsonic-sonos-api</outputDirectory> |
||||
</fileSet> |
||||
|
||||
</fileSets> |
||||
</assembly> |
@ -0,0 +1,43 @@ |
||||
<!-- Defines the set of files that should be included in the standalone distribution. --> |
||||
|
||||
<assembly> |
||||
<id>standalone</id> |
||||
<formats> |
||||
<format>tar.gz</format> |
||||
</formats> |
||||
<includeBaseDirectory>false</includeBaseDirectory> |
||||
<fileSets> |
||||
<fileSet> |
||||
<directory>../subsonic-main</directory> |
||||
<outputDirectory/> |
||||
<includes> |
||||
<include>README.TXT</include> |
||||
<include>LICENSE.TXT</include> |
||||
<include>Getting Started.html</include> |
||||
</includes> |
||||
</fileSet> |
||||
<fileSet> |
||||
<directory>../subsonic-main/target</directory> |
||||
<outputDirectory/> |
||||
<includes> |
||||
<include>*.war</include> |
||||
</includes> |
||||
</fileSet> |
||||
<fileSet> |
||||
<directory>../subsonic-booter/target</directory> |
||||
<outputDirectory/> |
||||
<includes> |
||||
<include>subsonic-booter-jar-with-dependencies.jar</include> |
||||
</includes> |
||||
</fileSet> |
||||
<fileSet> |
||||
<directory>../subsonic-booter/src/main/script</directory> |
||||
<outputDirectory/> |
||||
<includes> |
||||
<include>subsonic.sh</include> |
||||
<include>subsonic.bat</include> |
||||
</includes> |
||||
<fileMode>0777</fileMode> |
||||
</fileSet> |
||||
</fileSets> |
||||
</assembly> |
@ -0,0 +1,27 @@ |
||||
<!-- Defines the set of files that should be included in the binary distribution. --> |
||||
|
||||
<assembly> |
||||
<id>war</id> |
||||
<formats> |
||||
<format>zip</format> |
||||
</formats> |
||||
<includeBaseDirectory>false</includeBaseDirectory> |
||||
<fileSets> |
||||
<fileSet> |
||||
<directory>../subsonic-main</directory> |
||||
<outputDirectory></outputDirectory> |
||||
<includes> |
||||
<include>README.TXT</include> |
||||
<include>LICENSE.TXT</include> |
||||
<include>Getting Started.html</include> |
||||
</includes> |
||||
</fileSet> |
||||
<fileSet> |
||||
<directory>../subsonic-main/target</directory> |
||||
<outputDirectory></outputDirectory> |
||||
<includes> |
||||
<include>*.war</include> |
||||
</includes> |
||||
</fileSet> |
||||
</fileSets> |
||||
</assembly> |
@ -0,0 +1,100 @@ |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
|
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-booter</artifactId> |
||||
<name>Subsonic Booter</name> |
||||
|
||||
<parent> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic</artifactId> |
||||
<version>5.3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
|
||||
<dependency> |
||||
<groupId>org.mortbay.jetty</groupId> |
||||
<artifactId>jetty</artifactId> |
||||
<version>6.1.5</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.mortbay.jetty</groupId> |
||||
<artifactId>jetty-embedded</artifactId> |
||||
<version>6.1.5</version> |
||||
<exclusions> |
||||
<exclusion> |
||||
<groupId>javax.servlet.jsp</groupId> |
||||
<artifactId>jsp-api</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
<scope>runtime</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.mortbay.jetty</groupId> |
||||
<artifactId>jsp-2.0</artifactId> |
||||
<version>6.1.5</version> |
||||
<type>pom</type> |
||||
<scope>runtime</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>com.jgoodies</groupId> |
||||
<artifactId>looks</artifactId> |
||||
<version>2.1.4</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>com.jgoodies</groupId> |
||||
<artifactId>forms</artifactId> |
||||
<version>1.1.0</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring</artifactId> |
||||
<version>2.5.6</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>commons-io</groupId> |
||||
<artifactId>commons-io</artifactId> |
||||
<version>1.3.1</version> |
||||
</dependency> |
||||
|
||||
</dependencies> |
||||
|
||||
<build> |
||||
<finalName>subsonic-booter</finalName> |
||||
<plugins> |
||||
|
||||
<plugin> |
||||
<artifactId>maven-assembly-plugin</artifactId> |
||||
<configuration> |
||||
<descriptorRefs> |
||||
<descriptorRef>jar-with-dependencies</descriptorRef> |
||||
</descriptorRefs> |
||||
<archive> |
||||
<manifestFile>${basedir}/src/main/resources/META-INF/MANIFEST.MF</manifestFile> |
||||
</archive> |
||||
</configuration> |
||||
|
||||
<!-- Create executable jar file with all dependencies during 'package' phase. --> |
||||
<executions> |
||||
<execution> |
||||
<id>make-assembly</id> |
||||
<phase>package</phase> |
||||
<goals> |
||||
<goal>attached</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
|
||||
</plugins> |
||||
</build> |
||||
|
||||
</project> |
@ -0,0 +1,65 @@ |
||||
package net.sourceforge.subsonic.booter; |
||||
|
||||
import java.util.Arrays; |
||||
import java.util.List; |
||||
|
||||
import javax.swing.JOptionPane; |
||||
|
||||
import org.springframework.context.support.ClassPathXmlApplicationContext; |
||||
|
||||
import net.sourceforge.subsonic.booter.agent.SettingsPanel; |
||||
import net.sourceforge.subsonic.booter.agent.SubsonicAgent; |
||||
|
||||
/** |
||||
* Application entry point for Subsonic booter. |
||||
* <p/> |
||||
* Use command line argument "-agent" to start the Windows service monitoring agent, |
||||
* or "-mac" to start the Mac version of the deployer. |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class Main { |
||||
|
||||
public Main(String contextName, List<String> args) { |
||||
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext" + contextName + ".xml"); |
||||
|
||||
if ("-agent".equals(contextName)) { |
||||
|
||||
SubsonicAgent agent = (SubsonicAgent) context.getBean("agent"); |
||||
SettingsPanel settingsPanel = (SettingsPanel) context.getBean("settingsPanel"); |
||||
|
||||
agent.setElevated(args.contains("-elevated")); |
||||
|
||||
if (args.contains("-balloon")) { |
||||
agent.showTrayIconMessage(); |
||||
} |
||||
|
||||
if (args.contains("-stop")) { |
||||
agent.startOrStopService(false); |
||||
agent.showStatusPanel(); |
||||
} else if (args.contains("-start")) { |
||||
agent.startOrStopService(true); |
||||
agent.showStatusPanel(); |
||||
} |
||||
|
||||
if (args.contains("-settings")) { |
||||
String[] settings = args.get(args.indexOf("-settings") + 1).split(","); |
||||
try { |
||||
agent.showSettingsPanel(); |
||||
settingsPanel.saveSettings(Integer.valueOf(settings[0]), Integer.valueOf(settings[1]), Integer.valueOf(settings[2]), settings[3]); |
||||
settingsPanel.readValues(); |
||||
} catch (Exception x) { |
||||
JOptionPane.showMessageDialog(settingsPanel, x.getMessage(), "Error", JOptionPane.WARNING_MESSAGE); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
public static void main(String[] args) { |
||||
String context = "-deployer"; |
||||
if (args.length > 0) { |
||||
context = args[0]; |
||||
} |
||||
new Main(context, Arrays.asList(args)); |
||||
} |
||||
} |
@ -0,0 +1,375 @@ |
||||
package net.sourceforge.subsonic.booter.agent; |
||||
|
||||
import com.jgoodies.forms.builder.DefaultFormBuilder; |
||||
import com.jgoodies.forms.factories.Borders; |
||||
import com.jgoodies.forms.factories.ButtonBarFactory; |
||||
import com.jgoodies.forms.layout.FormLayout; |
||||
import net.sourceforge.subsonic.booter.deployer.DeploymentStatus; |
||||
import net.sourceforge.subsonic.booter.deployer.SubsonicDeployer; |
||||
|
||||
import javax.swing.*; |
||||
import java.awt.*; |
||||
import java.awt.event.ActionEvent; |
||||
import java.awt.event.ActionListener; |
||||
import java.io.BufferedReader; |
||||
import java.io.File; |
||||
import java.io.FileReader; |
||||
import java.io.FileWriter; |
||||
import java.io.IOException; |
||||
import java.io.PrintWriter; |
||||
import java.io.Reader; |
||||
import java.io.Writer; |
||||
import java.text.DecimalFormat; |
||||
import java.text.DecimalFormatSymbols; |
||||
import java.text.Format; |
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
import java.util.Locale; |
||||
import java.util.regex.Matcher; |
||||
import java.util.regex.Pattern; |
||||
|
||||
/** |
||||
* Panel displaying the settings of the Subsonic service. |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class SettingsPanel extends JPanel implements SubsonicListener { |
||||
|
||||
private static final Format INTEGER_FORMAT = new DecimalFormat("0", DecimalFormatSymbols.getInstance(Locale.UK)); |
||||
|
||||
private final SubsonicAgent subsonicAgent; |
||||
private JFormattedTextField portTextField; |
||||
private JCheckBox httpsPortCheckBox; |
||||
private JFormattedTextField httpsPortTextField; |
||||
private JComboBox contextPathComboBox; |
||||
private JFormattedTextField memoryTextField; |
||||
private JButton defaultButton; |
||||
private JButton saveButton; |
||||
public SettingsPanel(SubsonicAgent subsonicAgent) { |
||||
this.subsonicAgent = subsonicAgent; |
||||
createComponents(); |
||||
configureComponents(); |
||||
layoutComponents(); |
||||
addBehaviour(); |
||||
readValues(); |
||||
subsonicAgent.addListener(this); |
||||
} |
||||
|
||||
public void readValues() { |
||||
portTextField.setValue(getPortFromOptionsFile()); |
||||
memoryTextField.setValue(getMemoryLimitFromOptionsFile()); |
||||
contextPathComboBox.setSelectedItem(getContextPathFromOptionsFile()); |
||||
int httpsPort = getHttpsPortFromOptionsFile(); |
||||
boolean httpsEnabled = httpsPort != 0; |
||||
httpsPortTextField.setValue(httpsEnabled ? httpsPort : 4443); |
||||
httpsPortTextField.setEnabled(httpsEnabled); |
||||
httpsPortCheckBox.setSelected(httpsEnabled); |
||||
} |
||||
|
||||
private int getHttpsPortFromOptionsFile() { |
||||
try { |
||||
String s = grep("-Dsubsonic.httpsPort=(\\d+)"); |
||||
return Integer.parseInt(s); |
||||
} catch (Exception x) { |
||||
x.printStackTrace(); |
||||
return SubsonicDeployer.DEFAULT_HTTPS_PORT; |
||||
} |
||||
} |
||||
|
||||
private int getPortFromOptionsFile() { |
||||
try { |
||||
String s = grep("-Dsubsonic.port=(\\d+)"); |
||||
return Integer.parseInt(s); |
||||
} catch (Exception x) { |
||||
x.printStackTrace(); |
||||
return SubsonicDeployer.DEFAULT_PORT; |
||||
} |
||||
} |
||||
|
||||
private int getMemoryLimitFromOptionsFile() { |
||||
try { |
||||
String s = grep("-Xmx(\\d+)m"); |
||||
return Integer.parseInt(s); |
||||
} catch (Exception x) { |
||||
x.printStackTrace(); |
||||
return SubsonicDeployer.DEFAULT_MEMORY_LIMIT; |
||||
} |
||||
} |
||||
|
||||
private String getContextPathFromOptionsFile() { |
||||
try { |
||||
String s = grep("-Dsubsonic.contextPath=(.*)"); |
||||
if (s == null) { |
||||
throw new NullPointerException(); |
||||
} |
||||
return s; |
||||
} catch (Exception x) { |
||||
x.printStackTrace(); |
||||
return SubsonicDeployer.DEFAULT_CONTEXT_PATH; |
||||
} |
||||
} |
||||
|
||||
private void createComponents() { |
||||
portTextField = new JFormattedTextField(INTEGER_FORMAT); |
||||
httpsPortTextField = new JFormattedTextField(INTEGER_FORMAT); |
||||
httpsPortCheckBox = new JCheckBox("Enable https on port"); |
||||
contextPathComboBox = new JComboBox(); |
||||
memoryTextField = new JFormattedTextField(INTEGER_FORMAT); |
||||
defaultButton = new JButton("Restore defaults"); |
||||
saveButton = new JButton("Save settings"); |
||||
} |
||||
|
||||
private void configureComponents() { |
||||
contextPathComboBox.setEditable(true); |
||||
contextPathComboBox.addItem("/"); |
||||
contextPathComboBox.addItem("/subsonic"); |
||||
contextPathComboBox.addItem("/music"); |
||||
} |
||||
|
||||
private void layoutComponents() { |
||||
FormLayout layout = new FormLayout("d, 6dlu, max(d;30dlu):grow"); |
||||
DefaultFormBuilder builder = new DefaultFormBuilder(layout); |
||||
builder.append("Port number", portTextField); |
||||
builder.append(httpsPortCheckBox, httpsPortTextField); |
||||
builder.append("Memory limit (MB)", memoryTextField); |
||||
builder.append("Context path", contextPathComboBox); |
||||
|
||||
setBorder(Borders.DIALOG_BORDER); |
||||
|
||||
setLayout(new BorderLayout(12, 12)); |
||||
add(builder.getPanel(), BorderLayout.CENTER); |
||||
add(ButtonBarFactory.buildCenteredBar(defaultButton, saveButton), BorderLayout.SOUTH); |
||||
} |
||||
|
||||
private void addBehaviour() { |
||||
saveButton.addActionListener(new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
try { |
||||
subsonicAgent.checkElevation("-settings", getMemoryLimit() + "," + getPort() + "," + getHttpsPort() + "," + getContextPath()); |
||||
saveSettings(getMemoryLimit(), getPort(), getHttpsPort(), getContextPath()); |
||||
} catch (Exception x) { |
||||
JOptionPane.showMessageDialog(SettingsPanel.this, x.getMessage(), "Error", JOptionPane.WARNING_MESSAGE); |
||||
} |
||||
} |
||||
}); |
||||
|
||||
defaultButton.addActionListener(new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
portTextField.setValue(SubsonicDeployer.DEFAULT_PORT); |
||||
httpsPortTextField.setValue(4443); |
||||
httpsPortTextField.setEnabled(false); |
||||
httpsPortCheckBox.setSelected(false); |
||||
memoryTextField.setValue(SubsonicDeployer.DEFAULT_MEMORY_LIMIT); |
||||
contextPathComboBox.setSelectedItem(SubsonicDeployer.DEFAULT_CONTEXT_PATH); |
||||
} |
||||
}); |
||||
|
||||
httpsPortCheckBox.addActionListener(new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
httpsPortTextField.setEnabled(httpsPortCheckBox.isSelected()); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
private String getContextPath() throws SettingsException { |
||||
String contextPath = (String) contextPathComboBox.getSelectedItem(); |
||||
if (contextPath.contains(" ") || !contextPath.startsWith("/")) { |
||||
throw new SettingsException("Please specify a valid context path."); |
||||
} |
||||
return contextPath; |
||||
} |
||||
|
||||
private int getMemoryLimit() throws SettingsException { |
||||
int memoryLimit; |
||||
try { |
||||
memoryLimit = ((Number) memoryTextField.getValue()).intValue(); |
||||
if (memoryLimit < 5) { |
||||
throw new Exception(); |
||||
} |
||||
} catch (Exception x) { |
||||
throw new SettingsException("Please specify a valid memory limit.", x); |
||||
} |
||||
return memoryLimit; |
||||
} |
||||
|
||||
private int getPort() throws SettingsException { |
||||
int port; |
||||
try { |
||||
port = ((Number) portTextField.getValue()).intValue(); |
||||
if (port < 1 || port > 65535) { |
||||
throw new Exception(); |
||||
} |
||||
} catch (Exception x) { |
||||
throw new SettingsException("Please specify a valid port number.", x); |
||||
} |
||||
return port; |
||||
} |
||||
|
||||
private int getHttpsPort() throws SettingsException { |
||||
if (!httpsPortCheckBox.isSelected()) { |
||||
return 0; |
||||
} |
||||
|
||||
int port; |
||||
try { |
||||
port = ((Number) httpsPortTextField.getValue()).intValue(); |
||||
if (port < 1 || port > 65535) { |
||||
throw new Exception(); |
||||
} |
||||
} catch (Exception x) { |
||||
throw new SettingsException("Please specify a valid https port number.", x); |
||||
} |
||||
return port; |
||||
} |
||||
|
||||
public void saveSettings(int memoryLimit, int port, int httpsPort, String contextPath) throws SettingsException { |
||||
File file = getOptionsFile(); |
||||
|
||||
java.util.List<String> lines = readLines(file); |
||||
java.util.List<String> newLines = new ArrayList<String>(); |
||||
|
||||
boolean memoryLimitAdded = false; |
||||
boolean portAdded = false; |
||||
boolean httpsPortAdded = false; |
||||
boolean contextPathAdded = false; |
||||
|
||||
for (String line : lines) { |
||||
if (line.startsWith("-Xmx")) { |
||||
newLines.add("-Xmx" + memoryLimit + "m"); |
||||
memoryLimitAdded = true; |
||||
} else if (line.startsWith("-Dsubsonic.port=")) { |
||||
newLines.add("-Dsubsonic.port=" + port); |
||||
portAdded = true; |
||||
} else if (line.startsWith("-Dsubsonic.httpsPort=")) { |
||||
newLines.add("-Dsubsonic.httpsPort=" + httpsPort); |
||||
httpsPortAdded = true; |
||||
} else if (line.startsWith("-Dsubsonic.contextPath=")) { |
||||
newLines.add("-Dsubsonic.contextPath=" + contextPath); |
||||
contextPathAdded = true; |
||||
} else { |
||||
newLines.add(line); |
||||
} |
||||
} |
||||
|
||||
if (!memoryLimitAdded) { |
||||
newLines.add("-Xmx" + memoryLimit + "m"); |
||||
} |
||||
if (!portAdded) { |
||||
newLines.add("-Dsubsonic.port=" + port); |
||||
} |
||||
if (!httpsPortAdded) { |
||||
newLines.add("-Dsubsonic.httpsPort=" + httpsPort); |
||||
} |
||||
if (!contextPathAdded) { |
||||
newLines.add("-Dsubsonic.contextPath=" + contextPath); |
||||
} |
||||
|
||||
writeLines(file, newLines); |
||||
|
||||
JOptionPane.showMessageDialog(SettingsPanel.this, |
||||
"Please restart Subsonic for the new settings to take effect.", |
||||
"Settings changed", JOptionPane.INFORMATION_MESSAGE); |
||||
|
||||
} |
||||
|
||||
private File getOptionsFile() throws SettingsException { |
||||
File file = new File("subsonic-service.exe.vmoptions"); |
||||
if (!file.isFile() || !file.exists()) { |
||||
throw new SettingsException("File " + file.getAbsolutePath() + " not found."); |
||||
} |
||||
return file; |
||||
} |
||||
|
||||
private List<String> readLines(File file) throws SettingsException { |
||||
List<String> lines = new ArrayList<String>(); |
||||
BufferedReader reader = null; |
||||
try { |
||||
reader = new BufferedReader(new FileReader(file)); |
||||
for (String line = reader.readLine(); line != null; line = reader.readLine()) { |
||||
lines.add(line); |
||||
} |
||||
return lines; |
||||
} catch (IOException x) { |
||||
throw new SettingsException("Failed to read from file " + file.getAbsolutePath(), x); |
||||
} finally { |
||||
closeQuietly(reader); |
||||
} |
||||
} |
||||
|
||||
private void writeLines(File file, List<String> lines) throws SettingsException { |
||||
PrintWriter writer = null; |
||||
try { |
||||
writer = new PrintWriter(new FileWriter(file)); |
||||
for (String line : lines) { |
||||
writer.println(line); |
||||
} |
||||
} catch (IOException x) { |
||||
throw new SettingsException("Failed to write to file " + file.getAbsolutePath(), x); |
||||
} finally { |
||||
closeQuietly(writer); |
||||
} |
||||
} |
||||
|
||||
private String grep(String regexp) throws SettingsException { |
||||
Pattern pattern = Pattern.compile(regexp); |
||||
File file = getOptionsFile(); |
||||
for (String line : readLines(file)) { |
||||
Matcher matcher = pattern.matcher(line); |
||||
if (matcher.matches()) { |
||||
return matcher.group(1); |
||||
} |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
private void closeQuietly(Reader reader) { |
||||
if (reader == null) { |
||||
return; |
||||
} |
||||
|
||||
try { |
||||
reader.close(); |
||||
} catch (IOException x) { |
||||
// Intentionally ignored.
|
||||
} |
||||
} |
||||
|
||||
private void closeQuietly(Writer writer) { |
||||
if (writer == null) { |
||||
return; |
||||
} |
||||
|
||||
try { |
||||
writer.close(); |
||||
} catch (IOException x) { |
||||
// Intentionally ignored.
|
||||
} |
||||
} |
||||
|
||||
public void notifyDeploymentStatus(DeploymentStatus deploymentStatus) { |
||||
// Nothing here yet.
|
||||
} |
||||
|
||||
public void notifyServiceStatus(String serviceStatus) { |
||||
// Nothing here yet.
|
||||
} |
||||
|
||||
public static class SettingsException extends Exception { |
||||
|
||||
public SettingsException(String message, Throwable cause) { |
||||
super(message, cause); |
||||
} |
||||
|
||||
public SettingsException(String message) { |
||||
this(message, null); |
||||
} |
||||
|
||||
@Override |
||||
public String getMessage() { |
||||
if (getCause() == null || getCause().getMessage() == null) { |
||||
return super.getMessage(); |
||||
} |
||||
return super.getMessage() + " " + getCause().getMessage(); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,116 @@ |
||||
package net.sourceforge.subsonic.booter.agent; |
||||
|
||||
import com.jgoodies.forms.builder.DefaultFormBuilder; |
||||
import com.jgoodies.forms.factories.Borders; |
||||
import com.jgoodies.forms.factories.ButtonBarFactory; |
||||
import com.jgoodies.forms.layout.FormLayout; |
||||
import net.sourceforge.subsonic.booter.deployer.DeploymentStatus; |
||||
|
||||
import javax.swing.*; |
||||
import java.awt.*; |
||||
import java.awt.event.ActionEvent; |
||||
import java.awt.event.ActionListener; |
||||
import java.text.DateFormat; |
||||
import java.util.Locale; |
||||
|
||||
/** |
||||
* Panel displaying the status of the Subsonic service. |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class StatusPanel extends JPanel implements SubsonicListener { |
||||
|
||||
private static final DateFormat DATE_FORMAT = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM, Locale.US); |
||||
|
||||
private final SubsonicAgent subsonicAgent; |
||||
|
||||
private JTextField statusTextField; |
||||
private JTextField startedTextField; |
||||
private JTextField memoryTextField; |
||||
private JTextArea errorTextField; |
||||
private JButton startButton; |
||||
private JButton stopButton; |
||||
private JButton urlButton; |
||||
|
||||
public StatusPanel(SubsonicAgent subsonicAgent) { |
||||
this.subsonicAgent = subsonicAgent; |
||||
createComponents(); |
||||
configureComponents(); |
||||
layoutComponents(); |
||||
addBehaviour(); |
||||
subsonicAgent.addListener(this); |
||||
} |
||||
|
||||
private void createComponents() { |
||||
statusTextField = new JTextField(); |
||||
startedTextField = new JTextField(); |
||||
memoryTextField = new JTextField(); |
||||
errorTextField = new JTextArea(3, 24); |
||||
startButton = new JButton("Start"); |
||||
stopButton = new JButton("Stop"); |
||||
urlButton = new JButton(); |
||||
} |
||||
|
||||
private void configureComponents() { |
||||
statusTextField.setEditable(false); |
||||
startedTextField.setEditable(false); |
||||
memoryTextField.setEditable(false); |
||||
errorTextField.setEditable(false); |
||||
|
||||
errorTextField.setLineWrap(true); |
||||
errorTextField.setBorder(startedTextField.getBorder()); |
||||
|
||||
urlButton.setBorderPainted(false); |
||||
urlButton.setContentAreaFilled(false); |
||||
urlButton.setForeground(Color.BLUE.darker()); |
||||
urlButton.setHorizontalAlignment(SwingConstants.LEFT); |
||||
} |
||||
|
||||
private void layoutComponents() { |
||||
JPanel buttons = ButtonBarFactory.buildRightAlignedBar(startButton, stopButton); |
||||
|
||||
FormLayout layout = new FormLayout("right:d, 6dlu, max(d;30dlu):grow"); |
||||
DefaultFormBuilder builder = new DefaultFormBuilder(layout, this); |
||||
builder.append("Service status", statusTextField); |
||||
builder.append("", buttons); |
||||
builder.appendParagraphGapRow(); |
||||
builder.nextRow(); |
||||
builder.append("Started on", startedTextField); |
||||
builder.append("Memory used", memoryTextField); |
||||
builder.append("Error message", errorTextField); |
||||
builder.append("Server address", urlButton); |
||||
|
||||
setBorder(Borders.DIALOG_BORDER); |
||||
} |
||||
|
||||
private void addBehaviour() { |
||||
urlButton.addActionListener(new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
subsonicAgent.openBrowser(); |
||||
} |
||||
}); |
||||
startButton.addActionListener(new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
subsonicAgent.checkElevation("-start"); |
||||
subsonicAgent.startOrStopService(true); |
||||
} |
||||
}); |
||||
stopButton.addActionListener(new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
subsonicAgent.checkElevation("-stop"); |
||||
subsonicAgent.startOrStopService(false); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
public void notifyDeploymentStatus(DeploymentStatus status) { |
||||
startedTextField.setText(status == null ? null : DATE_FORMAT.format(status.getStartTime())); |
||||
memoryTextField.setText(status == null ? null : status.getMemoryUsed() + " MB"); |
||||
errorTextField.setText(status == null ? null : status.getErrorMessage()); |
||||
urlButton.setText(status == null ? null : status.getURL()); |
||||
} |
||||
|
||||
public void notifyServiceStatus(String serviceStatus) { |
||||
statusTextField.setText(serviceStatus); |
||||
} |
||||
} |
@ -0,0 +1,201 @@ |
||||
package net.sourceforge.subsonic.booter.agent; |
||||
|
||||
import java.awt.Desktop; |
||||
import java.net.URI; |
||||
import java.util.ArrayList; |
||||
import java.util.Arrays; |
||||
import java.util.List; |
||||
import java.util.concurrent.Executors; |
||||
import java.util.concurrent.ScheduledExecutorService; |
||||
import java.util.concurrent.TimeUnit; |
||||
|
||||
import javax.swing.JOptionPane; |
||||
import javax.swing.UIManager; |
||||
|
||||
import org.apache.commons.io.IOUtils; |
||||
|
||||
import com.jgoodies.looks.plastic.PlasticXPLookAndFeel; |
||||
|
||||
import net.sourceforge.subsonic.booter.deployer.DeploymentStatus; |
||||
import net.sourceforge.subsonic.booter.deployer.SubsonicDeployerService; |
||||
|
||||
/** |
||||
* Responsible for deploying the Subsonic web app in |
||||
* the embedded Jetty container. |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class SubsonicAgent { |
||||
|
||||
private final List<SubsonicListener> listeners = new ArrayList<SubsonicListener>(); |
||||
private final TrayController trayController; |
||||
private SubsonicFrame frame; |
||||
private final SubsonicDeployerService service; |
||||
private static final int POLL_INTERVAL_DEPLOYMENT_INFO_SECONDS = 5; |
||||
private static final int POLL_INTERVAL_SERVICE_STATUS_SECONDS = 5; |
||||
private String url; |
||||
private boolean serviceStatusPollingEnabled; |
||||
private boolean elevated; |
||||
|
||||
public SubsonicAgent(SubsonicDeployerService service) { |
||||
this.service = service; |
||||
setLookAndFeel(); |
||||
trayController = new TrayController(this); |
||||
startPolling(); |
||||
} |
||||
|
||||
public void setFrame(SubsonicFrame frame) { |
||||
this.frame = frame; |
||||
} |
||||
|
||||
private void setLookAndFeel() { |
||||
// Set look-and-feel.
|
||||
try { |
||||
UIManager.setLookAndFeel(new PlasticXPLookAndFeel()); |
||||
} catch (Throwable x) { |
||||
System.err.println("Failed to set look-and-feel.\n" + x); |
||||
} |
||||
} |
||||
|
||||
private void startPolling() { |
||||
ScheduledExecutorService executor = Executors.newScheduledThreadPool(2); |
||||
Runnable runnable = new Runnable() { |
||||
public void run() { |
||||
try { |
||||
notifyDeploymentInfo(service.getDeploymentInfo()); |
||||
} catch (Throwable x) { |
||||
notifyDeploymentInfo(null); |
||||
} |
||||
} |
||||
}; |
||||
executor.scheduleWithFixedDelay(runnable, 0, POLL_INTERVAL_DEPLOYMENT_INFO_SECONDS, TimeUnit.SECONDS); |
||||
|
||||
runnable = new Runnable() { |
||||
public void run() { |
||||
if (serviceStatusPollingEnabled) { |
||||
try { |
||||
notifyServiceStatus(getServiceStatus()); |
||||
} catch (Throwable x) { |
||||
notifyServiceStatus(null); |
||||
} |
||||
} |
||||
} |
||||
}; |
||||
executor.scheduleWithFixedDelay(runnable, 0, POLL_INTERVAL_SERVICE_STATUS_SECONDS, TimeUnit.SECONDS); |
||||
} |
||||
|
||||
private String getServiceStatus() throws Exception { |
||||
Process process = Runtime.getRuntime().exec("subsonic-service.exe -status"); |
||||
return IOUtils.toString(process.getInputStream()); |
||||
} |
||||
|
||||
public void setServiceStatusPollingEnabled(boolean enabled) { |
||||
serviceStatusPollingEnabled = enabled; |
||||
} |
||||
|
||||
public void startOrStopService(boolean start) { |
||||
try { |
||||
String cmd = "subsonic-service.exe " + (start ? "-start" : "-stop"); |
||||
System.err.println("Executing: " + cmd); |
||||
|
||||
Runtime.getRuntime().exec(cmd); |
||||
} catch (Exception x) { |
||||
x.printStackTrace(); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* If necessary, restart agent with elevated rights. |
||||
*/ |
||||
public void checkElevation(String... args) { |
||||
|
||||
if (isElevationNeeded() && !isElevated()) { |
||||
try { |
||||
List<String> command = new ArrayList<String>(); |
||||
command.add("cmd"); |
||||
command.add("/c"); |
||||
command.add("subsonic-agent-elevated.exe"); |
||||
command.addAll(Arrays.asList(args)); |
||||
|
||||
ProcessBuilder builder = new ProcessBuilder(); |
||||
builder.command(command); |
||||
System.err.println("Executing: " + command + " with current dir: " + System.getProperty("user.dir")); |
||||
builder.start(); |
||||
System.exit(0); |
||||
} catch (Exception x) { |
||||
JOptionPane.showMessageDialog(frame, "Failed to elevate Subsonic Control Panel. " + x, "Error", JOptionPane.WARNING_MESSAGE); |
||||
x.printStackTrace(); |
||||
} |
||||
} |
||||
} |
||||
|
||||
public void setElevated(boolean elevated) { |
||||
this.elevated = elevated; |
||||
} |
||||
|
||||
private boolean isElevated() { |
||||
return elevated; |
||||
} |
||||
|
||||
/** |
||||
* Returns whether UAC elevation is necessary (to start/stop services etc). |
||||
*/ |
||||
private boolean isElevationNeeded() { |
||||
|
||||
String osVersion = System.getProperty("os.version"); |
||||
try { |
||||
int majorVersion = Integer.parseInt(osVersion.substring(0, osVersion.indexOf("."))); |
||||
|
||||
// Elevation is necessary in Windows Vista (os.version=6.1) and later.
|
||||
return majorVersion >= 6; |
||||
} catch (Exception x) { |
||||
System.err.println("Failed to resolve OS version from '" + osVersion + "'\n" + x); |
||||
return false; |
||||
} |
||||
} |
||||
|
||||
public void addListener(SubsonicListener listener) { |
||||
listeners.add(listener); |
||||
} |
||||
|
||||
private void notifyDeploymentInfo(DeploymentStatus status) { |
||||
if (status != null) { |
||||
url = status.getURL(); |
||||
} |
||||
|
||||
for (SubsonicListener listener : listeners) { |
||||
listener.notifyDeploymentStatus(status); |
||||
} |
||||
} |
||||
|
||||
private void notifyServiceStatus(String status) { |
||||
for (SubsonicListener listener : listeners) { |
||||
listener.notifyServiceStatus(status); |
||||
} |
||||
} |
||||
|
||||
public void showStatusPanel() { |
||||
frame.showStatusPanel(); |
||||
} |
||||
|
||||
public void showSettingsPanel() { |
||||
frame.showSettingsPanel(); |
||||
} |
||||
|
||||
public void showTrayIconMessage() { |
||||
trayController.showMessage(); |
||||
} |
||||
|
||||
public void exit() { |
||||
trayController.uninstallComponents(); |
||||
System.exit(0); |
||||
} |
||||
|
||||
public void openBrowser() { |
||||
try { |
||||
Desktop.getDesktop().browse(new URI(url)); |
||||
} catch (Throwable x) { |
||||
x.printStackTrace(); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,113 @@ |
||||
package net.sourceforge.subsonic.booter.agent; |
||||
|
||||
import com.jgoodies.forms.factories.Borders; |
||||
import com.jgoodies.forms.factories.ButtonBarFactory; |
||||
import net.sourceforge.subsonic.booter.Main; |
||||
|
||||
import javax.swing.*; |
||||
import java.awt.*; |
||||
import java.awt.event.ActionEvent; |
||||
import java.awt.event.ActionListener; |
||||
import java.lang.reflect.Method; |
||||
import java.util.Arrays; |
||||
|
||||
/** |
||||
* Frame that is activated by the tray icon. Contains a tabbed pane |
||||
* with status and settings panels. |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class SubsonicFrame extends JFrame { |
||||
|
||||
private final SubsonicAgent subsonicAgent; |
||||
|
||||
private final StatusPanel statusPanel; |
||||
private final SettingsPanel settingsPanel; |
||||
private JTabbedPane tabbedPane; |
||||
private JButton closeButton; |
||||
|
||||
public SubsonicFrame(SubsonicAgent subsonicAgent, StatusPanel statusPanel, SettingsPanel settingsPanel) { |
||||
super("Subsonic Control Panel"); |
||||
this.subsonicAgent = subsonicAgent; |
||||
this.statusPanel = statusPanel; |
||||
this.settingsPanel = settingsPanel; |
||||
createComponents(); |
||||
layoutComponents(); |
||||
addBehaviour(); |
||||
setupIcons(); |
||||
|
||||
pack(); |
||||
centerComponent(); |
||||
} |
||||
|
||||
private void setupIcons() { |
||||
Toolkit toolkit = Toolkit.getDefaultToolkit(); |
||||
|
||||
// Window.setIconImages() was added in Java 1.6. Since Subsonic only requires 1.5, we
|
||||
// use reflection to invoke it.
|
||||
try { |
||||
Method method = Window.class.getMethod("setIconImages", java.util.List.class); |
||||
java.util.List<Image> images = Arrays.asList( |
||||
toolkit.createImage(Main.class.getResource("/images/subsonic-16.png")), |
||||
toolkit.createImage(Main.class.getResource("/images/subsonic-32.png")), |
||||
toolkit.createImage(Main.class.getResource("/images/subsonic-512.png"))); |
||||
method.invoke(this, images); |
||||
} catch (Throwable x) { |
||||
// Fallback to old method.
|
||||
setIconImage(toolkit.createImage(Main.class.getResource("/images/subsonic-32.png"))); |
||||
} |
||||
} |
||||
|
||||
public void centerComponent() { |
||||
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize(); |
||||
setLocation(screenSize.width / 2 - getWidth() / 2, |
||||
screenSize.height / 2 - getHeight() / 2); |
||||
} |
||||
|
||||
private void createComponents() { |
||||
tabbedPane = new JTabbedPane(); |
||||
closeButton = new JButton("Close"); |
||||
} |
||||
|
||||
private void layoutComponents() { |
||||
tabbedPane.add("Status", statusPanel); |
||||
tabbedPane.add("Settings", settingsPanel); |
||||
|
||||
JPanel pane = (JPanel) getContentPane(); |
||||
pane.setLayout(new BorderLayout(10, 10)); |
||||
pane.add(tabbedPane, BorderLayout.CENTER); |
||||
pane.add(ButtonBarFactory.buildCloseBar(closeButton), BorderLayout.SOUTH); |
||||
|
||||
pane.setBorder(Borders.TABBED_DIALOG_BORDER); |
||||
} |
||||
|
||||
private void addBehaviour() { |
||||
closeButton.addActionListener(new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
setVisible(false); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
@Override |
||||
public void setVisible(boolean b) { |
||||
super.setVisible(b); |
||||
subsonicAgent.setServiceStatusPollingEnabled(b); |
||||
} |
||||
|
||||
public void showStatusPanel() { |
||||
settingsPanel.readValues(); |
||||
tabbedPane.setSelectedComponent(statusPanel); |
||||
pack(); |
||||
setVisible(true); |
||||
toFront(); |
||||
} |
||||
|
||||
public void showSettingsPanel() { |
||||
settingsPanel.readValues(); |
||||
tabbedPane.setSelectedComponent(settingsPanel); |
||||
pack(); |
||||
setVisible(true); |
||||
toFront(); |
||||
} |
||||
} |
@ -0,0 +1,28 @@ |
||||
package net.sourceforge.subsonic.booter.agent; |
||||
|
||||
import net.sourceforge.subsonic.booter.deployer.DeploymentStatus; |
||||
|
||||
/** |
||||
* Callback interface implemented by GUI classes that wants to be notified when |
||||
* the state of the Subsonic deployment changes. |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public interface SubsonicListener { |
||||
|
||||
/** |
||||
* Invoked when new information about the Subsonic deployment is available. |
||||
* |
||||
* @param deploymentStatus The new deployment status, or <code>null</code> if an |
||||
* error occurred while retrieving the status. |
||||
*/ |
||||
void notifyDeploymentStatus(DeploymentStatus deploymentStatus); |
||||
|
||||
/** |
||||
* Invoked when new information about the Subsonic Windows service is available. |
||||
* |
||||
* @param serviceStatus The new service status, or <code>null</code> if an |
||||
* error occurred while retrieving the status. |
||||
*/ |
||||
void notifyServiceStatus(String serviceStatus); |
||||
} |
@ -0,0 +1,125 @@ |
||||
package net.sourceforge.subsonic.booter.agent; |
||||
|
||||
import java.awt.Image; |
||||
import java.awt.MenuItem; |
||||
import java.awt.PopupMenu; |
||||
import java.awt.SystemTray; |
||||
import java.awt.Toolkit; |
||||
import java.awt.TrayIcon; |
||||
import java.awt.event.ActionEvent; |
||||
import java.net.URL; |
||||
|
||||
import javax.swing.AbstractAction; |
||||
import javax.swing.Action; |
||||
|
||||
import net.sourceforge.subsonic.booter.deployer.DeploymentStatus; |
||||
|
||||
/** |
||||
* Controls the Subsonic tray icon. |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class TrayController implements SubsonicListener { |
||||
|
||||
private final SubsonicAgent subsonicAgent; |
||||
private TrayIcon trayIcon; |
||||
|
||||
private Action openAction; |
||||
private Action controlPanelAction; |
||||
private Action hideAction; |
||||
private Image startedImage; |
||||
private Image stoppedImage; |
||||
|
||||
public TrayController(SubsonicAgent subsonicAgent) { |
||||
this.subsonicAgent = subsonicAgent; |
||||
try { |
||||
createActions(); |
||||
createComponents(); |
||||
addBehaviour(); |
||||
installComponents(); |
||||
subsonicAgent.addListener(this); |
||||
} catch (Throwable x) { |
||||
System.err.println("Disabling tray support."); |
||||
} |
||||
} |
||||
|
||||
public void showMessage() { |
||||
trayIcon.displayMessage("Subsonic", "Subsonic is now running. Click this balloon to get started.", |
||||
TrayIcon.MessageType.INFO); |
||||
} |
||||
|
||||
private void createActions() { |
||||
openAction = new AbstractAction("Open Subsonic in Browser") { |
||||
public void actionPerformed(ActionEvent e) { |
||||
subsonicAgent.openBrowser(); |
||||
} |
||||
}; |
||||
|
||||
controlPanelAction = new AbstractAction("Subsonic Control Panel") { |
||||
public void actionPerformed(ActionEvent e) { |
||||
subsonicAgent.showStatusPanel(); |
||||
} |
||||
}; |
||||
|
||||
|
||||
hideAction = new AbstractAction("Hide Tray Icon") { |
||||
public void actionPerformed(ActionEvent e) { |
||||
subsonicAgent.exit(); |
||||
} |
||||
}; |
||||
} |
||||
|
||||
private void createComponents() { |
||||
startedImage = createImage("/images/subsonic-started-16.png"); |
||||
stoppedImage = createImage("/images/subsonic-stopped-16.png"); |
||||
|
||||
PopupMenu menu = new PopupMenu(); |
||||
menu.add(createMenuItem(openAction)); |
||||
menu.add(createMenuItem(controlPanelAction)); |
||||
menu.addSeparator(); |
||||
menu.add(createMenuItem(hideAction)); |
||||
|
||||
trayIcon = new TrayIcon(stoppedImage, "Subsonic Music Streamer", menu); |
||||
} |
||||
|
||||
private Image createImage(String resourceName) { |
||||
URL url = getClass().getResource(resourceName); |
||||
return Toolkit.getDefaultToolkit().createImage(url); |
||||
} |
||||
|
||||
private MenuItem createMenuItem(Action action) { |
||||
MenuItem menuItem = new MenuItem((String) action.getValue(Action.NAME)); |
||||
menuItem.addActionListener(action); |
||||
return menuItem; |
||||
} |
||||
|
||||
private void addBehaviour() { |
||||
trayIcon.addActionListener(controlPanelAction); |
||||
} |
||||
|
||||
private void installComponents() throws Throwable { |
||||
SystemTray.getSystemTray().add(trayIcon); |
||||
} |
||||
|
||||
public void uninstallComponents() { |
||||
try { |
||||
SystemTray.getSystemTray().remove(trayIcon); |
||||
} catch (Throwable x) { |
||||
System.err.println("Disabling tray support."); |
||||
} |
||||
} |
||||
|
||||
private void setTrayImage(Image image) { |
||||
if (trayIcon.getImage() != image) { |
||||
trayIcon.setImage(image); |
||||
} |
||||
} |
||||
|
||||
public void notifyDeploymentStatus(DeploymentStatus deploymentStatus) { |
||||
setTrayImage(deploymentStatus == null ? stoppedImage : startedImage); |
||||
} |
||||
|
||||
public void notifyServiceStatus(String serviceStatus) { |
||||
// Nothing here, but could potentially change tray icon and menu.
|
||||
} |
||||
} |
@ -0,0 +1,44 @@ |
||||
package net.sourceforge.subsonic.booter.deployer; |
||||
|
||||
import java.util.Date; |
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class DeploymentStatus implements Serializable { |
||||
|
||||
private final Date startTime; |
||||
private final String url; |
||||
private final String httpsUrl; |
||||
private final int memoryUsed; |
||||
private final String errorMessage; |
||||
|
||||
public DeploymentStatus(Date startTime, String url, String httpsUrl, int memoryUsed, String errorMessage) { |
||||
this.startTime = startTime; |
||||
this.url = url; |
||||
this.httpsUrl = httpsUrl; |
||||
this.memoryUsed = memoryUsed; |
||||
this.errorMessage = errorMessage; |
||||
} |
||||
|
||||
public String getURL() { |
||||
return url; |
||||
} |
||||
|
||||
public String getHttpsUrl() { |
||||
return httpsUrl; |
||||
} |
||||
|
||||
public Date getStartTime() { |
||||
return startTime; |
||||
} |
||||
|
||||
public int getMemoryUsed() { |
||||
return memoryUsed; |
||||
} |
||||
|
||||
public String getErrorMessage() { |
||||
return errorMessage; |
||||
} |
||||
} |
@ -0,0 +1,338 @@ |
||||
package net.sourceforge.subsonic.booter.deployer; |
||||
|
||||
import java.io.File; |
||||
import java.io.FileInputStream; |
||||
import java.io.FileWriter; |
||||
import java.io.IOException; |
||||
import java.io.InputStream; |
||||
import java.io.Writer; |
||||
import java.net.BindException; |
||||
import java.util.Date; |
||||
import java.util.jar.JarFile; |
||||
import java.util.zip.ZipEntry; |
||||
|
||||
import org.apache.commons.io.IOUtils; |
||||
import org.mortbay.jetty.Server; |
||||
import org.mortbay.jetty.nio.SelectChannelConnector; |
||||
import org.mortbay.jetty.security.Constraint; |
||||
import org.mortbay.jetty.security.ConstraintMapping; |
||||
import org.mortbay.jetty.security.SslSocketConnector; |
||||
import org.mortbay.jetty.webapp.WebAppContext; |
||||
|
||||
/** |
||||
* Responsible for deploying the Subsonic web app in |
||||
* the embedded Jetty container. |
||||
* <p/> |
||||
* The following system properties may be used to customize the behaviour: |
||||
* <ul> |
||||
* <li><code>subsonic.contextPath</code> - The context path at which Subsonic is deployed. Default "/".</li> |
||||
* <li><code>subsonic.port</code> - The port Subsonic will listen to. Default 4040.</li> |
||||
* <li><code>subsonic.httpsPort</code> - The port Subsonic will listen to for HTTPS. Default 0, which disables HTTPS.</li> |
||||
* <li><code>subsonic.war</code> - Subsonic WAR file, or exploded directory. Default "subsonic.war".</li> |
||||
* <li><code>subsonic.createLinkFile</code> - If set to "true", a Subsonic.url file is created in the working directory.</li> |
||||
* <li><code>subsonic.ssl.keystore</code> - Path to an alternate SSL keystore.</li> |
||||
* <li><code>subsonic.ssl.password</code> - Password of the alternate SSL keystore.</li> |
||||
* </ul> |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class SubsonicDeployer implements SubsonicDeployerService { |
||||
|
||||
public static final String DEFAULT_HOST = "0.0.0.0"; |
||||
public static final int DEFAULT_PORT = 4040; |
||||
public static final int DEFAULT_HTTPS_PORT = 0; |
||||
public static final int DEFAULT_MEMORY_LIMIT = 150; |
||||
public static final String DEFAULT_CONTEXT_PATH = "/"; |
||||
public static final String DEFAULT_WAR = "subsonic.war"; |
||||
private static final int MAX_IDLE_TIME_MILLIS = 7 * 24 * 60 * 60 * 1000; // One week.
|
||||
private static final int HEADER_BUFFER_SIZE = 64 * 1024; |
||||
|
||||
// Subsonic home directory.
|
||||
private static final File SUBSONIC_HOME_WINDOWS = new File("c:/subsonic"); |
||||
private static final File SUBSONIC_HOME_OTHER = new File("/var/subsonic"); |
||||
|
||||
private Throwable exception; |
||||
private File subsonicHome; |
||||
private final Date startTime; |
||||
|
||||
public SubsonicDeployer() { |
||||
|
||||
// Enable shutdown hook for Ehcache.
|
||||
System.setProperty("net.sf.ehcache.enableShutdownHook", "true"); |
||||
|
||||
startTime = new Date(); |
||||
createLinkFile(); |
||||
deployWebApp(); |
||||
} |
||||
|
||||
private void createLinkFile() { |
||||
if ("true".equals(System.getProperty("subsonic.createLinkFile"))) { |
||||
Writer writer = null; |
||||
try { |
||||
writer = new FileWriter("subsonic.url"); |
||||
writer.append("[InternetShortcut]"); |
||||
writer.append(System.getProperty("line.separator")); |
||||
writer.append("URL=").append(getUrl()); |
||||
writer.flush(); |
||||
} catch (Throwable x) { |
||||
System.err.println("Failed to create subsonic.url."); |
||||
x.printStackTrace(); |
||||
} finally { |
||||
if (writer != null) { |
||||
try { |
||||
writer.close(); |
||||
} catch (IOException x) { |
||||
// Ignored
|
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
private void deployWebApp() { |
||||
try { |
||||
Server server = new Server(); |
||||
SelectChannelConnector connector = new SelectChannelConnector(); |
||||
connector.setMaxIdleTime(MAX_IDLE_TIME_MILLIS); |
||||
connector.setHeaderBufferSize(HEADER_BUFFER_SIZE); |
||||
connector.setHost(getHost()); |
||||
connector.setPort(getPort()); |
||||
if (isHttpsEnabled()) { |
||||
connector.setConfidentialPort(getHttpsPort()); |
||||
} |
||||
server.addConnector(connector); |
||||
|
||||
if (isHttpsEnabled()) { |
||||
SslSocketConnector sslConnector = new SslSocketConnector(); |
||||
sslConnector.setMaxIdleTime(MAX_IDLE_TIME_MILLIS); |
||||
sslConnector.setHeaderBufferSize(HEADER_BUFFER_SIZE); |
||||
sslConnector.setHost(getHost()); |
||||
sslConnector.setPort(getHttpsPort()); |
||||
sslConnector.setKeystore(System.getProperty("subsonic.ssl.keystore", getClass().getResource("/subsonic.keystore").toExternalForm())); |
||||
sslConnector.setPassword(System.getProperty("subsonic.ssl.password", "subsonic")); |
||||
server.addConnector(sslConnector); |
||||
} |
||||
|
||||
WebAppContext context = new WebAppContext(); |
||||
context.setTempDirectory(getJettyDirectory()); |
||||
context.setContextPath(getContextPath()); |
||||
context.setWar(getWar()); |
||||
context.setOverrideDescriptor("/web-jetty.xml"); |
||||
|
||||
if (isHttpsEnabled()) { |
||||
|
||||
// Allow non-https for streaming and cover art (for Chromecast, UPnP, Sonos etc)
|
||||
context.getSecurityHandler().setConstraintMappings(new ConstraintMapping[]{ |
||||
createConstraintMapping("/stream", Constraint.DC_NONE), |
||||
createConstraintMapping("/coverArt.view", Constraint.DC_NONE), |
||||
createConstraintMapping("/ws/*", Constraint.DC_NONE), |
||||
createConstraintMapping("/sonos/*", Constraint.DC_NONE), |
||||
createConstraintMapping("/", Constraint.DC_CONFIDENTIAL) |
||||
}); |
||||
} |
||||
|
||||
server.addHandler(context); |
||||
server.start(); |
||||
|
||||
System.err.println("Subsonic running on: " + getUrl()); |
||||
if (isHttpsEnabled()) { |
||||
System.err.println(" and: " + getHttpsUrl()); |
||||
} |
||||
|
||||
} catch (Throwable x) { |
||||
x.printStackTrace(); |
||||
exception = x; |
||||
} |
||||
} |
||||
|
||||
private ConstraintMapping createConstraintMapping(String pathSpec, int dataConstraint) { |
||||
ConstraintMapping constraintMapping = new ConstraintMapping(); |
||||
Constraint constraint = new Constraint(); |
||||
constraint.setDataConstraint(dataConstraint); |
||||
constraintMapping.setPathSpec(pathSpec); |
||||
constraintMapping.setConstraint(constraint); |
||||
return constraintMapping; |
||||
} |
||||
|
||||
private File getJettyDirectory() { |
||||
File dir = new File(getSubsonicHome(), "jetty"); |
||||
String buildNumber = getSubsonicBuildNumber(); |
||||
if (buildNumber != null) { |
||||
dir = new File(dir, buildNumber); |
||||
} |
||||
System.err.println("Extracting webapp to " + dir); |
||||
|
||||
if (!dir.exists() && !dir.mkdirs()) { |
||||
System.err.println("Failed to create directory " + dir); |
||||
} |
||||
|
||||
return dir; |
||||
} |
||||
|
||||
private String getSubsonicBuildNumber() { |
||||
File war = new File(getWar()); |
||||
InputStream in = null; |
||||
try { |
||||
if (war.isFile()) { |
||||
JarFile jar = new JarFile(war); |
||||
ZipEntry entry = jar.getEntry("WEB-INF\\classes\\build_number.txt"); |
||||
if (entry == null) { |
||||
entry = jar.getEntry("WEB-INF/classes/build_number.txt"); |
||||
} |
||||
in = jar.getInputStream(entry); |
||||
} else { |
||||
in = new FileInputStream(war.getPath() + "/WEB-INF/classes/build_number.txt"); |
||||
} |
||||
return IOUtils.toString(in); |
||||
|
||||
} catch (Exception x) { |
||||
System.err.println("Failed to resolve build number from WAR " + war + ": " + x); |
||||
return null; |
||||
} finally { |
||||
IOUtils.closeQuietly(in); |
||||
} |
||||
} |
||||
|
||||
private String getContextPath() { |
||||
return System.getProperty("subsonic.contextPath", DEFAULT_CONTEXT_PATH); |
||||
} |
||||
|
||||
|
||||
private String getWar() { |
||||
String war = System.getProperty("subsonic.war"); |
||||
if (war == null) { |
||||
war = DEFAULT_WAR; |
||||
} |
||||
|
||||
File file = new File(war); |
||||
if (file.exists()) { |
||||
System.err.println("Using WAR file: " + file.getAbsolutePath()); |
||||
} else { |
||||
System.err.println("Error: WAR file not found: " + file.getAbsolutePath()); |
||||
} |
||||
|
||||
return war; |
||||
} |
||||
|
||||
private String getHost() { |
||||
return System.getProperty("subsonic.host", DEFAULT_HOST); |
||||
} |
||||
|
||||
private int getPort() { |
||||
int port = DEFAULT_PORT; |
||||
|
||||
String portString = System.getProperty("subsonic.port"); |
||||
if (portString != null) { |
||||
port = Integer.parseInt(portString); |
||||
} |
||||
|
||||
// Also set it so that the webapp can read it.
|
||||
System.setProperty("subsonic.port", String.valueOf(port)); |
||||
|
||||
return port; |
||||
} |
||||
|
||||
private int getHttpsPort() { |
||||
int port = DEFAULT_HTTPS_PORT; |
||||
|
||||
String portString = System.getProperty("subsonic.httpsPort"); |
||||
if (portString != null) { |
||||
port = Integer.parseInt(portString); |
||||
} |
||||
|
||||
// Also set it so that the webapp can read it.
|
||||
System.setProperty("subsonic.httpsPort", String.valueOf(port)); |
||||
|
||||
return port; |
||||
} |
||||
|
||||
private boolean isHttpsEnabled() { |
||||
return getHttpsPort() > 0; |
||||
} |
||||
|
||||
public String getErrorMessage() { |
||||
if (exception == null) { |
||||
return null; |
||||
} |
||||
if (exception instanceof BindException) { |
||||
return "Address already in use. Please change port number."; |
||||
} |
||||
|
||||
return exception.toString(); |
||||
} |
||||
|
||||
public int getMemoryUsed() { |
||||
long freeBytes = Runtime.getRuntime().freeMemory(); |
||||
long totalBytes = Runtime.getRuntime().totalMemory(); |
||||
long usedBytes = totalBytes - freeBytes; |
||||
return (int) Math.round(usedBytes / 1024.0 / 1024.0); |
||||
} |
||||
|
||||
private String getUrl() { |
||||
String host = DEFAULT_HOST.equals(getHost()) ? "localhost" : getHost(); |
||||
StringBuilder url = new StringBuilder("http://").append(host); |
||||
if (getPort() != 80) { |
||||
url.append(":").append(getPort()); |
||||
} |
||||
url.append(getContextPath()); |
||||
return url.toString(); |
||||
} |
||||
|
||||
private String getHttpsUrl() { |
||||
if (!isHttpsEnabled()) { |
||||
return null; |
||||
} |
||||
|
||||
String host = DEFAULT_HOST.equals(getHost()) ? "localhost" : getHost(); |
||||
StringBuilder url = new StringBuilder("https://").append(host); |
||||
if (getHttpsPort() != 443) { |
||||
url.append(":").append(getHttpsPort()); |
||||
} |
||||
url.append(getContextPath()); |
||||
return url.toString(); |
||||
} |
||||
|
||||
/** |
||||
* Returns the Subsonic home directory. |
||||
* |
||||
* @return The Subsonic home directory, if it exists. |
||||
* @throws RuntimeException If directory doesn't exist. |
||||
*/ |
||||
private File getSubsonicHome() { |
||||
|
||||
if (subsonicHome != null) { |
||||
return subsonicHome; |
||||
} |
||||
|
||||
File home; |
||||
|
||||
String overrideHome = System.getProperty("subsonic.home"); |
||||
if (overrideHome != null) { |
||||
home = new File(overrideHome); |
||||
} else { |
||||
boolean isWindows = System.getProperty("os.name", "Windows").toLowerCase().startsWith("windows"); |
||||
home = isWindows ? SUBSONIC_HOME_WINDOWS : SUBSONIC_HOME_OTHER; |
||||
} |
||||
|
||||
// Attempt to create home directory if it doesn't exist.
|
||||
if (!home.exists() || !home.isDirectory()) { |
||||
boolean success = home.mkdirs(); |
||||
if (success) { |
||||
subsonicHome = home; |
||||
} else { |
||||
String message = "The directory " + home + " does not exist. Please create it and make it writable. " + |
||||
"(You can override the directory location by specifying -Dsubsonic.home=... when " + |
||||
"starting the servlet container.)"; |
||||
System.err.println("ERROR: " + message); |
||||
} |
||||
} else { |
||||
subsonicHome = home; |
||||
} |
||||
|
||||
return home; |
||||
} |
||||
|
||||
public DeploymentStatus getDeploymentInfo() { |
||||
return new DeploymentStatus(startTime, getUrl(), getHttpsUrl(), getMemoryUsed(), getErrorMessage()); |
||||
} |
||||
} |
@ -0,0 +1,17 @@ |
||||
package net.sourceforge.subsonic.booter.deployer; |
||||
|
||||
/** |
||||
* RMI interface implemented by the Subsonic deployer and used by the agent. |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public interface SubsonicDeployerService { |
||||
|
||||
/** |
||||
* Returns information about the Subsonic deployment, such |
||||
* as URL, memory consumption, start time etc. |
||||
* |
||||
* @return Deployment information. |
||||
*/ |
||||
DeploymentStatus getDeploymentInfo(); |
||||
} |
@ -0,0 +1,115 @@ |
||||
package net.sourceforge.subsonic.booter.mac; |
||||
|
||||
import java.awt.Color; |
||||
import java.awt.Desktop; |
||||
import java.awt.event.ActionEvent; |
||||
import java.awt.event.ActionListener; |
||||
import java.net.URI; |
||||
import java.text.DateFormat; |
||||
import java.util.Locale; |
||||
|
||||
import javax.swing.JButton; |
||||
import javax.swing.JPanel; |
||||
import javax.swing.JTextArea; |
||||
import javax.swing.JTextField; |
||||
import javax.swing.SwingConstants; |
||||
import javax.swing.Timer; |
||||
|
||||
import com.jgoodies.forms.builder.DefaultFormBuilder; |
||||
import com.jgoodies.forms.factories.Borders; |
||||
import com.jgoodies.forms.layout.FormLayout; |
||||
|
||||
import net.sourceforge.subsonic.booter.deployer.DeploymentStatus; |
||||
import net.sourceforge.subsonic.booter.deployer.SubsonicDeployerService; |
||||
|
||||
/** |
||||
* Panel displaying the status of the Subsonic service. |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class StatusPanel extends JPanel { |
||||
|
||||
private static final DateFormat DATE_FORMAT = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM, Locale.US); |
||||
|
||||
private final SubsonicDeployerService deployer; |
||||
|
||||
private JTextField startedTextField; |
||||
private JTextField memoryTextField; |
||||
private JTextArea errorTextField; |
||||
private JButton urlButton; |
||||
|
||||
public StatusPanel(SubsonicDeployerService deployer) { |
||||
this.deployer = deployer; |
||||
createComponents(); |
||||
configureComponents(); |
||||
layoutComponents(); |
||||
addBehaviour(); |
||||
} |
||||
|
||||
private void createComponents() { |
||||
startedTextField = new JTextField(); |
||||
memoryTextField = new JTextField(); |
||||
errorTextField = new JTextArea(3, 24); |
||||
urlButton = new JButton(); |
||||
} |
||||
|
||||
private void configureComponents() { |
||||
startedTextField.setEditable(false); |
||||
memoryTextField.setEditable(false); |
||||
errorTextField.setEditable(false); |
||||
|
||||
errorTextField.setLineWrap(true); |
||||
errorTextField.setBorder(startedTextField.getBorder()); |
||||
|
||||
urlButton.setBorderPainted(false); |
||||
urlButton.setContentAreaFilled(false); |
||||
urlButton.setForeground(Color.BLUE.darker()); |
||||
urlButton.setHorizontalAlignment(SwingConstants.LEFT); |
||||
} |
||||
|
||||
private void layoutComponents() { |
||||
FormLayout layout = new FormLayout("right:d, 6dlu, max(d;30dlu):grow"); |
||||
DefaultFormBuilder builder = new DefaultFormBuilder(layout, this); |
||||
builder.append("Started on", startedTextField); |
||||
builder.append("Memory used", memoryTextField); |
||||
builder.append("Error message", errorTextField); |
||||
builder.append("Server address", urlButton); |
||||
|
||||
setBorder(Borders.DIALOG_BORDER); |
||||
} |
||||
|
||||
private void addBehaviour() { |
||||
urlButton.addActionListener(new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
openBrowser(); |
||||
} |
||||
}); |
||||
|
||||
Timer timer = new Timer(3000, new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
updateStatus(deployer.getDeploymentInfo()); |
||||
} |
||||
}); |
||||
updateStatus(deployer.getDeploymentInfo()); |
||||
timer.start(); |
||||
} |
||||
|
||||
private void openBrowser() { |
||||
String url = urlButton.getText(); |
||||
if (url == null) { |
||||
return; |
||||
} |
||||
try { |
||||
Desktop.getDesktop().browse(new URI(url)); |
||||
} catch (Throwable x) { |
||||
x.printStackTrace(); |
||||
} |
||||
} |
||||
|
||||
private void updateStatus(DeploymentStatus status) { |
||||
startedTextField.setText(status == null ? null : DATE_FORMAT.format(status.getStartTime())); |
||||
memoryTextField.setText(status == null ? null : status.getMemoryUsed() + " MB"); |
||||
errorTextField.setText(status == null ? null : status.getErrorMessage()); |
||||
urlButton.setText(status == null ? null : status.getURL()); |
||||
} |
||||
} |
@ -0,0 +1,89 @@ |
||||
package net.sourceforge.subsonic.booter.mac; |
||||
|
||||
import net.sourceforge.subsonic.booter.deployer.SubsonicDeployerService; |
||||
|
||||
import javax.swing.*; |
||||
import java.awt.*; |
||||
import java.awt.event.ActionEvent; |
||||
import java.net.URL; |
||||
import java.net.URI; |
||||
|
||||
/** |
||||
* Controller for the Mac booter. |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class SubsonicController { |
||||
|
||||
private final SubsonicDeployerService deployer; |
||||
private final SubsonicFrame frame; |
||||
private Action openAction; |
||||
private Action controlPanelAction; |
||||
private Action quitAction; |
||||
|
||||
public SubsonicController(SubsonicDeployerService deployer, SubsonicFrame frame) { |
||||
this.deployer = deployer; |
||||
this.frame = frame; |
||||
createActions(); |
||||
createComponents(); |
||||
} |
||||
|
||||
private void createActions() { |
||||
openAction = new AbstractAction("Open Subsonic Web Page") { |
||||
public void actionPerformed(ActionEvent e) { |
||||
openBrowser(); |
||||
} |
||||
}; |
||||
|
||||
controlPanelAction = new AbstractAction("Subsonic Control Panel") { |
||||
public void actionPerformed(ActionEvent e) { |
||||
frame.setActive(false); |
||||
frame.setActive(true); |
||||
} |
||||
}; |
||||
|
||||
quitAction = new AbstractAction("Quit Subsonic") { |
||||
public void actionPerformed(ActionEvent e) { |
||||
System.exit(0); |
||||
} |
||||
}; |
||||
} |
||||
|
||||
private void createComponents() { |
||||
PopupMenu menu = new PopupMenu(); |
||||
menu.add(createMenuItem(openAction)); |
||||
menu.add(createMenuItem(controlPanelAction)); |
||||
menu.addSeparator(); |
||||
menu.add(createMenuItem(quitAction)); |
||||
|
||||
URL url = getClass().getResource("/images/subsonic-21.png"); |
||||
Image image = Toolkit.getDefaultToolkit().createImage(url); |
||||
TrayIcon trayIcon = new TrayIcon(image, "Subsonic Music Streamer", menu); |
||||
trayIcon.setImageAutoSize(false); |
||||
|
||||
try { |
||||
SystemTray.getSystemTray().add(trayIcon); |
||||
} catch (Throwable x) { |
||||
System.err.println("Failed to add tray icon."); |
||||
} |
||||
} |
||||
|
||||
private MenuItem createMenuItem(Action action) { |
||||
MenuItem menuItem = new MenuItem((String) action.getValue(Action.NAME)); |
||||
menuItem.addActionListener(action); |
||||
return menuItem; |
||||
} |
||||
|
||||
private void openBrowser() { |
||||
String url = deployer.getDeploymentInfo().getURL(); |
||||
if (url == null) { |
||||
return; |
||||
} |
||||
try { |
||||
Desktop.getDesktop().browse(new URI(url)); |
||||
} catch (Throwable x) { |
||||
x.printStackTrace(); |
||||
} |
||||
} |
||||
|
||||
} |
@ -0,0 +1,82 @@ |
||||
package net.sourceforge.subsonic.booter.mac; |
||||
|
||||
import com.jgoodies.forms.factories.Borders; |
||||
import com.jgoodies.forms.factories.ButtonBarFactory; |
||||
import net.sourceforge.subsonic.booter.Main; |
||||
import net.sourceforge.subsonic.booter.deployer.SubsonicDeployerService; |
||||
|
||||
import javax.swing.*; |
||||
import java.awt.*; |
||||
import java.awt.event.ActionEvent; |
||||
import java.awt.event.ActionListener; |
||||
import java.net.URL; |
||||
|
||||
/** |
||||
* Frame with Subsonic status. Used on Mac installs. |
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class SubsonicFrame extends JFrame { |
||||
|
||||
private final SubsonicDeployerService deployer; |
||||
private StatusPanel statusPanel; |
||||
private JButton hideButton; |
||||
private JButton exitButton; |
||||
|
||||
public SubsonicFrame(SubsonicDeployerService deployer) { |
||||
super("Subsonic"); |
||||
this.deployer = deployer; |
||||
createComponents(); |
||||
layoutComponents(); |
||||
addBehaviour(); |
||||
|
||||
URL url = Main.class.getResource("/images/subsonic-512.png"); |
||||
setIconImage(Toolkit.getDefaultToolkit().createImage(url)); |
||||
} |
||||
|
||||
public void setActive(boolean active) { |
||||
if (active) { |
||||
pack(); |
||||
centerComponent(); |
||||
setVisible(true); |
||||
toFront(); |
||||
} else { |
||||
dispose(); |
||||
} |
||||
} |
||||
|
||||
private void centerComponent() { |
||||
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize(); |
||||
setLocation(screenSize.width / 2 - getWidth() / 2, |
||||
screenSize.height / 2 - getHeight() / 2); |
||||
} |
||||
|
||||
private void createComponents() { |
||||
statusPanel = new StatusPanel(deployer); |
||||
hideButton = new JButton("Hide"); |
||||
exitButton = new JButton("Exit"); |
||||
} |
||||
|
||||
private void layoutComponents() { |
||||
JPanel pane = (JPanel) getContentPane(); |
||||
pane.setLayout(new BorderLayout(10, 10)); |
||||
pane.add(statusPanel, BorderLayout.CENTER); |
||||
pane.add(ButtonBarFactory.buildRightAlignedBar(hideButton, exitButton), BorderLayout.SOUTH); |
||||
|
||||
pane.setBorder(Borders.DIALOG_BORDER); |
||||
} |
||||
|
||||
private void addBehaviour() { |
||||
hideButton.addActionListener(new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
setActive(false); |
||||
} |
||||
}); |
||||
exitButton.addActionListener(new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
System.exit(0); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,2 @@ |
||||
Manifest-Version: 1.0 |
||||
Main-Class: net.sourceforge.subsonic.booter.Main |
@ -0,0 +1,33 @@ |
||||
<?xml version="1.0" encoding="ISO-8859-1"?> |
||||
|
||||
<beans xmlns="http://www.springframework.org/schema/beans" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> |
||||
|
||||
<bean id="service" class="org.springframework.remoting.rmi.RmiProxyFactoryBean"> |
||||
<property name="serviceUrl" value="rmi://localhost:9412/SubsonicDeployerService"/> |
||||
<property name="serviceInterface" value="net.sourceforge.subsonic.booter.deployer.SubsonicDeployerService"/> |
||||
<property name="lookupStubOnStartup" value="false"/> |
||||
<property name="refreshStubOnConnectFailure" value="true"/> |
||||
</bean> |
||||
|
||||
<bean id="agent" class="net.sourceforge.subsonic.booter.agent.SubsonicAgent"> |
||||
<constructor-arg ref="service"/> |
||||
<property name="frame" ref="frame"/> |
||||
</bean> |
||||
|
||||
<bean id="frame" class="net.sourceforge.subsonic.booter.agent.SubsonicFrame"> |
||||
<constructor-arg ref="agent"/> |
||||
<constructor-arg ref="statusPanel"/> |
||||
<constructor-arg ref="settingsPanel"/> |
||||
</bean> |
||||
|
||||
<bean id="settingsPanel" class="net.sourceforge.subsonic.booter.agent.SettingsPanel"> |
||||
<constructor-arg ref="agent"/> |
||||
</bean> |
||||
|
||||
<bean id="statusPanel" class="net.sourceforge.subsonic.booter.agent.StatusPanel"> |
||||
<constructor-arg ref="agent"/> |
||||
</bean> |
||||
|
||||
</beans> |
@ -0,0 +1,15 @@ |
||||
<?xml version="1.0" encoding="ISO-8859-1"?> |
||||
|
||||
<beans xmlns="http://www.springframework.org/schema/beans" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> |
||||
|
||||
<bean id="service" class="net.sourceforge.subsonic.booter.deployer.SubsonicDeployer"/> |
||||
|
||||
<bean class="org.springframework.remoting.rmi.RmiServiceExporter"> |
||||
<property name="serviceName" value="SubsonicDeployerService"/> |
||||
<property name="service" ref="service"/> |
||||
<property name="serviceInterface" value="net.sourceforge.subsonic.booter.deployer.SubsonicDeployerService"/> |
||||
<property name="registryPort" value="9412"/> |
||||
</bean> |
||||
</beans> |
@ -0,0 +1,18 @@ |
||||
<?xml version="1.0" encoding="ISO-8859-1"?> |
||||
|
||||
<beans xmlns="http://www.springframework.org/schema/beans" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> |
||||
|
||||
<bean id="deployer" class="net.sourceforge.subsonic.booter.deployer.SubsonicDeployer"/> |
||||
|
||||
<bean id="frame" class="net.sourceforge.subsonic.booter.mac.SubsonicFrame"> |
||||
<constructor-arg ref="deployer"/> |
||||
</bean> |
||||
|
||||
<bean id="controller" class="net.sourceforge.subsonic.booter.mac.SubsonicController"> |
||||
<constructor-arg ref="deployer"/> |
||||
<constructor-arg ref="frame"/> |
||||
</bean> |
||||
|
||||
</beans> |
After Width: | Height: | Size: 734 B |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 810 B |
After Width: | Height: | Size: 771 B |
@ -0,0 +1,39 @@ |
||||
<?xml version="1.0" encoding="ISO-8859-1"?> |
||||
<!-- |
||||
~ This file is part of Subsonic. |
||||
~ |
||||
~ Subsonic is free software: you can redistribute it and/or modify |
||||
~ it under the terms of the GNU General Public License as published by |
||||
~ the Free Software Foundation, either version 3 of the License, or |
||||
~ (at your option) any later version. |
||||
~ |
||||
~ Subsonic 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 General Public License for more details. |
||||
~ |
||||
~ You should have received a copy of the GNU General Public License |
||||
~ along with Subsonic. If not, see <http://www.gnu.org/licenses/>. |
||||
~ |
||||
~ Copyright 2014 (C) Sindre Mehus |
||||
--> |
||||
|
||||
<web-app id="subsonic" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> |
||||
|
||||
<!--Enable compression for XML, JSON and JSONP in the REST API--> |
||||
<filter> |
||||
<filter-name>GzipFilter</filter-name> |
||||
<filter-class>org.mortbay.servlet.GzipFilter</filter-class> |
||||
<init-param> |
||||
<param-name>mimeTypes</param-name> |
||||
<param-value>text/xml,application/json,text/javascript</param-value> |
||||
</init-param> |
||||
</filter> |
||||
<filter-mapping> |
||||
<filter-name>GzipFilter</filter-name> |
||||
<url-pattern>/rest/*</url-pattern> |
||||
</filter-mapping> |
||||
|
||||
</web-app> |
@ -0,0 +1,24 @@ |
||||
@echo off |
||||
|
||||
REM The directory where Subsonic will create files. Make sure it is writable. |
||||
set SUBSONIC_HOME=c:\subsonic |
||||
|
||||
REM The host name or IP address on which to bind Subsonic. Only relevant if you have |
||||
REM multiple network interfaces and want to make Subsonic available on only one of them. |
||||
REM The default value 0.0.0.0 will bind Subsonic to all available network interfaces. |
||||
set SUBSONIC_HOST=0.0.0.0 |
||||
|
||||
REM The port on which Subsonic will listen for incoming HTTP traffic. |
||||
set SUBSONIC_PORT=4040 |
||||
|
||||
REM The port on which Subsonic will listen for incoming HTTPS traffic (0 to disable). |
||||
set SUBSONIC_HTTPS_PORT=0 |
||||
|
||||
REM The context path (i.e., the last part of the Subsonic URL). Typically "/" or "/subsonic". |
||||
set SUBSONIC_CONTEXT_PATH=/ |
||||
|
||||
REM The memory limit (max Java heap size) in megabytes. |
||||
set MAX_MEMORY=150 |
||||
|
||||
java -Xmx%MAX_MEMORY%m -Dsubsonic.home=%SUBSONIC_HOME% -Dsubsonic.host=%SUBSONIC_HOST% -Dsubsonic.port=%SUBSONIC_PORT% -Dsubsonic.httpsPort=%SUBSONIC_HTTPS_PORT% -Dsubsonic.contextPath=%SUBSONIC_CONTEXT_PATH% -jar subsonic-booter-jar-with-dependencies.jar |
||||
|
@ -0,0 +1,134 @@ |
||||
#!/bin/sh |
||||
|
||||
################################################################################### |
||||
# Shell script for starting Subsonic. See http://subsonic.org. |
||||
# |
||||
# Author: Sindre Mehus |
||||
################################################################################### |
||||
|
||||
SUBSONIC_HOME=/var/subsonic |
||||
SUBSONIC_HOST=0.0.0.0 |
||||
SUBSONIC_PORT=4040 |
||||
SUBSONIC_HTTPS_PORT=0 |
||||
SUBSONIC_CONTEXT_PATH=/ |
||||
SUBSONIC_MAX_MEMORY=150 |
||||
SUBSONIC_PIDFILE= |
||||
SUBSONIC_DEFAULT_MUSIC_FOLDER=/var/music |
||||
SUBSONIC_DEFAULT_PODCAST_FOLDER=/var/music/Podcast |
||||
SUBSONIC_DEFAULT_PLAYLIST_FOLDER=/var/playlists |
||||
|
||||
quiet=0 |
||||
|
||||
usage() { |
||||
echo "Usage: subsonic.sh [options]" |
||||
echo " --help This small usage guide." |
||||
echo " --home=DIR The directory where Subsonic will create files." |
||||
echo " Make sure it is writable. Default: /var/subsonic" |
||||
echo " --host=HOST The host name or IP address on which to bind Subsonic." |
||||
echo " Only relevant if you have multiple network interfaces and want" |
||||
echo " to make Subsonic available on only one of them. The default value" |
||||
echo " will bind Subsonic to all available network interfaces. Default: 0.0.0.0" |
||||
echo " --port=PORT The port on which Subsonic will listen for" |
||||
echo " incoming HTTP traffic. Default: 4040" |
||||
echo " --https-port=PORT The port on which Subsonic will listen for" |
||||
echo " incoming HTTPS traffic. Default: 0 (disabled)" |
||||
echo " --context-path=PATH The context path, i.e., the last part of the Subsonic" |
||||
echo " URL. Typically '/' or '/subsonic'. Default '/'" |
||||
echo " --max-memory=MB The memory limit (max Java heap size) in megabytes." |
||||
echo " Default: 100" |
||||
echo " --pidfile=PIDFILE Write PID to this file. Default not created." |
||||
echo " --quiet Don't print anything to standard out. Default false." |
||||
echo " --default-music-folder=DIR Configure Subsonic to use this folder for music. This option " |
||||
echo " only has effect the first time Subsonic is started. Default '/var/music'" |
||||
echo " --default-podcast-folder=DIR Configure Subsonic to use this folder for Podcasts. This option " |
||||
echo " only has effect the first time Subsonic is started. Default '/var/music/Podcast'" |
||||
echo " --default-playlist-folder=DIR Configure Subsonic to use this folder for playlists. This option " |
||||
echo " only has effect the first time Subsonic is started. Default '/var/playlists'" |
||||
exit 1 |
||||
} |
||||
|
||||
# Parse arguments. |
||||
while [ $# -ge 1 ]; do |
||||
case $1 in |
||||
--help) |
||||
usage |
||||
;; |
||||
--home=?*) |
||||
SUBSONIC_HOME=${1#--home=} |
||||
;; |
||||
--host=?*) |
||||
SUBSONIC_HOST=${1#--host=} |
||||
;; |
||||
--port=?*) |
||||
SUBSONIC_PORT=${1#--port=} |
||||
;; |
||||
--https-port=?*) |
||||
SUBSONIC_HTTPS_PORT=${1#--https-port=} |
||||
;; |
||||
--context-path=?*) |
||||
SUBSONIC_CONTEXT_PATH=${1#--context-path=} |
||||
;; |
||||
--max-memory=?*) |
||||
SUBSONIC_MAX_MEMORY=${1#--max-memory=} |
||||
;; |
||||
--pidfile=?*) |
||||
SUBSONIC_PIDFILE=${1#--pidfile=} |
||||
;; |
||||
--quiet) |
||||
quiet=1 |
||||
;; |
||||
--default-music-folder=?*) |
||||
SUBSONIC_DEFAULT_MUSIC_FOLDER=${1#--default-music-folder=} |
||||
;; |
||||
--default-podcast-folder=?*) |
||||
SUBSONIC_DEFAULT_PODCAST_FOLDER=${1#--default-podcast-folder=} |
||||
;; |
||||
--default-playlist-folder=?*) |
||||
SUBSONIC_DEFAULT_PLAYLIST_FOLDER=${1#--default-playlist-folder=} |
||||
;; |
||||
*) |
||||
usage |
||||
;; |
||||
esac |
||||
shift |
||||
done |
||||
|
||||
# Use JAVA_HOME if set, otherwise assume java is in the path. |
||||
JAVA=java |
||||
if [ -e "${JAVA_HOME}" ] |
||||
then |
||||
JAVA=${JAVA_HOME}/bin/java |
||||
fi |
||||
|
||||
# Create Subsonic home directory. |
||||
mkdir -p ${SUBSONIC_HOME} |
||||
LOG=${SUBSONIC_HOME}/subsonic_sh.log |
||||
rm -f ${LOG} |
||||
|
||||
cd $(dirname $0) |
||||
if [ -L $0 ] && ([ -e /bin/readlink ] || [ -e /usr/bin/readlink ]); then |
||||
cd $(dirname $(readlink $0)) |
||||
fi |
||||
|
||||
${JAVA} -Xmx${SUBSONIC_MAX_MEMORY}m \ |
||||
-Dsubsonic.home=${SUBSONIC_HOME} \ |
||||
-Dsubsonic.host=${SUBSONIC_HOST} \ |
||||
-Dsubsonic.port=${SUBSONIC_PORT} \ |
||||
-Dsubsonic.httpsPort=${SUBSONIC_HTTPS_PORT} \ |
||||
-Dsubsonic.contextPath=${SUBSONIC_CONTEXT_PATH} \ |
||||
-Dsubsonic.defaultMusicFolder=${SUBSONIC_DEFAULT_MUSIC_FOLDER} \ |
||||
-Dsubsonic.defaultPodcastFolder=${SUBSONIC_DEFAULT_PODCAST_FOLDER} \ |
||||
-Dsubsonic.defaultPlaylistFolder=${SUBSONIC_DEFAULT_PLAYLIST_FOLDER} \ |
||||
-Djava.awt.headless=true \ |
||||
-verbose:gc \ |
||||
-jar subsonic-booter-jar-with-dependencies.jar > ${LOG} 2>&1 & |
||||
|
||||
# Write pid to pidfile if it is defined. |
||||
if [ $SUBSONIC_PIDFILE ]; then |
||||
echo $! > ${SUBSONIC_PIDFILE} |
||||
fi |
||||
|
||||
if [ $quiet = 0 ]; then |
||||
echo Started Subsonic [PID $!, ${LOG}] |
||||
fi |
||||
|
@ -0,0 +1,88 @@ |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
|
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-installer-debian</artifactId> |
||||
<packaging>pom</packaging> |
||||
<name>Subsonic Installer for Debian</name> |
||||
|
||||
<parent> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic</artifactId> |
||||
<version>5.3</version> |
||||
</parent> |
||||
|
||||
<profiles> |
||||
|
||||
<profile> |
||||
<id>debian</id> |
||||
<activation> |
||||
<property> |
||||
<name>debian</name> |
||||
</property> |
||||
</activation> |
||||
|
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<artifactId>maven-antrun-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<id>dpkg</id> |
||||
<phase>compile</phase> |
||||
<configuration> |
||||
<target> |
||||
<echo>Creating Debian package...</echo> |
||||
<copy todir="${project.build.directory}/deb"> |
||||
<fileset dir="${basedir}/src"/> |
||||
<filterset> |
||||
<filter token="VERSION" value="${project.version}"/> |
||||
</filterset> |
||||
</copy> |
||||
|
||||
<copy file="../subsonic-booter/src/main/script/subsonic.sh" todir="${project.build.directory}/deb/usr/share/subsonic"/> |
||||
<copy file="../subsonic-booter/target/subsonic-booter-jar-with-dependencies.jar" todir="${project.build.directory}/deb/usr/share/subsonic"/> |
||||
<copy file="../subsonic-main/target/subsonic.war" todir="${project.build.directory}/deb/usr/share/subsonic"/> |
||||
<copy file="../subsonic-transcode/linux/ffmpeg" todir="${project.build.directory}/deb/var/subsonic/transcode"/> |
||||
<copy file="../subsonic-transcode/linux/lame" todir="${project.build.directory}/deb/var/subsonic/transcode"/> |
||||
|
||||
<exec executable="chmod"> |
||||
<arg value="oug+x"/> |
||||
<arg value="${project.build.directory}/deb/DEBIAN/preinst"/> |
||||
<arg value="${project.build.directory}/deb/DEBIAN/postinst"/> |
||||
<arg value="${project.build.directory}/deb/DEBIAN/prerm"/> |
||||
<arg value="${project.build.directory}/deb/DEBIAN/postrm"/> |
||||
<arg value="${project.build.directory}/deb/usr/share/subsonic/subsonic.sh"/> |
||||
<arg value="${project.build.directory}/deb/etc/init.d/subsonic"/> |
||||
<arg value="${project.build.directory}/deb/var/subsonic/transcode/ffmpeg"/> |
||||
<arg value="${project.build.directory}/deb/var/subsonic/transcode/lame"/> |
||||
</exec> |
||||
<exec executable="sleep"> |
||||
<arg value="2"/> |
||||
</exec> |
||||
<exec executable="fakeroot"> |
||||
<arg value="dpkg"/> |
||||
<arg value="--build"/> |
||||
<arg value="${project.build.directory}/deb"/> |
||||
<arg value="${project.build.directory}/subsonic-${project.version}.deb"/> |
||||
</exec> |
||||
<exec executable="lintian"> |
||||
<arg value="${project.build.directory}/subsonic-${project.version}.deb"/> |
||||
</exec> |
||||
</target> |
||||
</configuration> |
||||
<goals> |
||||
<goal>run</goal> |
||||
</goals> |
||||
</execution> |
||||
|
||||
</executions> |
||||
</plugin> |
||||
|
||||
</plugins> |
||||
</build> |
||||
|
||||
</profile> |
||||
</profiles> |
||||
</project> |
@ -0,0 +1 @@ |
||||
/etc/default/subsonic |
@ -0,0 +1,18 @@ |
||||
Package: subsonic |
||||
Version: @VERSION@ |
||||
Section: Multimedia |
||||
Priority: optional |
||||
Recommends: ffmpeg |
||||
Architecture: all |
||||
Maintainer: Sindre Mehus <sindre@activeobjects.no> |
||||
Description: A web-based music streamer, jukebox and Podcast receiver |
||||
Subsonic is a web-based music streamer, jukebox and Podcast receiver, |
||||
providing access to your music collection wherever you are. Use it |
||||
to share your music with friends, or to listen to your music while away |
||||
from home. |
||||
. |
||||
Apps for Android, iPhone and Windows Phone are also available. |
||||
. |
||||
Java 1.6 or higher is required to run Subsonic. |
||||
. |
||||
Subsonic can be found at http://subsonic.org |
@ -0,0 +1,16 @@ |
||||
#! /bin/sh |
||||
|
||||
set -e |
||||
|
||||
ln -sf /usr/share/subsonic/subsonic.sh /usr/bin/subsonic |
||||
|
||||
chmod 750 /var/subsonic |
||||
|
||||
# Clear jetty cache. |
||||
rm -rf /var/subsonic/jetty |
||||
|
||||
# Configure Subsonic service. |
||||
update-rc.d subsonic defaults 99 |
||||
|
||||
# Start Subsonic service. |
||||
invoke-rc.d subsonic start |
@ -0,0 +1,9 @@ |
||||
#! /bin/sh |
||||
|
||||
set -e |
||||
|
||||
# Remove symlink. |
||||
rm -f /usr/bin/subsonic |
||||
|
||||
# Remove startup scripts. |
||||
update-rc.d -f subsonic remove |
@ -0,0 +1,15 @@ |
||||
#! /bin/sh |
||||
|
||||
set -e |
||||
|
||||
# Stop Subsonic service. |
||||
if [ -e /etc/init.d/subsonic ]; then |
||||
invoke-rc.d subsonic stop |
||||
fi |
||||
|
||||
# Backup database. |
||||
if [ -e /var/subsonic/db ]; then |
||||
rm -rf /var/subsonic/db.backup |
||||
cp -R /var/subsonic/db /var/subsonic/db.backup |
||||
fi |
||||
|
@ -0,0 +1,8 @@ |
||||
#! /bin/sh |
||||
|
||||
set -e |
||||
|
||||
# Stop Subsonic service. |
||||
if [ -e /etc/init.d/subsonic ]; then |
||||
invoke-rc.d subsonic stop |
||||
fi |
@ -0,0 +1,25 @@ |
||||
# |
||||
# This is the configuration file for the Subsonic service |
||||
# (/etc/init.d/subsonic) |
||||
# |
||||
# To change the startup parameters of Subsonic, modify |
||||
# the SUBSONIC_ARGS variable below. |
||||
# |
||||
# Type "/usr/share/subsonic/subsonic.sh --help" on the command line to read an |
||||
# explanation of the different options. |
||||
# |
||||
# For example, to specify that Subsonic should use port 80 (for http) |
||||
# and 443 (for https), and use a Java memory heap size of 200 MB, use |
||||
# the following: |
||||
# |
||||
# SUBSONIC_ARGS="--port=80 --https-port=443 --max-memory=200" |
||||
|
||||
SUBSONIC_ARGS="--max-memory=150" |
||||
|
||||
|
||||
# The user which should run the Subsonic process. Default "root". |
||||
# Note that non-root users are by default not allowed to use ports |
||||
# below 1024. Also make sure to grant the user write permissions in |
||||
# the music directories, otherwise changing album art and tags will fail. |
||||
|
||||
SUBSONIC_USER=root |
@ -0,0 +1,138 @@ |
||||
#! /bin/sh |
||||
### BEGIN INIT INFO |
||||
# Provides: subsonic |
||||
# Required-Start: $remote_fs $syslog |
||||
# Required-Stop: $remote_fs $syslog |
||||
# Default-Start: 2 3 4 5 |
||||
# Default-Stop: 0 1 6 |
||||
# Short-Description: Subsonic daemon |
||||
# Description: Starts the Subsonic daemon. Subsonic is a web-based |
||||
# music streamer, jukebox and Podcast receiver. |
||||
# See http://subsonic.org for more details. |
||||
### END INIT INFO |
||||
|
||||
# Author: Sindre Mehus <sindre@activeobjects.no> |
||||
|
||||
# To change the startup parameters of Subsonic, modify the service |
||||
# configuration file /etc/default/subsonic rather than this file. |
||||
[ -r /etc/default/subsonic ] && . /etc/default/subsonic |
||||
|
||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin |
||||
DESC="Subsonic Daemon" |
||||
NAME=subsonic |
||||
PIDFILE=/var/run/$NAME.pid |
||||
DAEMON=/usr/bin/$NAME |
||||
DAEMON_ARGS="--pidfile=$PIDFILE $SUBSONIC_ARGS" |
||||
SCRIPTNAME=/etc/init.d/$NAME |
||||
|
||||
# Exit if the package is not installed |
||||
[ -x "$DAEMON" ] || exit 0 |
||||
|
||||
# Run as root if SUBSONIC_USER is not set. |
||||
[ "$SUBSONIC_USER" = "" ] && SUBSONIC_USER=root |
||||
|
||||
# Make sure Subsonic is started with system locale |
||||
if [ -r /etc/default/locale ]; then |
||||
. /etc/default/locale |
||||
export LANG |
||||
fi |
||||
|
||||
# Load the VERBOSE setting and other rcS variables |
||||
. /lib/init/vars.sh |
||||
|
||||
# Define LSB log_* functions. |
||||
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present. |
||||
. /lib/lsb/init-functions |
||||
|
||||
# |
||||
# Function that starts the daemon/service |
||||
# |
||||
do_start() |
||||
{ |
||||
# Return |
||||
# 0 if daemon has been started |
||||
# 1 if daemon was already running |
||||
# 2 if daemon could not be started |
||||
|
||||
if [ -e $PIDFILE ] |
||||
then |
||||
ps -p $(cat $PIDFILE) > /dev/null |
||||
[ "$?" = 0 ] && return 1 |
||||
fi |
||||
|
||||
touch $PIDFILE |
||||
chown $SUBSONIC_USER $PIDFILE |
||||
[ -e /var/subsonic ] && chown -R $SUBSONIC_USER /var/subsonic |
||||
[ -e /tmp/subsonic ] && chown -R $SUBSONIC_USER /tmp/subsonic |
||||
|
||||
start-stop-daemon --start -c $SUBSONIC_USER --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_ARGS || return 2 |
||||
} |
||||
|
||||
# |
||||
# Function that stops the daemon/service |
||||
# |
||||
do_stop() |
||||
{ |
||||
# Return |
||||
# 0 if daemon has been stopped |
||||
# 1 if daemon was already stopped |
||||
# 2 if daemon could not be stopped |
||||
# other if a failure occurred |
||||
start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE |
||||
RETVAL="$?" |
||||
[ "$RETVAL" = 2 ] && return 2 |
||||
|
||||
# Many daemons don't delete their pidfiles when they exit. |
||||
rm -f $PIDFILE |
||||
return "$RETVAL" |
||||
} |
||||
|
||||
case "$1" in |
||||
start) |
||||
[ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME" |
||||
do_start |
||||
case "$?" in |
||||
0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; |
||||
2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; |
||||
esac |
||||
;; |
||||
stop) |
||||
[ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME" |
||||
do_stop |
||||
case "$?" in |
||||
0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; |
||||
2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; |
||||
esac |
||||
;; |
||||
status) |
||||
status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? |
||||
;; |
||||
restart|force-reload) |
||||
# |
||||
# If the "reload" option is implemented then remove the |
||||
# 'force-reload' alias |
||||
# |
||||
log_daemon_msg "Restarting $DESC" "$NAME" |
||||
do_stop |
||||
case "$?" in |
||||
0|1) |
||||
do_start |
||||
case "$?" in |
||||
0) log_end_msg 0 ;; |
||||
1) log_end_msg 1 ;; # Old process is still running |
||||
*) log_end_msg 1 ;; # Failed to start |
||||
esac |
||||
;; |
||||
*) |
||||
# Failed to stop |
||||
log_end_msg 1 |
||||
;; |
||||
esac |
||||
;; |
||||
*) |
||||
echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2 |
||||
exit 3 |
||||
;; |
||||
esac |
||||
|
||||
: |
@ -0,0 +1,112 @@ |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
|
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-installer-mac</artifactId> |
||||
<packaging>pom</packaging> |
||||
<name>Subsonic Installer for Mac</name> |
||||
|
||||
<parent> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic</artifactId> |
||||
<version>5.3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
|
||||
<dependency> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-main</artifactId> |
||||
<version>${project.version}</version> |
||||
<type>war</type> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-booter</artifactId> |
||||
<version>${project.version}</version> |
||||
</dependency> |
||||
|
||||
</dependencies> |
||||
|
||||
<profiles> |
||||
<profile> |
||||
<id>mac</id> |
||||
<activation> |
||||
<os> |
||||
<family>mac</family> |
||||
</os> |
||||
</activation> |
||||
<build> |
||||
<plugins> |
||||
|
||||
<plugin> |
||||
<artifactId>maven-antrun-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<phase>compile</phase> |
||||
<configuration> |
||||
<target> |
||||
<taskdef name="appbundler" classname="com.oracle.appbundler.AppBundlerTask"/> |
||||
<mkdir dir="${project.build.directory}"/> |
||||
|
||||
<appbundler outputdirectory="target" |
||||
name="Subsonic" |
||||
displayname="Subsonic" |
||||
icon="src/subsonic.icns" |
||||
identifier="net.sourceforge.subsonic" |
||||
shortversion="${project.version}" |
||||
mainclassname="net.sourceforge.subsonic.booter.Main"> |
||||
<runtime dir="${env.JAVA_HOME}"/> |
||||
<classpath dir=".."> |
||||
<include name="subsonic-booter/target/subsonic-booter-jar-with-dependencies.jar"/> |
||||
<include name="subsonic-main/target/subsonic.war"/> |
||||
</classpath> |
||||
<option value="-Dsubsonic.war=$APP_ROOT/Contents/Java/subsonic.war"/> |
||||
<option value="-Dsubsonic.home=/Library/Application Support/Subsonic"/> |
||||
<option value="-Dsubsonic.defaultMusicFolder=/Users/Shared/Music/iTunes/iTunes Media"/> |
||||
<option value="-Dsubsonic.defaultPodcastFolder=/Users/Shared/Podcasts"/> |
||||
<option value="-Dsubsonic.defaultPlaylistFolder=/Users/Shared/Playlists"/> |
||||
<option value="-Dsubsonic.port=4040"/> |
||||
<option value="-Dsubsonic.httpsPort=0"/> |
||||
<option value="-Dsubsonic.contextPath=/"/> |
||||
<option value="-Dapple.awt.UIElement=true"/> |
||||
<option value="-Xmx150m"/> |
||||
<argument value="-mac"/> |
||||
</appbundler> |
||||
|
||||
<!--Requires installation of Packages, see http://s.sudre.free.fr/Software/Packages/about.html or subsonic-tools--> |
||||
<exec executable="/usr/local/bin/packagesbuild"> |
||||
<arg value="-v"/> |
||||
<arg value="${project.basedir}/src/subsonic.pkgproj"/> |
||||
</exec> |
||||
|
||||
<exec executable="/usr/bin/productsign"> |
||||
<arg value="--sign"/> |
||||
<arg value="Sindre Mehus"/> |
||||
<arg value="${project.build.directory}/subsonic.pkg"/> |
||||
<arg value="${project.build.directory}/subsonic-${project.version}.pkg"/> |
||||
</exec> |
||||
</target> |
||||
</configuration> |
||||
<goals> |
||||
<goal>run</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>com.oracle</groupId> |
||||
<artifactId>appbundler</artifactId> |
||||
<version>1.0</version> |
||||
</dependency> |
||||
</dependencies> |
||||
</plugin> |
||||
|
||||
</plugins> |
||||
</build> |
||||
</profile> |
||||
</profiles> |
||||
|
||||
</project> |
@ -0,0 +1,13 @@ |
||||
#!/bin/bash |
||||
|
||||
SUBSONIC_HOME="/Library/Application Support/Subsonic" |
||||
|
||||
chmod oug+rwx "$SUBSONIC_HOME" |
||||
chown root:admin "$SUBSONIC_HOME" |
||||
|
||||
chmod oug+rx "$SUBSONIC_HOME/transcode" |
||||
chown root:admin "$SUBSONIC_HOME/transcode" |
||||
|
||||
rm -rf "$SUBSONIC_HOME/jetty" |
||||
|
||||
echo Subsonic installation done |
@ -0,0 +1,11 @@ |
||||
#!/bin/bash |
||||
|
||||
SUBSONIC_HOME="/Library/Application Support/Subsonic" |
||||
|
||||
# Backup database. |
||||
|
||||
if [ -e "$SUBSONIC_HOME/db" ]; then |
||||
rm -rf "$SUBSONIC_HOME/db.backup" |
||||
cp -R "$SUBSONIC_HOME/db" "$SUBSONIC_HOME/db.backup" |
||||
fi |
||||
|
@ -0,0 +1,883 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
||||
<plist version="1.0"> |
||||
<dict> |
||||
<key>PACKAGES</key> |
||||
<array> |
||||
<dict> |
||||
<key>PACKAGE_FILES</key> |
||||
<dict> |
||||
<key>DEFAULT_INSTALL_LOCATION</key> |
||||
<string>/</string> |
||||
<key>HIERARCHY</key> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>80</integer> |
||||
<key>PATH</key> |
||||
<string>../target/Subsonic.app</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>1</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>3</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>80</integer> |
||||
<key>PATH</key> |
||||
<string>Utilities</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>GID</key> |
||||
<integer>80</integer> |
||||
<key>PATH</key> |
||||
<string>Applications</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>509</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>80</integer> |
||||
<key>PATH</key> |
||||
<string>../../subsonic-transcode/mac/ffmpeg</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>1</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>3</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>GID</key> |
||||
<integer>80</integer> |
||||
<key>PATH</key> |
||||
<string>transcode</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>2</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>GID</key> |
||||
<integer>80</integer> |
||||
<key>PATH</key> |
||||
<string>Subsonic</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>2</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>GID</key> |
||||
<integer>80</integer> |
||||
<key>PATH</key> |
||||
<string>Application Support</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Documentation</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Filesystems</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Frameworks</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Input Methods</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Internet Plug-Ins</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>LaunchAgents</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>LaunchDaemons</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>PreferencePanes</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Preferences</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>80</integer> |
||||
<key>PATH</key> |
||||
<string>Printers</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>PrivilegedHelperTools</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>QuickLook</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>QuickTime</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Screen Savers</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Scripts</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Services</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Widgets</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Library</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Extensions</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Library</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>System</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array> |
||||
<dict> |
||||
<key>CHILDREN</key> |
||||
<array/> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>Shared</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>1023</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>GID</key> |
||||
<integer>80</integer> |
||||
<key>PATH</key> |
||||
<string>Users</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>GID</key> |
||||
<integer>0</integer> |
||||
<key>PATH</key> |
||||
<string>/</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>PERMISSIONS</key> |
||||
<integer>493</integer> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
<key>UID</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<key>PAYLOAD_TYPE</key> |
||||
<integer>0</integer> |
||||
<key>VERSION</key> |
||||
<integer>2</integer> |
||||
</dict> |
||||
<key>PACKAGE_SCRIPTS</key> |
||||
<dict> |
||||
<key>POSTINSTALL_PATH</key> |
||||
<dict> |
||||
<key>PATH</key> |
||||
<string>postinstall.sh</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>1</integer> |
||||
</dict> |
||||
<key>PREINSTALL_PATH</key> |
||||
<dict> |
||||
<key>PATH</key> |
||||
<string>preinstall.sh</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>1</integer> |
||||
</dict> |
||||
<key>RESOURCES</key> |
||||
<array/> |
||||
</dict> |
||||
<key>PACKAGE_SETTINGS</key> |
||||
<dict> |
||||
<key>AUTHENTICATION</key> |
||||
<integer>1</integer> |
||||
<key>CONCLUSION_ACTION</key> |
||||
<integer>0</integer> |
||||
<key>IDENTIFIER</key> |
||||
<string>net.sourceforge.subsonic</string> |
||||
<key>NAME</key> |
||||
<string>subsonic</string> |
||||
<key>OVERWRITE_PERMISSIONS</key> |
||||
<false/> |
||||
<key>VERSION</key> |
||||
<string>1.0</string> |
||||
</dict> |
||||
<key>UUID</key> |
||||
<string>1804C6F2-A8D3-496B-B75B-8945F1A8CFEE</string> |
||||
</dict> |
||||
</array> |
||||
<key>PROJECT</key> |
||||
<dict> |
||||
<key>PROJECT_COMMENTS</key> |
||||
<dict> |
||||
<key>NOTES</key> |
||||
<data> |
||||
PCFET0NUWVBFIGh0bWwgUFVCTElDICItLy9XM0MvL0RURCBIVE1M |
||||
IDQuMDEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvVFIvaHRtbDQv |
||||
c3RyaWN0LmR0ZCI+CjxodG1sPgo8aGVhZD4KPG1ldGEgaHR0cC1l |
||||
cXVpdj0iQ29udGVudC1UeXBlIiBjb250ZW50PSJ0ZXh0L2h0bWw7 |
||||
IGNoYXJzZXQ9VVRGLTgiPgo8bWV0YSBodHRwLWVxdWl2PSJDb250 |
||||
ZW50LVN0eWxlLVR5cGUiIGNvbnRlbnQ9InRleHQvY3NzIj4KPHRp |
||||
dGxlPjwvdGl0bGU+CjxtZXRhIG5hbWU9IkdlbmVyYXRvciIgY29u |
||||
dGVudD0iQ29jb2EgSFRNTCBXcml0ZXIiPgo8bWV0YSBuYW1lPSJD |
||||
b2NvYVZlcnNpb24iIGNvbnRlbnQ9IjEyNjUuMTkiPgo8c3R5bGUg |
||||
dHlwZT0idGV4dC9jc3MiPgo8L3N0eWxlPgo8L2hlYWQ+Cjxib2R5 |
||||
Pgo8L2JvZHk+CjwvaHRtbD4K |
||||
</data> |
||||
</dict> |
||||
<key>PROJECT_PRESENTATION</key> |
||||
<dict> |
||||
<key>BACKGROUND</key> |
||||
<dict> |
||||
<key>ALIGNMENT</key> |
||||
<integer>6</integer> |
||||
<key>BACKGROUND_PATH</key> |
||||
<dict> |
||||
<key>PATH</key> |
||||
<string>subsonic.png</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>1</integer> |
||||
</dict> |
||||
<key>CUSTOM</key> |
||||
<integer>1</integer> |
||||
<key>SCALING</key> |
||||
<integer>2</integer> |
||||
</dict> |
||||
<key>INSTALLATION_STEPS</key> |
||||
<array> |
||||
<dict> |
||||
<key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> |
||||
<string>ICPresentationViewIntroductionController</string> |
||||
<key>INSTALLER_PLUGIN</key> |
||||
<string>Introduction</string> |
||||
<key>LIST_TITLE_KEY</key> |
||||
<string>InstallerSectionTitle</string> |
||||
</dict> |
||||
<dict> |
||||
<key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> |
||||
<string>ICPresentationViewReadMeController</string> |
||||
<key>INSTALLER_PLUGIN</key> |
||||
<string>ReadMe</string> |
||||
<key>LIST_TITLE_KEY</key> |
||||
<string>InstallerSectionTitle</string> |
||||
</dict> |
||||
<dict> |
||||
<key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> |
||||
<string>ICPresentationViewLicenseController</string> |
||||
<key>INSTALLER_PLUGIN</key> |
||||
<string>License</string> |
||||
<key>LIST_TITLE_KEY</key> |
||||
<string>InstallerSectionTitle</string> |
||||
</dict> |
||||
<dict> |
||||
<key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> |
||||
<string>ICPresentationViewDestinationSelectController</string> |
||||
<key>INSTALLER_PLUGIN</key> |
||||
<string>TargetSelect</string> |
||||
<key>LIST_TITLE_KEY</key> |
||||
<string>InstallerSectionTitle</string> |
||||
</dict> |
||||
<dict> |
||||
<key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> |
||||
<string>ICPresentationViewInstallationTypeController</string> |
||||
<key>INSTALLER_PLUGIN</key> |
||||
<string>PackageSelection</string> |
||||
<key>LIST_TITLE_KEY</key> |
||||
<string>InstallerSectionTitle</string> |
||||
</dict> |
||||
<dict> |
||||
<key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> |
||||
<string>ICPresentationViewInstallationController</string> |
||||
<key>INSTALLER_PLUGIN</key> |
||||
<string>Install</string> |
||||
<key>LIST_TITLE_KEY</key> |
||||
<string>InstallerSectionTitle</string> |
||||
</dict> |
||||
<dict> |
||||
<key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> |
||||
<string>ICPresentationViewSummaryController</string> |
||||
<key>INSTALLER_PLUGIN</key> |
||||
<string>Summary</string> |
||||
<key>LIST_TITLE_KEY</key> |
||||
<string>InstallerSectionTitle</string> |
||||
</dict> |
||||
</array> |
||||
<key>INTRODUCTION</key> |
||||
<dict> |
||||
<key>LOCALIZATIONS</key> |
||||
<array/> |
||||
</dict> |
||||
<key>SUMMARY</key> |
||||
<dict> |
||||
<key>LOCALIZATIONS</key> |
||||
<array/> |
||||
</dict> |
||||
<key>TITLE</key> |
||||
<dict> |
||||
<key>LOCALIZATIONS</key> |
||||
<array> |
||||
<dict> |
||||
<key>LANGUAGE</key> |
||||
<string>English</string> |
||||
<key>VALUE</key> |
||||
<string>Subsonic</string> |
||||
</dict> |
||||
</array> |
||||
</dict> |
||||
</dict> |
||||
<key>PROJECT_REQUIREMENTS</key> |
||||
<dict> |
||||
<key>LIST</key> |
||||
<array/> |
||||
<key>POSTINSTALL_PATH</key> |
||||
<dict/> |
||||
<key>PREINSTALL_PATH</key> |
||||
<dict/> |
||||
<key>RESOURCES</key> |
||||
<array/> |
||||
<key>ROOT_VOLUME_ONLY</key> |
||||
<false/> |
||||
</dict> |
||||
<key>PROJECT_SETTINGS</key> |
||||
<dict> |
||||
<key>ADVANCED_OPTIONS</key> |
||||
<dict/> |
||||
<key>BUILD_FORMAT</key> |
||||
<integer>0</integer> |
||||
<key>BUILD_PATH</key> |
||||
<dict> |
||||
<key>PATH</key> |
||||
<string>../target</string> |
||||
<key>PATH_TYPE</key> |
||||
<integer>1</integer> |
||||
</dict> |
||||
<key>EXCLUDED_FILES</key> |
||||
<array> |
||||
<dict> |
||||
<key>PATTERNS_ARRAY</key> |
||||
<array> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>.DS_Store</string> |
||||
<key>TYPE</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>PROTECTED</key> |
||||
<true/> |
||||
<key>PROXY_NAME</key> |
||||
<string>Remove .DS_Store files</string> |
||||
<key>PROXY_TOOLTIP</key> |
||||
<string>Remove ".DS_Store" files created by the Finder.</string> |
||||
<key>STATE</key> |
||||
<true/> |
||||
</dict> |
||||
<dict> |
||||
<key>PATTERNS_ARRAY</key> |
||||
<array> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>.pbdevelopment</string> |
||||
<key>TYPE</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>PROTECTED</key> |
||||
<true/> |
||||
<key>PROXY_NAME</key> |
||||
<string>Remove .pbdevelopment files</string> |
||||
<key>PROXY_TOOLTIP</key> |
||||
<string>Remove ".pbdevelopment" files created by ProjectBuilder or Xcode.</string> |
||||
<key>STATE</key> |
||||
<true/> |
||||
</dict> |
||||
<dict> |
||||
<key>PATTERNS_ARRAY</key> |
||||
<array> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>CVS</string> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>.cvsignore</string> |
||||
<key>TYPE</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>.cvspass</string> |
||||
<key>TYPE</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>.svn</string> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>.git</string> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>.gitignore</string> |
||||
<key>TYPE</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>PROTECTED</key> |
||||
<true/> |
||||
<key>PROXY_NAME</key> |
||||
<string>Remove SCM metadata</string> |
||||
<key>PROXY_TOOLTIP</key> |
||||
<string>Remove helper files and folders used by the CVS, SVN or Git Source Code Management systems.</string> |
||||
<key>STATE</key> |
||||
<true/> |
||||
</dict> |
||||
<dict> |
||||
<key>PATTERNS_ARRAY</key> |
||||
<array> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>classes.nib</string> |
||||
<key>TYPE</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>designable.db</string> |
||||
<key>TYPE</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>info.nib</string> |
||||
<key>TYPE</key> |
||||
<integer>0</integer> |
||||
</dict> |
||||
</array> |
||||
<key>PROTECTED</key> |
||||
<true/> |
||||
<key>PROXY_NAME</key> |
||||
<string>Optimize nib files</string> |
||||
<key>PROXY_TOOLTIP</key> |
||||
<string>Remove "classes.nib", "info.nib" and "designable.nib" files within .nib bundles.</string> |
||||
<key>STATE</key> |
||||
<true/> |
||||
</dict> |
||||
<dict> |
||||
<key>PATTERNS_ARRAY</key> |
||||
<array> |
||||
<dict> |
||||
<key>REGULAR_EXPRESSION</key> |
||||
<false/> |
||||
<key>STRING</key> |
||||
<string>Resources Disabled</string> |
||||
<key>TYPE</key> |
||||
<integer>1</integer> |
||||
</dict> |
||||
</array> |
||||
<key>PROTECTED</key> |
||||
<true/> |
||||
<key>PROXY_NAME</key> |
||||
<string>Remove Resources Disabled folders</string> |
||||
<key>PROXY_TOOLTIP</key> |
||||
<string>Remove "Resources Disabled" folders.</string> |
||||
<key>STATE</key> |
||||
<true/> |
||||
</dict> |
||||
<dict> |
||||
<key>SEPARATOR</key> |
||||
<true/> |
||||
</dict> |
||||
</array> |
||||
<key>NAME</key> |
||||
<string>subsonic</string> |
||||
</dict> |
||||
</dict> |
||||
<key>TYPE</key> |
||||
<integer>0</integer> |
||||
<key>VERSION</key> |
||||
<integer>2</integer> |
||||
</dict> |
||||
</plist> |
After Width: | Height: | Size: 42 KiB |
@ -0,0 +1,122 @@ |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
|
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-installer-rpm</artifactId> |
||||
<packaging>pom</packaging> |
||||
<name>Subsonic Installer for RPM</name> |
||||
|
||||
<parent> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic</artifactId> |
||||
<version>5.3</version> |
||||
</parent> |
||||
|
||||
<profiles> |
||||
|
||||
<profile> |
||||
<id>rpm</id> |
||||
<activation> |
||||
<property> |
||||
<name>rpm</name> |
||||
</property> |
||||
</activation> |
||||
|
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.codehaus.mojo</groupId> |
||||
<artifactId>buildnumber-maven-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<phase>validate</phase> |
||||
<goals> |
||||
<goal>create</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
<configuration> |
||||
<doCheck>false</doCheck> |
||||
<doUpdate>false</doUpdate> |
||||
</configuration> |
||||
</plugin> |
||||
|
||||
<plugin> |
||||
<artifactId>maven-antrun-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<id>rpm</id> |
||||
<phase>compile</phase> |
||||
<configuration> |
||||
<target> |
||||
<echo>Creating RPM package...</echo> |
||||
|
||||
<copy file="${basedir}/src/subsonic.spec" |
||||
todir="${project.build.directory}/rpm/SPECS"> |
||||
<filterset> |
||||
<filter token="VERSION" value="${project.version}"/> |
||||
<filter token="BUILD_NUMBER" value="${buildNumber}"/> |
||||
</filterset> |
||||
</copy> |
||||
|
||||
<!--Remove ".beta" suffix from version tag.--> |
||||
<replace file="${project.build.directory}/rpm/SPECS/subsonic.spec"> |
||||
<replacetoken>.beta1</replacetoken> |
||||
<replacetoken>.beta2</replacetoken> |
||||
<replacetoken>.beta3</replacetoken> |
||||
<replacetoken>.beta4</replacetoken> |
||||
</replace> |
||||
|
||||
<mkdir dir="${project.build.directory}/rpm/RPMS/i386"/> |
||||
|
||||
<copy file="${basedir}/src/etc/init.d/subsonic" |
||||
todir="${project.build.directory}/rpm/buildroot/etc/init.d"/> |
||||
<copy file="${basedir}/src/etc/sysconfig/subsonic" |
||||
todir="${project.build.directory}/rpm/buildroot/etc/sysconfig"/> |
||||
<copy file="../subsonic-booter/src/main/script/subsonic.sh" |
||||
todir="${project.build.directory}/rpm/buildroot/usr/share/subsonic"/> |
||||
<copy file="../subsonic-booter/target/subsonic-booter-jar-with-dependencies.jar" |
||||
todir="${project.build.directory}/rpm/buildroot/usr/share/subsonic"/> |
||||
<copy file="../subsonic-main/target/subsonic.war" |
||||
todir="${project.build.directory}/rpm/buildroot/usr/share/subsonic"/> |
||||
<copy file="../subsonic-transcode/linux/ffmpeg" |
||||
todir="${project.build.directory}/rpm/buildroot/var/subsonic/transcode"/> |
||||
<copy file="../subsonic-transcode/linux/lame" |
||||
todir="${project.build.directory}/rpm/buildroot/var/subsonic/transcode"/> |
||||
|
||||
<exec executable="rpmbuild"> |
||||
<arg value="-bb"/> |
||||
<arg value="--buildroot"/> |
||||
<arg value="${project.build.directory}/rpm/buildroot"/> |
||||
<arg value="--define"/> |
||||
<arg value="_topdir ${project.build.directory}/rpm"/> |
||||
<arg value="--target"/> |
||||
<arg value="i386"/> |
||||
<arg value="${project.build.directory}/rpm/SPECS/subsonic.spec"/> |
||||
</exec> |
||||
|
||||
<copy tofile="${project.build.directory}/subsonic-${project.version}.rpm"> |
||||
<fileset dir="${project.build.directory}/rpm/RPMS/i386"> |
||||
<include name="*.rpm"/> |
||||
</fileset> |
||||
</copy> |
||||
|
||||
<exec executable="rpmlint"> |
||||
<arg value="${project.build.directory}/subsonic-${project.version}.rpm"/> |
||||
</exec> |
||||
</target> |
||||
</configuration> |
||||
<goals> |
||||
<goal>run</goal> |
||||
</goals> |
||||
</execution> |
||||
|
||||
</executions> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
</profile> |
||||
</profiles> |
||||
|
||||
</project> |
@ -0,0 +1,104 @@ |
||||
#!/bin/bash |
||||
# |
||||
# subsonic This shell script takes care of starting and stopping Subsonic |
||||
# |
||||
# chkconfig: - 80 20 |
||||
# |
||||
### BEGIN INIT INFO |
||||
# Provides: subsonic |
||||
# Required-Start: $network $syslog |
||||
# Required-Stop: $network $syslog |
||||
# Default-Start: 2 3 4 5 |
||||
# Default-Stop: 0 1 6 |
||||
# Short-Description: Subsonic daemon |
||||
# Description: Starts the Subsonic daemon. Subsonic is a web-based |
||||
# music streamer, jukebox and Podcast receiver. |
||||
# See http://subsonic.org for more details. |
||||
### END INIT INFO |
||||
|
||||
# Author: Sindre Mehus <sindre@activeobjects.no> |
||||
|
||||
# To change the startup parameters of Subsonic, modify the service |
||||
# configuration file /etc/sysconfig/subsonic rather than this file. |
||||
[ -r /etc/sysconfig/subsonic ] && . /etc/sysconfig/subsonic |
||||
|
||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin |
||||
DESC="Subsonic Daemon" |
||||
NAME=subsonic |
||||
PIDFILE=/var/run/$NAME.pid |
||||
LOCKFILE=/var/lock/subsys/$NAME |
||||
DAEMON=/usr/bin/$NAME |
||||
DAEMON_ARGS="--pidfile=$PIDFILE $SUBSONIC_ARGS" |
||||
SCRIPTNAME=/etc/init.d/$NAME |
||||
|
||||
# Exit if the package is not installed. |
||||
[ -x "$DAEMON" ] || exit 0 |
||||
|
||||
# Run as root if SUBSONIC_USER is not set. |
||||
[ "$SUBSONIC_USER" = "" ] && SUBSONIC_USER=root |
||||
|
||||
# Source function library. |
||||
. /etc/init.d/functions |
||||
|
||||
# |
||||
# Function that starts the daemon/service |
||||
# |
||||
do_start() |
||||
{ |
||||
# Check if daemon is already running. |
||||
if [ -e $PIDFILE ] |
||||
then |
||||
ps -p $(cat $PIDFILE) > /dev/null |
||||
[ "$?" = 0 ] && return 1 |
||||
fi |
||||
|
||||
touch $PIDFILE |
||||
chown $SUBSONIC_USER $PIDFILE |
||||
[ -e /var/subsonic ] && chown -R $SUBSONIC_USER /var/subsonic |
||||
[ -e /tmp/subsonic ] && chown -R $SUBSONIC_USER /tmp/subsonic |
||||
|
||||
echo $"Starting $NAME ..." |
||||
su -c "$DAEMON $DAEMON_ARGS" $SUBSONIC_USER |
||||
RETVAL=$? |
||||
echo |
||||
[ $RETVAL -eq 0 ] && touch $LOCKFILE |
||||
return $RETVAL |
||||
} |
||||
|
||||
# |
||||
# Function that stops the daemon/service |
||||
# |
||||
do_stop() |
||||
{ |
||||
# Check if pidfile exists |
||||
[ ! -e $PIDFILE ] && return 1 |
||||
|
||||
echo -n $"Stopping $NAME ..." |
||||
killproc -p $PIDFILE $DAEMON |
||||
RETVAL=$? |
||||
echo |
||||
[ $RETVAL -eq 0 ] && rm -f $LOCKFILE |
||||
return $RETVAL |
||||
} |
||||
|
||||
case "$1" in |
||||
start) |
||||
do_start |
||||
;; |
||||
stop) |
||||
do_stop |
||||
;; |
||||
status) |
||||
status -p $PIDFILE "$NAME" |
||||
;; |
||||
restart|force-reload) |
||||
do_stop |
||||
do_start |
||||
;; |
||||
*) |
||||
echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2 |
||||
exit 3 |
||||
;; |
||||
esac |
||||
|
||||
: |
@ -0,0 +1,25 @@ |
||||
# |
||||
# This is the configuration file for the Subsonic service |
||||
# (/etc/init.d/subsonic) |
||||
# |
||||
# To change the startup parameters of Subsonic, modify |
||||
# the SUBSONIC_ARGS variable below. |
||||
# |
||||
# Type "/usr/share/subsonic/subsonic.sh --help" on the command line to read an |
||||
# explanation of the different options. |
||||
# |
||||
# For example, to specify that Subsonic should use port 80 (for http) |
||||
# and 443 (for https), and use a Java memory heap size of 200 MB, use |
||||
# the following: |
||||
# |
||||
# SUBSONIC_ARGS="--port=80 --https-port=443 --max-memory=200" |
||||
|
||||
SUBSONIC_ARGS="--max-memory=150" |
||||
|
||||
|
||||
# The user which should run the Subsonic process. Default "root". |
||||
# Note that non-root users are by default not allowed to use ports |
||||
# below 1024. Also make sure to grant the user write permissions in |
||||
# the music directories, otherwise changing album art and tags will fail. |
||||
|
||||
SUBSONIC_USER=root |
@ -0,0 +1,78 @@ |
||||
Name: subsonic |
||||
Version: @VERSION@ |
||||
Release: @BUILD_NUMBER@ |
||||
Summary: A web-based music streamer, jukebox and Podcast receiver |
||||
|
||||
Group: Applications/Multimedia |
||||
License: GPLv3 |
||||
URL: http://subsonic.org |
||||
|
||||
%description |
||||
Subsonic is a web-based music streamer, jukebox and Podcast receiver, |
||||
providing access to your music collection wherever you are. Use it |
||||
to share your music with friends, or to listen to your music while away |
||||
from home. |
||||
|
||||
Apps for Android, iPhone and Windows Phone are also available. |
||||
|
||||
Java 1.6 or higher is required to run Subsonic. |
||||
|
||||
Subsonic can be found at http://subsonic.org |
||||
|
||||
%files |
||||
%defattr(644,root,root,755) |
||||
/usr/share/subsonic/subsonic-booter-jar-with-dependencies.jar |
||||
/usr/share/subsonic/subsonic.war |
||||
%attr(755,root,root) /usr/share/subsonic/subsonic.sh |
||||
%attr(755,root,root) /etc/init.d/subsonic |
||||
%attr(755,root,root) /var/subsonic/transcode/ffmpeg |
||||
%attr(755,root,root) /var/subsonic/transcode/lame |
||||
%config(noreplace) /etc/sysconfig/subsonic |
||||
|
||||
%pre |
||||
# Stop Subsonic service. |
||||
if [ -e /etc/init.d/subsonic ]; then |
||||
service subsonic stop |
||||
fi |
||||
|
||||
# Backup database. |
||||
if [ -e /var/subsonic/db ]; then |
||||
rm -rf /var/subsonic/db.backup |
||||
cp -R /var/subsonic/db /var/subsonic/db.backup |
||||
fi |
||||
|
||||
exit 0 |
||||
|
||||
%post |
||||
ln -sf /usr/share/subsonic/subsonic.sh /usr/bin/subsonic |
||||
chmod 750 /var/subsonic |
||||
|
||||
# Clear jetty cache. |
||||
rm -rf /var/subsonic/jetty |
||||
|
||||
# For SELinux: Set security context |
||||
chcon -t java_exec_t /etc/init.d/subsonic 2>/dev/null |
||||
|
||||
# Configure and start Subsonic service. |
||||
chkconfig --add subsonic |
||||
service subsonic start |
||||
|
||||
exit 0 |
||||
|
||||
%preun |
||||
# Only do it if uninstalling, not upgrading. |
||||
if [ $1 = 0 ] ; then |
||||
|
||||
# Stop the service. |
||||
[ -e /etc/init.d/subsonic ] && service subsonic stop |
||||
|
||||
# Remove symlink. |
||||
rm -f /usr/bin/subsonic |
||||
|
||||
# Remove startup scripts. |
||||
chkconfig --del subsonic |
||||
|
||||
fi |
||||
|
||||
exit 0 |
||||
|
@ -0,0 +1,106 @@ |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
|
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-installer-windows</artifactId> |
||||
<packaging>pom</packaging> |
||||
<name>Subsonic Installer for Windows</name> |
||||
|
||||
<parent> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic</artifactId> |
||||
<version>5.3</version> |
||||
</parent> |
||||
|
||||
<properties> |
||||
<exe4j.home>c:/Program Files/exe4j</exe4j.home> |
||||
<nsis.home>c:/Program Files (x86)/NSIS</nsis.home> |
||||
</properties> |
||||
|
||||
<dependencies> |
||||
|
||||
<dependency> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-main</artifactId> |
||||
<version>${project.version}</version> |
||||
<type>war</type> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-booter</artifactId> |
||||
<version>${project.version}</version> |
||||
</dependency> |
||||
|
||||
</dependencies> |
||||
|
||||
<profiles> |
||||
|
||||
<profile> |
||||
<id>windows</id> |
||||
<activation> |
||||
<os> |
||||
<family>windows</family> |
||||
</os> |
||||
</activation> |
||||
|
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<artifactId>maven-antrun-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<id>exe4j</id> |
||||
<phase>compile</phase> |
||||
<configuration> |
||||
<target> |
||||
<echo>Compiling exe4j...</echo> |
||||
<copy file="${basedir}/src/main/exe4j/subsonic-agent.exe.vmoptions" todir="${project.build.directory}"/> |
||||
<copy file="${basedir}/src/main/exe4j/subsonic-agent-elevated.exe.vmoptions" todir="${project.build.directory}"/> |
||||
<copy file="${basedir}/src/main/exe4j/subsonic-service.exe.vmoptions" todir="${project.build.directory}"/> |
||||
<exec executable="${exe4j.home}/bin/exe4jc"> |
||||
<arg value="--license=L-SINDRE_MEHUS#14926715500010001-1ty7dbe11l10ll#140"/> |
||||
</exec> |
||||
<exec executable="${exe4j.home}/bin/exe4jc"> |
||||
<arg value="${basedir}/src/main/exe4j/subsonic-agent.exe4j"/> |
||||
</exec> |
||||
<exec executable="${exe4j.home}/bin/exe4jc"> |
||||
<arg value="${basedir}/src/main/exe4j/subsonic-agent-elevated.exe4j"/> |
||||
</exec> |
||||
<exec executable="${exe4j.home}/bin/exe4jc"> |
||||
<arg value="${basedir}/src/main/exe4j/subsonic-service.exe4j"/> |
||||
</exec> |
||||
</target> |
||||
</configuration> |
||||
<goals> |
||||
<goal>run</goal> |
||||
</goals> |
||||
</execution> |
||||
|
||||
<execution> |
||||
<id>nsis</id> |
||||
<phase>compile</phase> |
||||
<configuration> |
||||
<target> |
||||
<echo>Compiling NSIS script...</echo> |
||||
<mkdir dir="${project.build.directory}"/> |
||||
<exec executable="${nsis.home}/makensis"> |
||||
<arg value="${basedir}/src/main/nsis/subsonic.nsi"/> |
||||
<arg value="-XOutFile ${project.build.directory}/subsonic-${project.version}-setup.exe"/> |
||||
</exec> |
||||
</target> |
||||
</configuration> |
||||
<goals> |
||||
<goal>run</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
|
||||
</plugins> |
||||
</build> |
||||
|
||||
</profile> |
||||
</profiles> |
||||
</project> |
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1 @@ |
||||
-Xmx16m |
@ -0,0 +1,35 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<exe4j version="4.4.4" transformSequenceNumber="1"> |
||||
<directoryPresets config="." /> |
||||
<application name="Subsonic" distributionSourceDir="../../../target"> |
||||
<languages> |
||||
<principalLanguage id="en" customLocalizationFile="" /> |
||||
</languages> |
||||
</application> |
||||
<executable name="subsonic-agent-elevated" type="1" iconSet="true" iconFile="subsonic-16.ico" executableDir="" redirectStderr="true" stderrFile="log/subsonic-agent.log" stderrMode="overwrite" redirectStdout="false" stdoutFile="output.log" stdoutMode="overwrite" failOnStderrOutput="true" executableMode="1" changeWorkingDirectory="true" workingDirectory="." singleInstance="false" serviceStartType="2" serviceDependencies="" serviceDescription="Subsonic Music Streamer (http://subsonic.org)" jreLocation="" executionLevel="requireAdministrator" checkConsoleParameter="false" globalSingleInstance="false" amd64="false"> |
||||
<messageSet> |
||||
<message id="NoJvmFound" text="Java was not found on your system. Please download Java from www.java.com." /> |
||||
</messageSet> |
||||
<versionInfo include="false" fileVersion="" fileDescription="" legalCopyright="" internalName="" productName="" companyName="" productVersion="" /> |
||||
</executable> |
||||
<splashScreen show="false" autoOff="false" alwaysOnTop="false" width="-1" height="-1" bitmapFile="" java6SplashScreen="false"> |
||||
<text> |
||||
<statusLine x="0" y="0" text="" font="Arial" fontSize="8" fontColor="0,0,0" fontWeight="500" /> |
||||
<versionLine x="0" y="0" text="" font="Arial" fontSize="8" fontColor="0,0,0" fontWeight="500" /> |
||||
</text> |
||||
</splashScreen> |
||||
<java mainClass="net.sourceforge.subsonic.booter.Main" vmParameters="" arguments="-agent -elevated" allowVMPassthroughParameters="true" preferredVM="" bundleRuntime="true" minVersion="1.6" maxVersion="" allowBetaVM="true" jdkOnly="false"> |
||||
<searchSequence> |
||||
<registry /> |
||||
<envVar name="JAVA_HOME" /> |
||||
<envVar name="JDK_HOME" /> |
||||
</searchSequence> |
||||
<classPath> |
||||
<archive location="./subsonic-booter-jar-with-dependencies.jar" failOnError="false" /> |
||||
</classPath> |
||||
<nativeLibraryDirectories /> |
||||
</java> |
||||
<includedFiles /> |
||||
<unextractableFiles /> |
||||
</exe4j> |
||||
|
@ -0,0 +1 @@ |
||||
-Xmx16m |
@ -0,0 +1,41 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<exe4j version="4.5.1" transformSequenceNumber="1"> |
||||
<directoryPresets config="." /> |
||||
<application name="Subsonic" distributionSourceDir="../../../target"> |
||||
<languages> |
||||
<principalLanguage id="en" customLocalizationFile="" /> |
||||
</languages> |
||||
</application> |
||||
<executable name="subsonic-agent" type="1" iconSet="true" iconFile="subsonic-16.ico" executableDir="" redirectStderr="true" stderrFile="log/subsonic-agent.log" stderrMode="overwrite" redirectStdout="false" stdoutFile="output.log" stdoutMode="overwrite" failOnStderrOutput="true" executableMode="1" changeWorkingDirectory="true" workingDirectory="." singleInstance="false" serviceStartType="2" serviceDependencies="" serviceDescription="Subsonic Music Streamer (http://subsonic.org)" jreLocation="" executionLevel="asInvoker" checkConsoleParameter="false" globalSingleInstance="false" amd64="false"> |
||||
<messageSet> |
||||
<message id="NoJvmFound" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="JvmInPath" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="JvmDefinedPath" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="NoJvmFound3264" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="JvmInPath3264" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="JvmDefinedPath32" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="JvmDefinedPath64" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
</messageSet> |
||||
<versionInfo include="false" fileVersion="" fileDescription="" legalCopyright="" internalName="" productName="" companyName="" productVersion="" /> |
||||
</executable> |
||||
<splashScreen show="false" autoOff="false" alwaysOnTop="false" width="-1" height="-1" bitmapFile="" java6SplashScreen="false"> |
||||
<text> |
||||
<statusLine x="0" y="0" text="" font="Arial" fontSize="8" fontColor="0,0,0" fontWeight="500" /> |
||||
<versionLine x="0" y="0" text="" font="Arial" fontSize="8" fontColor="0,0,0" fontWeight="500" /> |
||||
</text> |
||||
</splashScreen> |
||||
<java mainClass="net.sourceforge.subsonic.booter.Main" vmParameters="" arguments="-agent" allowVMPassthroughParameters="true" preferredVM="" bundleRuntime="true" minVersion="1.6" maxVersion="" allowBetaVM="true" jdkOnly="false"> |
||||
<searchSequence> |
||||
<registry /> |
||||
<envVar name="JAVA_HOME" /> |
||||
<envVar name="JDK_HOME" /> |
||||
</searchSequence> |
||||
<classPath> |
||||
<archive location="./subsonic-booter-jar-with-dependencies.jar" failOnError="false" /> |
||||
</classPath> |
||||
<nativeLibraryDirectories /> |
||||
</java> |
||||
<includedFiles /> |
||||
<unextractableFiles /> |
||||
</exe4j> |
||||
|
@ -0,0 +1,6 @@ |
||||
-Xmx150m |
||||
-verbose:gc |
||||
-Dsubsonic.host=0.0.0.0 |
||||
-Dsubsonic.port=4040 |
||||
-Dsubsonic.httpsPort=0 |
||||
-Dsubsonic.contextPath=/ |
@ -0,0 +1,41 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<exe4j version="4.5.1" transformSequenceNumber="1"> |
||||
<directoryPresets config="." /> |
||||
<application name="Subsonic" distributionSourceDir="../../../target"> |
||||
<languages> |
||||
<principalLanguage id="en" customLocalizationFile="" /> |
||||
</languages> |
||||
</application> |
||||
<executable name="subsonic-service" type="1" iconSet="true" iconFile="subsonic-16.ico" executableDir="" redirectStderr="true" stderrFile="log/subsonic-service.log" stderrMode="overwrite" redirectStdout="false" stdoutFile="output.log" stdoutMode="overwrite" failOnStderrOutput="true" executableMode="3" changeWorkingDirectory="true" workingDirectory="." singleInstance="true" serviceStartType="2" serviceDependencies="" serviceDescription="Subsonic Music Streamer (http://subsonic.org)" jreLocation="" executionLevel="asInvoker" checkConsoleParameter="false" globalSingleInstance="false" amd64="false"> |
||||
<messageSet> |
||||
<message id="NoJvmFound" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="JvmInPath" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="JvmDefinedPath" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="NoJvmFound3264" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="JvmInPath3264" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="JvmDefinedPath32" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
<message id="JvmDefinedPath64" text="Java was not found on your system. Please download Java (32-bit version) from java.com." /> |
||||
</messageSet> |
||||
<versionInfo include="false" fileVersion="" fileDescription="" legalCopyright="" internalName="" productName="" companyName="" productVersion="" /> |
||||
</executable> |
||||
<splashScreen show="false" autoOff="false" alwaysOnTop="false" width="-1" height="-1" bitmapFile="" java6SplashScreen="false"> |
||||
<text> |
||||
<statusLine x="0" y="0" text="" font="Arial" fontSize="8" fontColor="0,0,0" fontWeight="500" /> |
||||
<versionLine x="0" y="0" text="" font="Arial" fontSize="8" fontColor="0,0,0" fontWeight="500" /> |
||||
</text> |
||||
</splashScreen> |
||||
<java mainClass="net.sourceforge.subsonic.booter.Main" vmParameters="-Dsubsonic.createLinkFile=true -Dsubsonic.windowsInstall=true" arguments="" allowVMPassthroughParameters="true" preferredVM="" bundleRuntime="true" minVersion="1.5" maxVersion="" allowBetaVM="true" jdkOnly="false"> |
||||
<searchSequence> |
||||
<registry /> |
||||
<envVar name="JAVA_HOME" /> |
||||
<envVar name="JDK_HOME" /> |
||||
</searchSequence> |
||||
<classPath> |
||||
<archive location="./subsonic-booter-jar-with-dependencies.jar" failOnError="false" /> |
||||
</classPath> |
||||
<nativeLibraryDirectories /> |
||||
</java> |
||||
<includedFiles /> |
||||
<unextractableFiles /> |
||||
</exe4j> |
||||
|
@ -0,0 +1,213 @@ |
||||
# subsonic.nsi |
||||
|
||||
!include "WordFunc.nsh" |
||||
!include "MUI.nsh" |
||||
|
||||
!insertmacro VersionCompare |
||||
|
||||
# The name of the installer |
||||
Name "Subsonic" |
||||
|
||||
# The default installation directory |
||||
InstallDir $PROGRAMFILES\Subsonic |
||||
|
||||
# Registry key to check for directory (so if you install again, it will |
||||
# overwrite the old one automatically) |
||||
InstallDirRegKey HKLM "Software\Subsonic" "Install_Dir" |
||||
|
||||
#-------------------------------- |
||||
#Interface Configuration |
||||
|
||||
!define MUI_HEADERIMAGE |
||||
!define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Header\orange.bmp" |
||||
!define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\Getting Started.html" |
||||
!define MUI_FINISHPAGE_SHOWREADME_TEXT "View Getting Started document" |
||||
|
||||
#-------------------------------- |
||||
# Pages |
||||
|
||||
# This page checks for JRE |
||||
Page custom CheckInstalledJRE |
||||
|
||||
!insertmacro MUI_PAGE_WELCOME |
||||
!insertmacro MUI_PAGE_DIRECTORY |
||||
!insertmacro MUI_PAGE_INSTFILES |
||||
!insertmacro MUI_PAGE_FINISH |
||||
|
||||
!insertmacro MUI_UNPAGE_WELCOME |
||||
!insertmacro MUI_UNPAGE_CONFIRM |
||||
!insertmacro MUI_UNPAGE_INSTFILES |
||||
|
||||
# Languages |
||||
!insertmacro MUI_LANGUAGE "English" |
||||
|
||||
Section "Subsonic" |
||||
|
||||
SectionIn RO |
||||
|
||||
# Install for all users |
||||
SetShellVarContext "all" |
||||
|
||||
# Take backup of existing subsonic-service.exe.vmoptions |
||||
CopyFiles /SILENT $INSTDIR\subsonic-service.exe.vmoptions $TEMP\subsonic-service.exe.vmoptions |
||||
|
||||
# Silently uninstall existing version. |
||||
ExecWait '"$INSTDIR\uninstall.exe" /S _?=$INSTDIR' |
||||
|
||||
# Remove previous Jetty temp directory. |
||||
RMDir /r "c:\subsonic\jetty" |
||||
|
||||
# Backup database. |
||||
RMDir /r "c:\subsonic\db.backup" |
||||
CreateDirectory "c:\subsonic\db.backup" |
||||
CopyFiles /SILENT "c:\subsonic\db\*" "c:\subsonic\db.backup" |
||||
|
||||
# Set output path to the installation directory. |
||||
SetOutPath $INSTDIR |
||||
|
||||
# Write files. |
||||
File ..\..\..\target\subsonic-agent.exe |
||||
File ..\..\..\target\subsonic-agent.exe.vmoptions |
||||
File ..\..\..\target\subsonic-agent-elevated.exe |
||||
File ..\..\..\target\subsonic-agent-elevated.exe.vmoptions |
||||
File ..\..\..\target\subsonic-service.exe |
||||
File ..\..\..\target\subsonic-service.exe.vmoptions |
||||
File ..\..\..\..\subsonic-booter\target\subsonic-booter-jar-with-dependencies.jar |
||||
File ..\..\..\..\subsonic-main\README.TXT |
||||
File ..\..\..\..\subsonic-main\LICENSE.TXT |
||||
File "..\..\..\..\subsonic-main\Getting Started.html" |
||||
File ..\..\..\..\subsonic-main\target\subsonic.war |
||||
File ..\..\..\..\subsonic-main\target\classes\version.txt |
||||
File ..\..\..\..\subsonic-main\target\classes\build_number.txt |
||||
|
||||
# Write the installation path into the registry |
||||
WriteRegStr HKLM SOFTWARE\Subsonic "Install_Dir" "$INSTDIR" |
||||
|
||||
# Write the uninstall keys for Windows |
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Subsonic" "DisplayName" "Subsonic" |
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Subsonic" "UninstallString" '"$INSTDIR\uninstall.exe"' |
||||
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Subsonic" "NoModify" 1 |
||||
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Subsonic" "NoRepair" 1 |
||||
WriteUninstaller "uninstall.exe" |
||||
|
||||
# Restore subsonic-service.exe.vmoptions |
||||
CopyFiles /SILENT $TEMP\subsonic-service.exe.vmoptions $INSTDIR\subsonic-service.exe.vmoptions |
||||
Delete $TEMP\subsonic-service.exe.vmoptions |
||||
|
||||
# Write transcoding pack files. |
||||
SetOutPath "c:\subsonic\transcode" |
||||
File ..\..\..\..\subsonic-transcode\windows\*.* |
||||
|
||||
# Add Windows Firewall exception. |
||||
# (Requires NSIS plugin found on http://nsis.sourceforge.net/NSIS_Simple_Firewall_Plugin to be installed |
||||
# as NSIS_HOME/Plugins/SimpleFC.dll) |
||||
|
||||
SimpleFC::AdvAddRule "Subsonic Service (TCP)" "" "6" "1" "1" "7" "1" "$INSTDIR\subsonic-service.exe" "" "" "Subsonic" "" "" "" "" |
||||
SimpleFC::AdvAddRule "Subsonic Service (UDP)" "" "17" "1" "1" "7" "1" "$INSTDIR\subsonic-service.exe" "" "" "Subsonic" "" "" "" "" |
||||
SimpleFC::AdvAddRule "Subsonic Agent (TCP)" "" "6" "1" "1" "7" "1" "$INSTDIR\subsonic-agent.exe" "" "" "Subsonic" "" "" "" "" |
||||
SimpleFC::AdvAddRule "Subsonic Agent (UDP)" "" "17" "1" "1" "7" "1" "$INSTDIR\subsonic-agent.exe" "" "" "Subsonic" "" "" "" "" |
||||
SimpleFC::AdvAddRule "Subsonic Agent Elevated (TCP)" "" "6" "1" "1" "7" "1" "$INSTDIR\subsonic-agent-elevated.exe" "" "" "Subsonic" "" "" "" "" |
||||
SimpleFC::AdvAddRule "Subsonic Agent Elevated (UDP)" "" "17" "1" "1" "7" "1" "$INSTDIR\subsonic-agent-elevated.exe" "" "" "Subsonic" "" "" "" "" |
||||
|
||||
# Install and start service. |
||||
ExecWait '"$INSTDIR\subsonic-service.exe" -install' |
||||
ExecWait '"$INSTDIR\subsonic-service.exe" -start' |
||||
|
||||
# Start agent. |
||||
Exec '"$INSTDIR\subsonic-agent-elevated.exe" -balloon' |
||||
|
||||
SectionEnd |
||||
|
||||
|
||||
Section "Start Menu Shortcuts" |
||||
|
||||
CreateDirectory "$SMPROGRAMS\Subsonic" |
||||
CreateShortCut "$SMPROGRAMS\Subsonic\Open Subsonic.lnk" "$INSTDIR\subsonic.url" "" "$INSTDIR\subsonic-agent.exe" 0 |
||||
CreateShortCut "$SMPROGRAMS\Subsonic\Subsonic Tray Icon.lnk" "$INSTDIR\subsonic-agent.exe" "-balloon" "$INSTDIR\subsonic-agent.exe" 0 |
||||
CreateShortCut "$SMPROGRAMS\Subsonic\Start Subsonic Service.lnk" "$INSTDIR\subsonic-service.exe" "-start" "$INSTDIR\subsonic-service.exe" 0 |
||||
CreateShortCut "$SMPROGRAMS\Subsonic\Stop Subsonic Service.lnk" "$INSTDIR\subsonic-service.exe" "-stop" "$INSTDIR\subsonic-service.exe" 0 |
||||
CreateShortCut "$SMPROGRAMS\Subsonic\Uninstall Subsonic.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0 |
||||
CreateShortCut "$SMPROGRAMS\Subsonic\Getting Started.lnk" "$INSTDIR\Getting Started.html" "" "$INSTDIR\Getting Started.html" 0 |
||||
|
||||
CreateShortCut "$SMSTARTUP\Subsonic.lnk" "$INSTDIR\subsonic-agent.exe" "" "$INSTDIR\subsonic-agent.exe" 0 |
||||
|
||||
SectionEnd |
||||
|
||||
|
||||
# Uninstaller |
||||
|
||||
Section "Uninstall" |
||||
|
||||
# Uninstall for all users |
||||
SetShellVarContext "all" |
||||
|
||||
# Stop and uninstall service if present. |
||||
ExecWait '"$INSTDIR\subsonic-service.exe" -stop' |
||||
ExecWait '"$INSTDIR\subsonic-service.exe" -uninstall' |
||||
|
||||
# Stop agent by killing it. |
||||
# (Requires NSIS plugin found on http://nsis.sourceforge.net/Processes_plug-in to be installed |
||||
# as NSIS_HOME/Plugins/Processes.dll) |
||||
Processes::KillProcess "subsonic-agent" |
||||
Processes::KillProcess "subsonic-agent-elevated" |
||||
Processes::KillProcess "ffmpeg" |
||||
|
||||
# Remove registry keys |
||||
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Subsonic" |
||||
DeleteRegKey HKLM SOFTWARE\Subsonic |
||||
|
||||
# Remove files. |
||||
Delete "$SMSTARTUP\Subsonic.lnk" |
||||
RMDir /r "$SMPROGRAMS\Subsonic" |
||||
Delete "$INSTDIR\build_number.txt" |
||||
Delete "$INSTDIR\elevate.exe" |
||||
Delete "$INSTDIR\Getting Started.html" |
||||
Delete "$INSTDIR\LICENSE.TXT" |
||||
Delete "$INSTDIR\README.TXT" |
||||
Delete "$INSTDIR\subsonic.url" |
||||
Delete "$INSTDIR\subsonic.war" |
||||
Delete "$INSTDIR\subsonic-agent.exe" |
||||
Delete "$INSTDIR\subsonic-agent.exe.vmoptions" |
||||
Delete "$INSTDIR\subsonic-agent-elevated.exe" |
||||
Delete "$INSTDIR\subsonic-agent-elevated.exe.vmoptions" |
||||
Delete "$INSTDIR\subsonic-booter-jar-with-dependencies.jar" |
||||
Delete "$INSTDIR\subsonic-service.exe" |
||||
Delete "$INSTDIR\subsonic-service.exe.vmoptions" |
||||
Delete "$INSTDIR\uninstall.exe" |
||||
Delete "$INSTDIR\version.txt" |
||||
RMDir /r "$INSTDIR\log" |
||||
RMDir "$INSTDIR" |
||||
|
||||
# Remove Windows Firewall exception. |
||||
# (Requires NSIS plugin found on http://nsis.sourceforge.net/NSIS_Simple_Firewall_Plugin to be installed |
||||
# as NSIS_HOME/Plugins/SimpleFC.dll) |
||||
SimpleFC::AdvRemoveRule "Subsonic Service (TCP)" |
||||
SimpleFC::AdvRemoveRule "Subsonic Service (UDP)" |
||||
SimpleFC::AdvRemoveRule "Subsonic Agent (TCP)" |
||||
SimpleFC::AdvRemoveRule "Subsonic Agent (UDP)" |
||||
SimpleFC::AdvRemoveRule "Subsonic Agent Elevated (TCP)" |
||||
SimpleFC::AdvRemoveRule "Subsonic Agent Elevated (UDP)" |
||||
|
||||
SectionEnd |
||||
|
||||
|
||||
Function CheckInstalledJRE |
||||
# Read the value from the registry into the $0 register |
||||
ReadRegStr $0 HKLM "SOFTWARE\JavaSoft\Java Runtime Environment" CurrentVersion |
||||
|
||||
# Check JRE version. At least 1.6 is required. |
||||
# $1=0 Versions are equal |
||||
# $1=1 Installed version is newer |
||||
# $1=2 Installed version is older (or non-existent) |
||||
${VersionCompare} $0 "1.6" $1 |
||||
IntCmp $1 2 InstallJRE 0 0 |
||||
Return |
||||
|
||||
InstallJRE: |
||||
# Launch Java web installer. |
||||
MessageBox MB_OK "Java was not found and will now be installed." |
||||
File /oname=$TEMP\jre-setup.exe jre-8u31-windows-i586-iftw.exe |
||||
ExecWait '"$TEMP\jre-setup.exe"' $0 |
||||
Delete "$TEMP\jre-setup.exe" |
||||
|
||||
FunctionEnd |
@ -0,0 +1,10 @@ |
||||
<html> |
||||
|
||||
<head> |
||||
<meta http-equiv="refresh" content="0;URL=http://subsonic.org/pages/getting-started.jsp"> |
||||
</head> |
||||
|
||||
<body> |
||||
</body> |
||||
|
||||
</html> |
@ -0,0 +1,674 @@ |
||||
GNU GENERAL PUBLIC LICENSE |
||||
Version 3, 29 June 2007 |
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> |
||||
Everyone is permitted to copy and distribute verbatim copies |
||||
of this license document, but changing it is not allowed. |
||||
|
||||
Preamble |
||||
|
||||
The GNU General Public License is a free, copyleft license for |
||||
software and other kinds of works. |
||||
|
||||
The licenses for most software and other practical works are designed |
||||
to take away your freedom to share and change the works. By contrast, |
||||
the GNU General Public License is intended to guarantee your freedom to |
||||
share and change all versions of a program--to make sure it remains free |
||||
software for all its users. We, the Free Software Foundation, use the |
||||
GNU General Public License for most of our software; it applies also to |
||||
any other work released this way by its authors. You can apply it to |
||||
your programs, too. |
||||
|
||||
When we speak of free software, we are referring to freedom, not |
||||
price. Our General Public Licenses are designed to make sure that you |
||||
have the freedom to distribute copies of free software (and charge for |
||||
them if you wish), that you receive source code or can get it if you |
||||
want it, that you can change the software or use pieces of it in new |
||||
free programs, and that you know you can do these things. |
||||
|
||||
To protect your rights, we need to prevent others from denying you |
||||
these rights or asking you to surrender the rights. Therefore, you have |
||||
certain responsibilities if you distribute copies of the software, or if |
||||
you modify it: responsibilities to respect the freedom of others. |
||||
|
||||
For example, if you distribute copies of such a program, whether |
||||
gratis or for a fee, you must pass on to the recipients the same |
||||
freedoms that you received. You must make sure that they, too, receive |
||||
or can get the source code. And you must show them these terms so they |
||||
know their rights. |
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps: |
||||
(1) assert copyright on the software, and (2) offer you this License |
||||
giving you legal permission to copy, distribute and/or modify it. |
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains |
||||
that there is no warranty for this free software. For both users' and |
||||
authors' sake, the GPL requires that modified versions be marked as |
||||
changed, so that their problems will not be attributed erroneously to |
||||
authors of previous versions. |
||||
|
||||
Some devices are designed to deny users access to install or run |
||||
modified versions of the software inside them, although the manufacturer |
||||
can do so. This is fundamentally incompatible with the aim of |
||||
protecting users' freedom to change the software. The systematic |
||||
pattern of such abuse occurs in the area of products for individuals to |
||||
use, which is precisely where it is most unacceptable. Therefore, we |
||||
have designed this version of the GPL to prohibit the practice for those |
||||
products. If such problems arise substantially in other domains, we |
||||
stand ready to extend this provision to those domains in future versions |
||||
of the GPL, as needed to protect the freedom of users. |
||||
|
||||
Finally, every program is threatened constantly by software patents. |
||||
States should not allow patents to restrict development and use of |
||||
software on general-purpose computers, but in those that do, we wish to |
||||
avoid the special danger that patents applied to a free program could |
||||
make it effectively proprietary. To prevent this, the GPL assures that |
||||
patents cannot be used to render the program non-free. |
||||
|
||||
The precise terms and conditions for copying, distribution and |
||||
modification follow. |
||||
|
||||
TERMS AND CONDITIONS |
||||
|
||||
0. Definitions. |
||||
|
||||
"This License" refers to version 3 of the GNU General Public License. |
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of |
||||
works, such as semiconductor masks. |
||||
|
||||
"The Program" refers to any copyrightable work licensed under this |
||||
License. Each licensee is addressed as "you". "Licensees" and |
||||
"recipients" may be individuals or organizations. |
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work |
||||
in a fashion requiring copyright permission, other than the making of an |
||||
exact copy. The resulting work is called a "modified version" of the |
||||
earlier work or a work "based on" the earlier work. |
||||
|
||||
A "covered work" means either the unmodified Program or a work based |
||||
on the Program. |
||||
|
||||
To "propagate" a work means to do anything with it that, without |
||||
permission, would make you directly or secondarily liable for |
||||
infringement under applicable copyright law, except executing it on a |
||||
computer or modifying a private copy. Propagation includes copying, |
||||
distribution (with or without modification), making available to the |
||||
public, and in some countries other activities as well. |
||||
|
||||
To "convey" a work means any kind of propagation that enables other |
||||
parties to make or receive copies. Mere interaction with a user through |
||||
a computer network, with no transfer of a copy, is not conveying. |
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices" |
||||
to the extent that it includes a convenient and prominently visible |
||||
feature that (1) displays an appropriate copyright notice, and (2) |
||||
tells the user that there is no warranty for the work (except to the |
||||
extent that warranties are provided), that licensees may convey the |
||||
work under this License, and how to view a copy of this License. If |
||||
the interface presents a list of user commands or options, such as a |
||||
menu, a prominent item in the list meets this criterion. |
||||
|
||||
1. Source Code. |
||||
|
||||
The "source code" for a work means the preferred form of the work |
||||
for making modifications to it. "Object code" means any non-source |
||||
form of a work. |
||||
|
||||
A "Standard Interface" means an interface that either is an official |
||||
standard defined by a recognized standards body, or, in the case of |
||||
interfaces specified for a particular programming language, one that |
||||
is widely used among developers working in that language. |
||||
|
||||
The "System Libraries" of an executable work include anything, other |
||||
than the work as a whole, that (a) is included in the normal form of |
||||
packaging a Major Component, but which is not part of that Major |
||||
Component, and (b) serves only to enable use of the work with that |
||||
Major Component, or to implement a Standard Interface for which an |
||||
implementation is available to the public in source code form. A |
||||
"Major Component", in this context, means a major essential component |
||||
(kernel, window system, and so on) of the specific operating system |
||||
(if any) on which the executable work runs, or a compiler used to |
||||
produce the work, or an object code interpreter used to run it. |
||||
|
||||
The "Corresponding Source" for a work in object code form means all |
||||
the source code needed to generate, install, and (for an executable |
||||
work) run the object code and to modify the work, including scripts to |
||||
control those activities. However, it does not include the work's |
||||
System Libraries, or general-purpose tools or generally available free |
||||
programs which are used unmodified in performing those activities but |
||||
which are not part of the work. For example, Corresponding Source |
||||
includes interface definition files associated with source files for |
||||
the work, and the source code for shared libraries and dynamically |
||||
linked subprograms that the work is specifically designed to require, |
||||
such as by intimate data communication or control flow between those |
||||
subprograms and other parts of the work. |
||||
|
||||
The Corresponding Source need not include anything that users |
||||
can regenerate automatically from other parts of the Corresponding |
||||
Source. |
||||
|
||||
The Corresponding Source for a work in source code form is that |
||||
same work. |
||||
|
||||
2. Basic Permissions. |
||||
|
||||
All rights granted under this License are granted for the term of |
||||
copyright on the Program, and are irrevocable provided the stated |
||||
conditions are met. This License explicitly affirms your unlimited |
||||
permission to run the unmodified Program. The output from running a |
||||
covered work is covered by this License only if the output, given its |
||||
content, constitutes a covered work. This License acknowledges your |
||||
rights of fair use or other equivalent, as provided by copyright law. |
||||
|
||||
You may make, run and propagate covered works that you do not |
||||
convey, without conditions so long as your license otherwise remains |
||||
in force. You may convey covered works to others for the sole purpose |
||||
of having them make modifications exclusively for you, or provide you |
||||
with facilities for running those works, provided that you comply with |
||||
the terms of this License in conveying all material for which you do |
||||
not control copyright. Those thus making or running the covered works |
||||
for you must do so exclusively on your behalf, under your direction |
||||
and control, on terms that prohibit them from making any copies of |
||||
your copyrighted material outside their relationship with you. |
||||
|
||||
Conveying under any other circumstances is permitted solely under |
||||
the conditions stated below. Sublicensing is not allowed; section 10 |
||||
makes it unnecessary. |
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law. |
||||
|
||||
No covered work shall be deemed part of an effective technological |
||||
measure under any applicable law fulfilling obligations under article |
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or |
||||
similar laws prohibiting or restricting circumvention of such |
||||
measures. |
||||
|
||||
When you convey a covered work, you waive any legal power to forbid |
||||
circumvention of technological measures to the extent such circumvention |
||||
is effected by exercising rights under this License with respect to |
||||
the covered work, and you disclaim any intention to limit operation or |
||||
modification of the work as a means of enforcing, against the work's |
||||
users, your or third parties' legal rights to forbid circumvention of |
||||
technological measures. |
||||
|
||||
4. Conveying Verbatim Copies. |
||||
|
||||
You may convey verbatim copies of the Program's source code as you |
||||
receive it, in any medium, provided that you conspicuously and |
||||
appropriately publish on each copy an appropriate copyright notice; |
||||
keep intact all notices stating that this License and any |
||||
non-permissive terms added in accord with section 7 apply to the code; |
||||
keep intact all notices of the absence of any warranty; and give all |
||||
recipients a copy of this License along with the Program. |
||||
|
||||
You may charge any price or no price for each copy that you convey, |
||||
and you may offer support or warranty protection for a fee. |
||||
|
||||
5. Conveying Modified Source Versions. |
||||
|
||||
You may convey a work based on the Program, or the modifications to |
||||
produce it from the Program, in the form of source code under the |
||||
terms of section 4, provided that you also meet all of these conditions: |
||||
|
||||
a) The work must carry prominent notices stating that you modified |
||||
it, and giving a relevant date. |
||||
|
||||
b) The work must carry prominent notices stating that it is |
||||
released under this License and any conditions added under section |
||||
7. This requirement modifies the requirement in section 4 to |
||||
"keep intact all notices". |
||||
|
||||
c) You must license the entire work, as a whole, under this |
||||
License to anyone who comes into possession of a copy. This |
||||
License will therefore apply, along with any applicable section 7 |
||||
additional terms, to the whole of the work, and all its parts, |
||||
regardless of how they are packaged. This License gives no |
||||
permission to license the work in any other way, but it does not |
||||
invalidate such permission if you have separately received it. |
||||
|
||||
d) If the work has interactive user interfaces, each must display |
||||
Appropriate Legal Notices; however, if the Program has interactive |
||||
interfaces that do not display Appropriate Legal Notices, your |
||||
work need not make them do so. |
||||
|
||||
A compilation of a covered work with other separate and independent |
||||
works, which are not by their nature extensions of the covered work, |
||||
and which are not combined with it such as to form a larger program, |
||||
in or on a volume of a storage or distribution medium, is called an |
||||
"aggregate" if the compilation and its resulting copyright are not |
||||
used to limit the access or legal rights of the compilation's users |
||||
beyond what the individual works permit. Inclusion of a covered work |
||||
in an aggregate does not cause this License to apply to the other |
||||
parts of the aggregate. |
||||
|
||||
6. Conveying Non-Source Forms. |
||||
|
||||
You may convey a covered work in object code form under the terms |
||||
of sections 4 and 5, provided that you also convey the |
||||
machine-readable Corresponding Source under the terms of this License, |
||||
in one of these ways: |
||||
|
||||
a) Convey the object code in, or embodied in, a physical product |
||||
(including a physical distribution medium), accompanied by the |
||||
Corresponding Source fixed on a durable physical medium |
||||
customarily used for software interchange. |
||||
|
||||
b) Convey the object code in, or embodied in, a physical product |
||||
(including a physical distribution medium), accompanied by a |
||||
written offer, valid for at least three years and valid for as |
||||
long as you offer spare parts or customer support for that product |
||||
model, to give anyone who possesses the object code either (1) a |
||||
copy of the Corresponding Source for all the software in the |
||||
product that is covered by this License, on a durable physical |
||||
medium customarily used for software interchange, for a price no |
||||
more than your reasonable cost of physically performing this |
||||
conveying of source, or (2) access to copy the |
||||
Corresponding Source from a network server at no charge. |
||||
|
||||
c) Convey individual copies of the object code with a copy of the |
||||
written offer to provide the Corresponding Source. This |
||||
alternative is allowed only occasionally and noncommercially, and |
||||
only if you received the object code with such an offer, in accord |
||||
with subsection 6b. |
||||
|
||||
d) Convey the object code by offering access from a designated |
||||
place (gratis or for a charge), and offer equivalent access to the |
||||
Corresponding Source in the same way through the same place at no |
||||
further charge. You need not require recipients to copy the |
||||
Corresponding Source along with the object code. If the place to |
||||
copy the object code is a network server, the Corresponding Source |
||||
may be on a different server (operated by you or a third party) |
||||
that supports equivalent copying facilities, provided you maintain |
||||
clear directions next to the object code saying where to find the |
||||
Corresponding Source. Regardless of what server hosts the |
||||
Corresponding Source, you remain obligated to ensure that it is |
||||
available for as long as needed to satisfy these requirements. |
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided |
||||
you inform other peers where the object code and Corresponding |
||||
Source of the work are being offered to the general public at no |
||||
charge under subsection 6d. |
||||
|
||||
A separable portion of the object code, whose source code is excluded |
||||
from the Corresponding Source as a System Library, need not be |
||||
included in conveying the object code work. |
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any |
||||
tangible personal property which is normally used for personal, family, |
||||
or household purposes, or (2) anything designed or sold for incorporation |
||||
into a dwelling. In determining whether a product is a consumer product, |
||||
doubtful cases shall be resolved in favor of coverage. For a particular |
||||
product received by a particular user, "normally used" refers to a |
||||
typical or common use of that class of product, regardless of the status |
||||
of the particular user or of the way in which the particular user |
||||
actually uses, or expects or is expected to use, the product. A product |
||||
is a consumer product regardless of whether the product has substantial |
||||
commercial, industrial or non-consumer uses, unless such uses represent |
||||
the only significant mode of use of the product. |
||||
|
||||
"Installation Information" for a User Product means any methods, |
||||
procedures, authorization keys, or other information required to install |
||||
and execute modified versions of a covered work in that User Product from |
||||
a modified version of its Corresponding Source. The information must |
||||
suffice to ensure that the continued functioning of the modified object |
||||
code is in no case prevented or interfered with solely because |
||||
modification has been made. |
||||
|
||||
If you convey an object code work under this section in, or with, or |
||||
specifically for use in, a User Product, and the conveying occurs as |
||||
part of a transaction in which the right of possession and use of the |
||||
User Product is transferred to the recipient in perpetuity or for a |
||||
fixed term (regardless of how the transaction is characterized), the |
||||
Corresponding Source conveyed under this section must be accompanied |
||||
by the Installation Information. But this requirement does not apply |
||||
if neither you nor any third party retains the ability to install |
||||
modified object code on the User Product (for example, the work has |
||||
been installed in ROM). |
||||
|
||||
The requirement to provide Installation Information does not include a |
||||
requirement to continue to provide support service, warranty, or updates |
||||
for a work that has been modified or installed by the recipient, or for |
||||
the User Product in which it has been modified or installed. Access to a |
||||
network may be denied when the modification itself materially and |
||||
adversely affects the operation of the network or violates the rules and |
||||
protocols for communication across the network. |
||||
|
||||
Corresponding Source conveyed, and Installation Information provided, |
||||
in accord with this section must be in a format that is publicly |
||||
documented (and with an implementation available to the public in |
||||
source code form), and must require no special password or key for |
||||
unpacking, reading or copying. |
||||
|
||||
7. Additional Terms. |
||||
|
||||
"Additional permissions" are terms that supplement the terms of this |
||||
License by making exceptions from one or more of its conditions. |
||||
Additional permissions that are applicable to the entire Program shall |
||||
be treated as though they were included in this License, to the extent |
||||
that they are valid under applicable law. If additional permissions |
||||
apply only to part of the Program, that part may be used separately |
||||
under those permissions, but the entire Program remains governed by |
||||
this License without regard to the additional permissions. |
||||
|
||||
When you convey a copy of a covered work, you may at your option |
||||
remove any additional permissions from that copy, or from any part of |
||||
it. (Additional permissions may be written to require their own |
||||
removal in certain cases when you modify the work.) You may place |
||||
additional permissions on material, added by you to a covered work, |
||||
for which you have or can give appropriate copyright permission. |
||||
|
||||
Notwithstanding any other provision of this License, for material you |
||||
add to a covered work, you may (if authorized by the copyright holders of |
||||
that material) supplement the terms of this License with terms: |
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the |
||||
terms of sections 15 and 16 of this License; or |
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or |
||||
author attributions in that material or in the Appropriate Legal |
||||
Notices displayed by works containing it; or |
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or |
||||
requiring that modified versions of such material be marked in |
||||
reasonable ways as different from the original version; or |
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or |
||||
authors of the material; or |
||||
|
||||
e) Declining to grant rights under trademark law for use of some |
||||
trade names, trademarks, or service marks; or |
||||
|
||||
f) Requiring indemnification of licensors and authors of that |
||||
material by anyone who conveys the material (or modified versions of |
||||
it) with contractual assumptions of liability to the recipient, for |
||||
any liability that these contractual assumptions directly impose on |
||||
those licensors and authors. |
||||
|
||||
All other non-permissive additional terms are considered "further |
||||
restrictions" within the meaning of section 10. If the Program as you |
||||
received it, or any part of it, contains a notice stating that it is |
||||
governed by this License along with a term that is a further |
||||
restriction, you may remove that term. If a license document contains |
||||
a further restriction but permits relicensing or conveying under this |
||||
License, you may add to a covered work material governed by the terms |
||||
of that license document, provided that the further restriction does |
||||
not survive such relicensing or conveying. |
||||
|
||||
If you add terms to a covered work in accord with this section, you |
||||
must place, in the relevant source files, a statement of the |
||||
additional terms that apply to those files, or a notice indicating |
||||
where to find the applicable terms. |
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the |
||||
form of a separately written license, or stated as exceptions; |
||||
the above requirements apply either way. |
||||
|
||||
8. Termination. |
||||
|
||||
You may not propagate or modify a covered work except as expressly |
||||
provided under this License. Any attempt otherwise to propagate or |
||||
modify it is void, and will automatically terminate your rights under |
||||
this License (including any patent licenses granted under the third |
||||
paragraph of section 11). |
||||
|
||||
However, if you cease all violation of this License, then your |
||||
license from a particular copyright holder is reinstated (a) |
||||
provisionally, unless and until the copyright holder explicitly and |
||||
finally terminates your license, and (b) permanently, if the copyright |
||||
holder fails to notify you of the violation by some reasonable means |
||||
prior to 60 days after the cessation. |
||||
|
||||
Moreover, your license from a particular copyright holder is |
||||
reinstated permanently if the copyright holder notifies you of the |
||||
violation by some reasonable means, this is the first time you have |
||||
received notice of violation of this License (for any work) from that |
||||
copyright holder, and you cure the violation prior to 30 days after |
||||
your receipt of the notice. |
||||
|
||||
Termination of your rights under this section does not terminate the |
||||
licenses of parties who have received copies or rights from you under |
||||
this License. If your rights have been terminated and not permanently |
||||
reinstated, you do not qualify to receive new licenses for the same |
||||
material under section 10. |
||||
|
||||
9. Acceptance Not Required for Having Copies. |
||||
|
||||
You are not required to accept this License in order to receive or |
||||
run a copy of the Program. Ancillary propagation of a covered work |
||||
occurring solely as a consequence of using peer-to-peer transmission |
||||
to receive a copy likewise does not require acceptance. However, |
||||
nothing other than this License grants you permission to propagate or |
||||
modify any covered work. These actions infringe copyright if you do |
||||
not accept this License. Therefore, by modifying or propagating a |
||||
covered work, you indicate your acceptance of this License to do so. |
||||
|
||||
10. Automatic Licensing of Downstream Recipients. |
||||
|
||||
Each time you convey a covered work, the recipient automatically |
||||
receives a license from the original licensors, to run, modify and |
||||
propagate that work, subject to this License. You are not responsible |
||||
for enforcing compliance by third parties with this License. |
||||
|
||||
An "entity transaction" is a transaction transferring control of an |
||||
organization, or substantially all assets of one, or subdividing an |
||||
organization, or merging organizations. If propagation of a covered |
||||
work results from an entity transaction, each party to that |
||||
transaction who receives a copy of the work also receives whatever |
||||
licenses to the work the party's predecessor in interest had or could |
||||
give under the previous paragraph, plus a right to possession of the |
||||
Corresponding Source of the work from the predecessor in interest, if |
||||
the predecessor has it or can get it with reasonable efforts. |
||||
|
||||
You may not impose any further restrictions on the exercise of the |
||||
rights granted or affirmed under this License. For example, you may |
||||
not impose a license fee, royalty, or other charge for exercise of |
||||
rights granted under this License, and you may not initiate litigation |
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that |
||||
any patent claim is infringed by making, using, selling, offering for |
||||
sale, or importing the Program or any portion of it. |
||||
|
||||
11. Patents. |
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this |
||||
License of the Program or a work on which the Program is based. The |
||||
work thus licensed is called the contributor's "contributor version". |
||||
|
||||
A contributor's "essential patent claims" are all patent claims |
||||
owned or controlled by the contributor, whether already acquired or |
||||
hereafter acquired, that would be infringed by some manner, permitted |
||||
by this License, of making, using, or selling its contributor version, |
||||
but do not include claims that would be infringed only as a |
||||
consequence of further modification of the contributor version. For |
||||
purposes of this definition, "control" includes the right to grant |
||||
patent sublicenses in a manner consistent with the requirements of |
||||
this License. |
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free |
||||
patent license under the contributor's essential patent claims, to |
||||
make, use, sell, offer for sale, import and otherwise run, modify and |
||||
propagate the contents of its contributor version. |
||||
|
||||
In the following three paragraphs, a "patent license" is any express |
||||
agreement or commitment, however denominated, not to enforce a patent |
||||
(such as an express permission to practice a patent or covenant not to |
||||
sue for patent infringement). To "grant" such a patent license to a |
||||
party means to make such an agreement or commitment not to enforce a |
||||
patent against the party. |
||||
|
||||
If you convey a covered work, knowingly relying on a patent license, |
||||
and the Corresponding Source of the work is not available for anyone |
||||
to copy, free of charge and under the terms of this License, through a |
||||
publicly available network server or other readily accessible means, |
||||
then you must either (1) cause the Corresponding Source to be so |
||||
available, or (2) arrange to deprive yourself of the benefit of the |
||||
patent license for this particular work, or (3) arrange, in a manner |
||||
consistent with the requirements of this License, to extend the patent |
||||
license to downstream recipients. "Knowingly relying" means you have |
||||
actual knowledge that, but for the patent license, your conveying the |
||||
covered work in a country, or your recipient's use of the covered work |
||||
in a country, would infringe one or more identifiable patents in that |
||||
country that you have reason to believe are valid. |
||||
|
||||
If, pursuant to or in connection with a single transaction or |
||||
arrangement, you convey, or propagate by procuring conveyance of, a |
||||
covered work, and grant a patent license to some of the parties |
||||
receiving the covered work authorizing them to use, propagate, modify |
||||
or convey a specific copy of the covered work, then the patent license |
||||
you grant is automatically extended to all recipients of the covered |
||||
work and works based on it. |
||||
|
||||
A patent license is "discriminatory" if it does not include within |
||||
the scope of its coverage, prohibits the exercise of, or is |
||||
conditioned on the non-exercise of one or more of the rights that are |
||||
specifically granted under this License. You may not convey a covered |
||||
work if you are a party to an arrangement with a third party that is |
||||
in the business of distributing software, under which you make payment |
||||
to the third party based on the extent of your activity of conveying |
||||
the work, and under which the third party grants, to any of the |
||||
parties who would receive the covered work from you, a discriminatory |
||||
patent license (a) in connection with copies of the covered work |
||||
conveyed by you (or copies made from those copies), or (b) primarily |
||||
for and in connection with specific products or compilations that |
||||
contain the covered work, unless you entered into that arrangement, |
||||
or that patent license was granted, prior to 28 March 2007. |
||||
|
||||
Nothing in this License shall be construed as excluding or limiting |
||||
any implied license or other defenses to infringement that may |
||||
otherwise be available to you under applicable patent law. |
||||
|
||||
12. No Surrender of Others' Freedom. |
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or |
||||
otherwise) that contradict the conditions of this License, they do not |
||||
excuse you from the conditions of this License. If you cannot convey a |
||||
covered work so as to satisfy simultaneously your obligations under this |
||||
License and any other pertinent obligations, then as a consequence you may |
||||
not convey it at all. For example, if you agree to terms that obligate you |
||||
to collect a royalty for further conveying from those to whom you convey |
||||
the Program, the only way you could satisfy both those terms and this |
||||
License would be to refrain entirely from conveying the Program. |
||||
|
||||
13. Use with the GNU Affero General Public License. |
||||
|
||||
Notwithstanding any other provision of this License, you have |
||||
permission to link or combine any covered work with a work licensed |
||||
under version 3 of the GNU Affero General Public License into a single |
||||
combined work, and to convey the resulting work. The terms of this |
||||
License will continue to apply to the part which is the covered work, |
||||
but the special requirements of the GNU Affero General Public License, |
||||
section 13, concerning interaction through a network will apply to the |
||||
combination as such. |
||||
|
||||
14. Revised Versions of this License. |
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of |
||||
the GNU General Public License from time to time. Such new versions will |
||||
be similar in spirit to the present version, but may differ in detail to |
||||
address new problems or concerns. |
||||
|
||||
Each version is given a distinguishing version number. If the |
||||
Program specifies that a certain numbered version of the GNU General |
||||
Public License "or any later version" applies to it, you have the |
||||
option of following the terms and conditions either of that numbered |
||||
version or of any later version published by the Free Software |
||||
Foundation. If the Program does not specify a version number of the |
||||
GNU General Public License, you may choose any version ever published |
||||
by the Free Software Foundation. |
||||
|
||||
If the Program specifies that a proxy can decide which future |
||||
versions of the GNU General Public License can be used, that proxy's |
||||
public statement of acceptance of a version permanently authorizes you |
||||
to choose that version for the Program. |
||||
|
||||
Later license versions may give you additional or different |
||||
permissions. However, no additional obligations are imposed on any |
||||
author or copyright holder as a result of your choosing to follow a |
||||
later version. |
||||
|
||||
15. Disclaimer of Warranty. |
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY |
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT |
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY |
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, |
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM |
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF |
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION. |
||||
|
||||
16. Limitation of Liability. |
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING |
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS |
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY |
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE |
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF |
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD |
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), |
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF |
||||
SUCH DAMAGES. |
||||
|
||||
17. Interpretation of Sections 15 and 16. |
||||
|
||||
If the disclaimer of warranty and limitation of liability provided |
||||
above cannot be given local legal effect according to their terms, |
||||
reviewing courts shall apply local law that most closely approximates |
||||
an absolute waiver of all civil liability in connection with the |
||||
Program, unless a warranty or assumption of liability accompanies a |
||||
copy of the Program in return for a fee. |
||||
|
||||
END OF TERMS AND CONDITIONS |
||||
|
||||
How to Apply These Terms to Your New Programs |
||||
|
||||
If you develop a new program, and you want it to be of the greatest |
||||
possible use to the public, the best way to achieve this is to make it |
||||
free software which everyone can redistribute and change under these terms. |
||||
|
||||
To do so, attach the following notices to the program. It is safest |
||||
to attach them to the start of each source file to most effectively |
||||
state the exclusion of warranty; and each file should have at least |
||||
the "copyright" line and a pointer to where the full notice is found. |
||||
|
||||
<one line to give the program's name and a brief idea of what it does.> |
||||
Copyright (C) <year> <name of author> |
||||
|
||||
This program is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU 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 General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU General Public License |
||||
along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
||||
Also add information on how to contact you by electronic and paper mail. |
||||
|
||||
If the program does terminal interaction, make it output a short |
||||
notice like this when it starts in an interactive mode: |
||||
|
||||
<program> Copyright (C) <year> <name of author> |
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. |
||||
This is free software, and you are welcome to redistribute it |
||||
under certain conditions; type `show c' for details. |
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate |
||||
parts of the General Public License. Of course, your program's commands |
||||
might be different; for a GUI interface, you would use an "about box". |
||||
|
||||
You should also get your employer (if you work as a programmer) or school, |
||||
if any, to sign a "copyright disclaimer" for the program, if necessary. |
||||
For more information on this, and how to apply and follow the GNU GPL, see |
||||
<http://www.gnu.org/licenses/>. |
||||
|
||||
The GNU General Public License does not permit incorporating your program |
||||
into proprietary programs. If your program is a subroutine library, you |
||||
may consider it more useful to permit linking proprietary applications with |
||||
the library. If this is what you want to do, use the GNU Lesser General |
||||
Public License instead of this License. But first, please read |
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>. |
@ -0,0 +1,16 @@ |
||||
|
||||
WELCOME TO SUBSONIC! |
||||
-------------------- |
||||
|
||||
Subsonic is a free, web-based media streamer and jukebox. |
||||
|
||||
More information, including installation instructions, is found at http://subsonic.org/ |
||||
|
||||
Subsonic is free software: you can redistribute it and/or modify it under the terms of the |
||||
GNU General Public License. |
||||
|
||||
Subsonic is developed and maintained by Sindre Mehus (sindre@activeobjects.no). |
||||
|
||||
If you have any questions, comments or suggestions for improvements, please visit the |
||||
Subsonic Forum (http://forum.subsonic.org). |
||||
|
@ -0,0 +1,102 @@ |
||||
|
||||
Dreamplug |
||||
=========== |
||||
The Access Point uap0 is set to 192.168.1.1. If your router already uses this set of IP address, |
||||
you will run into a conflict and the internet connection will go. |
||||
Two things you can do. |
||||
change the default ip address in /root/init_setup.sh |
||||
and you can take down the AP if you are purely not interested in it. |
||||
ifconfig uap0 down |
||||
and comment out the call to the init_setup.sh in /etc/rc.local |
||||
http://www.newit.co.uk/forum/index.php?topic=1078.15 |
||||
http://plugcomputer.org/plugwiki/index.php/New_Plugger_How_To |
||||
sdf |
||||
Login : root |
||||
Password: nosoup4u |
||||
|
||||
type wlan.sh command to switch from WLAN AP to client mode. |
||||
|
||||
|
||||
----- |
||||
|
||||
root@ubuntu:~# apt-get install openjdk-6-jre |
||||
Reading package lists... Done |
||||
Building dependency tree |
||||
Reading state information... Done |
||||
The following extra packages will be installed: |
||||
libgif4 libice6 libpulse0 libsm6 libxi6 libxrender1 libxtst6 |
||||
Suggested packages: |
||||
pulseaudio icedtea6-plugin |
||||
The following NEW packages will be installed: |
||||
libgif4 libice6 libpulse0 libsm6 libxi6 libxrender1 libxtst6 openjdk-6-jre |
||||
0 upgraded, 8 newly installed, 0 to remove and 35 not upgraded. |
||||
Need to get 615kB of archives. |
||||
After this operation, 1978kB of additional disk space will be used. |
||||
Do you want to continue [Y/n]? |
||||
Get:1 http://ports.ubuntu.com jaunty/main libgif4 4.1.6-6 [39.2kB] |
||||
Get:2 http://ports.ubuntu.com jaunty/main libice6 2:1.0.4-1 [44.3kB] |
||||
Get:3 http://ports.ubuntu.com jaunty/main libsm6 2:1.1.0-1 [21.6kB] |
||||
Get:4 http://ports.ubuntu.com jaunty-updates/main libpulse0 1:0.9.14-0ubuntu20.3 [178kB] |
||||
Get:5 http://ports.ubuntu.com jaunty-updates/main libxi6 2:1.2.0-1ubuntu1.1 [26.5kB] |
||||
Get:6 http://ports.ubuntu.com jaunty/main libxrender1 1:0.9.4-2 [28.2kB] |
||||
Get:7 http://ports.ubuntu.com jaunty/main libxtst6 2:1.0.3-1ubuntu2 [12.8kB] |
||||
Get:8 http://ports.ubuntu.com jaunty-updates/main openjdk-6-jre 6b18-1.8.2-4ubuntu1~9.04.1 [264kB] |
||||
Fetched 615kB in 0s (726kB/s) |
||||
Selecting previously deselected package libgif4. |
||||
(Reading database ... 21520 files and directories currently installed.) |
||||
Unpacking libgif4 (from .../libgif4_4.1.6-6_armel.deb) ... |
||||
Selecting previously deselected package libice6. |
||||
Unpacking libice6 (from .../libice6_2%3a1.0.4-1_armel.deb) ... |
||||
Selecting previously deselected package libsm6. |
||||
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-1_armel.deb) ... |
||||
Selecting previously deselected package libpulse0. |
||||
Unpacking libpulse0 (from .../libpulse0_1%3a0.9.14-0ubuntu20.3_armel.deb) ... |
||||
Selecting previously deselected package libxi6. |
||||
Unpacking libxi6 (from .../libxi6_2%3a1.2.0-1ubuntu1.1_armel.deb) ... |
||||
Selecting previously deselected package libxrender1. |
||||
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.4-2_armel.deb) ... |
||||
Selecting previously deselected package libxtst6. |
||||
Unpacking libxtst6 (from .../libxtst6_2%3a1.0.3-1ubuntu2_armel.deb) ... |
||||
Selecting previously deselected package openjdk-6-jre. |
||||
Unpacking openjdk-6-jre (from .../openjdk-6-jre_6b18-1.8.2-4ubuntu1~9.04.1_armel.deb) ... |
||||
Setting up libgif4 (4.1.6-6) ... |
||||
|
||||
Setting up libice6 (2:1.0.4-1) ... |
||||
|
||||
Setting up libsm6 (2:1.1.0-1) ... |
||||
|
||||
Setting up libpulse0 (1:0.9.14-0ubuntu20.3) ... |
||||
|
||||
Setting up libxi6 (2:1.2.0-1ubuntu1.1) ... |
||||
|
||||
Setting up libxrender1 (1:0.9.4-2) ... |
||||
|
||||
Setting up libxtst6 (2:1.0.3-1ubuntu2) ... |
||||
|
||||
Setting up openjdk-6-jre (6b18-1.8.2-4ubuntu1~9.04.1) ... |
||||
|
||||
Processing triggers for libc6 ... |
||||
ldconfig deferred processing now taking place |
||||
root@ubuntu:~# |
||||
|
||||
root@ubuntu:~# java -version |
||||
java version "1.6.0_18" |
||||
OpenJDK Runtime Environment (IcedTea6 1.8.2) (6b18-1.8.2-4ubuntu1~9.04.1) |
||||
OpenJDK Zero VM (build 14.0-b16, mixed mode) |
||||
|
||||
root@ubuntu:/tmp# dpkg -i subsonic-4.4.deb |
||||
Selecting previously deselected package subsonic. |
||||
(Reading database ... 21622 files and directories currently installed.) |
||||
Unpacking subsonic (from subsonic-4.4.deb) ... |
||||
Setting up subsonic (4.4) ... |
||||
Adding system startup for /etc/init.d/subsonic ... |
||||
/etc/rc0.d/K99subsonic -> ../init.d/subsonic |
||||
/etc/rc1.d/K99subsonic -> ../init.d/subsonic |
||||
/etc/rc6.d/K99subsonic -> ../init.d/subsonic |
||||
/etc/rc2.d/S99subsonic -> ../init.d/subsonic |
||||
/etc/rc3.d/S99subsonic -> ../init.d/subsonic |
||||
/etc/rc4.d/S99subsonic -> ../init.d/subsonic |
||||
/etc/rc5.d/S99subsonic -> ../init.d/subsonic |
||||
Started Subsonic [PID 2596, /var/subsonic/subsonic_sh.log] |
||||
|
||||
http://192.168.0.100:4040 |
@ -0,0 +1,412 @@ |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
|
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-main</artifactId> |
||||
<packaging>war</packaging> |
||||
<name>Subsonic Main</name> |
||||
|
||||
<parent> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic</artifactId> |
||||
<version>5.3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
|
||||
<dependency> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-rest-api</artifactId> |
||||
<version>${project.version}</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>net.sourceforge.subsonic</groupId> |
||||
<artifactId>subsonic-sonos-api</artifactId> |
||||
<version>${project.version}</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring</artifactId> |
||||
<version>2.5.6</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-webmvc</artifactId> |
||||
<version>2.5.6</version> |
||||
<exclusions> |
||||
<exclusion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
</exclusion> |
||||
<exclusion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
</exclusion> |
||||
<exclusion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context</artifactId> |
||||
</exclusion> |
||||
<exclusion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context-support</artifactId> |
||||
</exclusion> |
||||
<exclusion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-web</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.acegisecurity</groupId> |
||||
<artifactId>acegi-security</artifactId> |
||||
<version>1.0.5</version> |
||||
<exclusions> |
||||
<exclusion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
</exclusion> |
||||
<exclusion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-remoting</artifactId> |
||||
</exclusion> |
||||
<exclusion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-jdbc</artifactId> |
||||
</exclusion> |
||||
<exclusion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-support</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.apache.lucene</groupId> |
||||
<artifactId>lucene-core</artifactId> |
||||
<version>3.0.3</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>cglib</groupId> |
||||
<artifactId>cglib</artifactId> |
||||
<version>2.1_3</version> |
||||
<scope>runtime</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>commons-fileupload</groupId> |
||||
<artifactId>commons-fileupload</artifactId> |
||||
<version>1.2</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>commons-codec</groupId> |
||||
<artifactId>commons-codec</artifactId> |
||||
<version>1.2</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>commons-io</groupId> |
||||
<artifactId>commons-io</artifactId> |
||||
<version>1.3.1</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>commons-lang</groupId> |
||||
<artifactId>commons-lang</artifactId> |
||||
<version>2.1</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>com.google.guava</groupId> |
||||
<artifactId>guava-base</artifactId> |
||||
<version>r03</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>com.google.guava</groupId> |
||||
<artifactId>guava-collections</artifactId> |
||||
<version>r03</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.apache.httpcomponents</groupId> |
||||
<artifactId>httpcore</artifactId> |
||||
<version>4.2.4</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.apache.httpcomponents</groupId> |
||||
<artifactId>httpclient</artifactId> |
||||
<version>4.2.4</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>hsqldb</groupId> |
||||
<artifactId>hsqldb</artifactId> |
||||
<version>1.8.0.7</version> |
||||
<scope>runtime</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>radeox</groupId> |
||||
<artifactId>radeox</artifactId> |
||||
<version>1.0-b2</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>log4j</groupId> |
||||
<artifactId>log4j</artifactId> |
||||
<version>1.2.16</version> |
||||
<scope>runtime</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.slf4j</groupId> |
||||
<artifactId>slf4j-log4j12</artifactId> |
||||
<version>1.6.1</version> |
||||
<scope>runtime</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.directwebremoting</groupId> |
||||
<artifactId>dwr</artifactId> |
||||
<version>3.0.rc1</version> |
||||
</dependency> |
||||
|
||||
<!--Needed by dwr--> |
||||
<dependency> |
||||
<groupId>com.yahoo.platform.yui</groupId> |
||||
<artifactId>yuicompressor</artifactId> |
||||
<version>2.3.6</version> |
||||
<scope>runtime</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>ant-zip</groupId> |
||||
<artifactId>ant-zip</artifactId> |
||||
<version>1.6.2</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org</groupId> |
||||
<artifactId>jaudiotagger</artifactId> |
||||
<version>2.0.3</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>jfree</groupId> |
||||
<artifactId>jfreechart</artifactId> |
||||
<version>1.0.11</version> |
||||
<exclusions> |
||||
<exclusion> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
</exclusion> |
||||
<exclusion> |
||||
<groupId>gnujaxp</groupId> |
||||
<artifactId>gnujaxp</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>jdom</groupId> |
||||
<artifactId>jdom</artifactId> |
||||
<version>1.0</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>net.sf.ehcache</groupId> |
||||
<artifactId>ehcache-core</artifactId> |
||||
<version>2.5.0</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.eclipse.persistence</groupId> |
||||
<artifactId>org.eclipse.persistence.moxy</artifactId> |
||||
<version>2.5.1</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>servlet-api</artifactId> |
||||
<version>2.4</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>jsp-api</artifactId> |
||||
<version>2.0</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>jstl</artifactId> |
||||
<version>1.1.2</version> |
||||
<scope>runtime</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>taglibs</groupId> |
||||
<artifactId>standard</artifactId> |
||||
<version>1.1.2</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>taglibs</groupId> |
||||
<artifactId>string</artifactId> |
||||
<version>1.1.0</version> |
||||
<scope>runtime</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>com.hoodcomputing</groupId> |
||||
<artifactId>natpmp</artifactId> |
||||
<version>0.1</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.fourthline.cling</groupId> |
||||
<artifactId>cling-core</artifactId> |
||||
<version>2.0.1</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.fourthline.cling</groupId> |
||||
<artifactId>cling-support</artifactId> |
||||
<version>2.0.1</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.seamless</groupId> |
||||
<artifactId>seamless-util</artifactId> |
||||
<version>1.0-alpha2</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>net.tanesha.recaptcha4j</groupId> |
||||
<artifactId>recaptcha4j</artifactId> |
||||
<version>0.0.8</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>de.u-mass</groupId> |
||||
<artifactId>lastfm-java</artifactId> |
||||
<version>0.1.2</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.apache.cxf</groupId> |
||||
<artifactId>cxf-rt-transports-http</artifactId> |
||||
<version>${cxf.version}</version> |
||||
<exclusions> |
||||
<exclusion> |
||||
<groupId> org.springframework</groupId> |
||||
<artifactId>spring-web</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
<scope>runtime</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.apache.cxf</groupId> |
||||
<artifactId>cxf-rt-frontend-jaxws</artifactId> |
||||
<version>${cxf.version}</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.apache.cxf</groupId> |
||||
<artifactId>cxf-rt-bindings-soap</artifactId> |
||||
<version>${cxf.version}</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.apache.cxf</groupId> |
||||
<artifactId>cxf-rt-databinding-jaxb</artifactId> |
||||
<version>${cxf.version}</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.apache.cxf</groupId> |
||||
<artifactId>cxf-api</artifactId> |
||||
<version>${cxf.version}</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.apache.cxf</groupId> |
||||
<artifactId>cxf-common-utilities</artifactId> |
||||
<version>${cxf.version}</version> |
||||
</dependency> |
||||
|
||||
</dependencies> |
||||
|
||||
<profiles> |
||||
<profile> |
||||
<id>full</id> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.codehaus.mojo</groupId> |
||||
<artifactId>buildnumber-maven-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<phase>validate</phase> |
||||
<goals> |
||||
<goal>create</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
<configuration> |
||||
<doCheck>false</doCheck> |
||||
<doUpdate>false</doUpdate> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
</profile> |
||||
</profiles> |
||||
|
||||
<build> |
||||
<finalName>subsonic</finalName> |
||||
<plugins> |
||||
|
||||
<plugin> |
||||
<artifactId>maven-antrun-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<phase>generate-resources</phase> |
||||
<configuration> |
||||
<target> |
||||
<tstamp/> |
||||
<copy file="${basedir}/src/main/resources/net/sourceforge/subsonic/i18n/ResourceBundle_en.properties" |
||||
tofile="${project.build.directory}/classes/net/sourceforge/subsonic/i18n/ResourceBundle.properties"/> |
||||
<echo file="${project.build.directory}/classes/build_number.txt">${buildNumber}</echo> |
||||
<echo file="${project.build.directory}/classes/build_date.txt">${DSTAMP}</echo> |
||||
<echo file="${project.build.directory}/classes/version.txt">${project.version}</echo> |
||||
</target> |
||||
</configuration> |
||||
<goals> |
||||
<goal>run</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
|
||||
</plugins> |
||||
</build> |
||||
</project> |
@ -0,0 +1,246 @@ |
||||
/* |
||||
This file is part of Subsonic. |
||||
|
||||
Subsonic is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
Subsonic 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 General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU General Public License |
||||
along with Subsonic. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Copyright 2009 (C) Sindre Mehus |
||||
*/ |
||||
package net.sourceforge.subsonic; |
||||
|
||||
import net.sourceforge.subsonic.domain.Version; |
||||
import net.sourceforge.subsonic.service.*; |
||||
import net.sourceforge.subsonic.util.*; |
||||
import org.apache.commons.lang.exception.*; |
||||
|
||||
import java.io.*; |
||||
import java.text.*; |
||||
import java.util.*; |
||||
|
||||
/** |
||||
* Logger implementation which logs to SUBSONIC_HOME/subsonic.log. |
||||
* <br/> |
||||
* Note: Third party logging libraries (such as log4j and Commons logging) are intentionally not |
||||
* used. These libraries causes a lot of headache when deploying to some application servers |
||||
* (for instance Jetty and JBoss). |
||||
* |
||||
* @author Sindre Mehus |
||||
* @version $Revision: 1.1 $ $Date: 2005/05/09 19:58:26 $ |
||||
*/ |
||||
public class Logger { |
||||
|
||||
private String category; |
||||
|
||||
private static List<Entry> entries = Collections.synchronizedList(new BoundedList<Entry>(50)); |
||||
private static PrintWriter writer; |
||||
private static Boolean debugEnabled; |
||||
|
||||
/** |
||||
* Creates a logger for the given class. |
||||
* @param clazz The class. |
||||
* @return A logger for the class. |
||||
*/ |
||||
public static Logger getLogger(Class clazz) { |
||||
return new Logger(clazz.getName()); |
||||
} |
||||
|
||||
/** |
||||
* Creates a logger for the given namee. |
||||
* @param name The name. |
||||
* @return A logger for the name. |
||||
*/ |
||||
public static Logger getLogger(String name) { |
||||
return new Logger(name); |
||||
} |
||||
|
||||
/** |
||||
* Returns the last few log entries. |
||||
* @return The last few log entries. |
||||
*/ |
||||
public static Entry[] getLatestLogEntries() { |
||||
return entries.toArray(new Entry[entries.size()]); |
||||
} |
||||
|
||||
private Logger(String name) { |
||||
int lastDot = name.lastIndexOf('.'); |
||||
if (lastDot == -1) { |
||||
category = name; |
||||
} else { |
||||
category = name.substring(lastDot + 1); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* Logs a debug message. |
||||
* @param message The log message. |
||||
*/ |
||||
public void debug(Object message) { |
||||
debug(message, null); |
||||
} |
||||
|
||||
/** |
||||
* Logs a debug message. |
||||
* @param message The message. |
||||
* @param error The optional exception. |
||||
*/ |
||||
public void debug(Object message, Throwable error) { |
||||
if (isDebugEnabled()) { |
||||
add(Level.DEBUG, message, error); |
||||
} |
||||
} |
||||
|
||||
private static boolean isDebugEnabled() { |
||||
if (debugEnabled == null) { |
||||
VersionService versionService = ServiceLocator.getVersionService(); |
||||
if (versionService == null) { |
||||
return true; // versionService not yet available.
|
||||
} |
||||
Version localVersion = versionService.getLocalVersion(); |
||||
debugEnabled = localVersion == null || localVersion.getBeta() != 0; |
||||
} |
||||
return debugEnabled; |
||||
} |
||||
|
||||
/** |
||||
* Logs an info message. |
||||
* @param message The message. |
||||
*/ |
||||
public void info(Object message) { |
||||
info(message, null); |
||||
} |
||||
|
||||
/** |
||||
* Logs an info message. |
||||
* @param message The message. |
||||
* @param error The optional exception. |
||||
*/ |
||||
public void info(Object message, Throwable error) { |
||||
add(Level.INFO, message, error); |
||||
} |
||||
|
||||
/** |
||||
* Logs a warning message. |
||||
* @param message The message. |
||||
*/ |
||||
public void warn(Object message) { |
||||
warn(message, null); |
||||
} |
||||
|
||||
/** |
||||
* Logs a warning message. |
||||
* @param message The message. |
||||
* @param error The optional exception. |
||||
*/ |
||||
public void warn(Object message, Throwable error) { |
||||
add(Level.WARN, message, error); |
||||
} |
||||
|
||||
/** |
||||
* Logs an error message. |
||||
* @param message The message. |
||||
*/ |
||||
public void error(Object message) { |
||||
error(message, null); |
||||
} |
||||
|
||||
/** |
||||
* Logs an error message. |
||||
* @param message The message. |
||||
* @param error The optional exception. |
||||
*/ |
||||
public void error(Object message, Throwable error) { |
||||
add(Level.ERROR, message, error); |
||||
} |
||||
|
||||
private void add(Level level, Object message, Throwable error) { |
||||
Entry entry = new Entry(category, level, message, error); |
||||
try { |
||||
getPrintWriter().println(entry); |
||||
} catch (IOException x) { |
||||
System.err.println("Failed to write to subsonic.log. " + x); |
||||
} |
||||
entries.add(entry); |
||||
} |
||||
|
||||
private static synchronized PrintWriter getPrintWriter() throws IOException { |
||||
if (writer == null) { |
||||
writer = new PrintWriter(new FileWriter(getLogFile(), false), true); |
||||
} |
||||
return writer; |
||||
} |
||||
|
||||
public static File getLogFile() { |
||||
File subsonicHome = SettingsService.getSubsonicHome(); |
||||
return new File(subsonicHome, "subsonic.log"); |
||||
} |
||||
|
||||
/** |
||||
* Log level. |
||||
*/ |
||||
public enum Level { |
||||
DEBUG, INFO, WARN, ERROR |
||||
} |
||||
|
||||
/** |
||||
* Log entry. |
||||
*/ |
||||
public static class Entry { |
||||
private String category; |
||||
private Date date; |
||||
private Level level; |
||||
private Object message; |
||||
private Throwable error; |
||||
private static final DateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss,SSS"); |
||||
|
||||
public Entry(String category, Level level, Object message, Throwable error) { |
||||
this.date = new Date(); |
||||
this.category = category; |
||||
this.level = level; |
||||
this.message = message; |
||||
this.error = error; |
||||
} |
||||
|
||||
public String getCategory() { |
||||
return category; |
||||
} |
||||
|
||||
public Date getDate() { |
||||
return date; |
||||
} |
||||
|
||||
public Level getLevel() { |
||||
return level; |
||||
} |
||||
|
||||
public Object getMessage() { |
||||
return message; |
||||
} |
||||
|
||||
public Throwable getError() { |
||||
return error; |
||||
} |
||||
|
||||
public String toString() { |
||||
StringBuilder builder = new StringBuilder(); |
||||
builder.append('[').append(DATE_FORMAT.format(date)).append("] "); |
||||
builder.append(level).append(' '); |
||||
builder.append(category).append(" - "); |
||||
builder.append(message); |
||||
|
||||
if (error != null) { |
||||
builder.append('\n').append(ExceptionUtils.getFullStackTrace(error)); |
||||
} |
||||
return builder.toString(); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,53 @@ |
||||
/* |
||||
* This file is part of Subsonic. |
||||
* |
||||
* Subsonic is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU General Public License as published by |
||||
* the Free Software Foundation, either version 3 of the License, or |
||||
* (at your option) any later version. |
||||
* |
||||
* Subsonic 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 General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU General Public License |
||||
* along with Subsonic. If not, see <http://www.gnu.org/licenses/>.
|
||||
* |
||||
* Copyright 2014 (C) Sindre Mehus |
||||
*/ |
||||
|
||||
package net.sourceforge.subsonic.ajax; |
||||
|
||||
import java.util.List; |
||||
|
||||
import net.sourceforge.subsonic.domain.ArtistBio; |
||||
|
||||
/** |
||||
* @author Sindre Mehus |
||||
* @version $Id$ |
||||
*/ |
||||
public class ArtistInfo { |
||||
|
||||
private final List<SimilarArtist> similarArtists; |
||||
private final ArtistBio artistBio; |
||||
private final List<TopSong> topSongs; |
||||
|
||||
public ArtistInfo(List<SimilarArtist> similarArtists, ArtistBio artistBio, List<TopSong> topSongs) { |
||||
this.similarArtists = similarArtists; |
||||
this.artistBio = artistBio; |
||||
this.topSongs = topSongs; |
||||
} |
||||
|
||||
public List<SimilarArtist> getSimilarArtists() { |
||||
return similarArtists; |
||||
} |
||||
|
||||
public ArtistBio getArtistBio() { |
||||
return artistBio; |
||||
} |
||||
|
||||
public List<TopSong> getTopSongs() { |
||||
return topSongs; |
||||
} |
||||
} |
@ -0,0 +1,163 @@ |
||||
/* |
||||
This file is part of Subsonic. |
||||
|
||||
Subsonic is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
Subsonic 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 General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU General Public License |
||||
along with Subsonic. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Copyright 2009 (C) Sindre Mehus |
||||
*/ |
||||
package net.sourceforge.subsonic.ajax; |
||||
|
||||
import net.sourceforge.subsonic.Logger; |
||||
import net.sourceforge.subsonic.service.SecurityService; |
||||
import net.sourceforge.subsonic.util.BoundedList; |
||||
import org.apache.commons.lang.StringUtils; |
||||
import org.directwebremoting.WebContext; |
||||
import org.directwebremoting.WebContextFactory; |
||||
|
||||
import javax.servlet.http.HttpServletRequest; |
||||
import java.io.Serializable; |
||||
import java.util.ArrayList; |
||||
import java.util.Date; |
||||
import java.util.Iterator; |
||||
import java.util.LinkedList; |
||||
import java.util.List; |
||||
import java.util.concurrent.Executors; |
||||
import java.util.concurrent.ScheduledExecutorService; |
||||
import java.util.concurrent.TimeUnit; |
||||
|
||||
/** |
||||
* Provides AJAX-enabled services for the chatting. |
||||
* This class is used by the DWR framework (http://getahead.ltd.uk/dwr/).
|
||||
* |
||||
* @author Sindre Mehus |
||||
*/ |
||||
public class ChatService { |
||||
|
||||
private static final Logger LOG = Logger.getLogger(ChatService.class); |
||||
private static final String CACHE_KEY = "1"; |
||||
private static final int MAX_MESSAGES = 10; |
||||
private static final long TTL_MILLIS = 3L * 24L * 60L * 60L * 1000L; // 3 days.
|
||||
|
||||
private final LinkedList<Message> messages = new BoundedList<Message>(MAX_MESSAGES); |
||||
private SecurityService securityService; |
||||
|
||||
private long revision = System.identityHashCode(this); |
||||
|
||||
/** |
||||
* Invoked by Spring. |
||||
*/ |
||||
public void init() { |
||||
// Delete old messages every hour.
|
||||
ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor(); |
||||
Runnable runnable = new Runnable() { |
||||
public void run() { |
||||
removeOldMessages(); |
||||
} |
||||
}; |
||||
executor.scheduleWithFixedDelay(runnable, 0L, 3600L, TimeUnit.SECONDS); |
||||
} |
||||
|
||||
private synchronized void removeOldMessages() { |
||||
long now = System.currentTimeMillis(); |
||||
for (Iterator<Message> iterator = messages.iterator(); iterator.hasNext();) { |
||||
Message message = iterator.next(); |
||||
if (now - message.getDate().getTime() > TTL_MILLIS) { |
||||
iterator.remove(); |
||||
revision++; |
||||
} |
||||
} |
||||
} |
||||
|
||||
public synchronized void addMessage(String message) { |
||||
WebContext webContext = WebContextFactory.get(); |
||||
doAddMessage(message, webContext.getHttpServletRequest()); |
||||
} |
||||
|
||||
public synchronized void doAddMessage(String message, HttpServletRequest request) { |
||||
|
||||
String user = securityService.getCurrentUsername(request); |
||||
message = StringUtils.trimToNull(message); |
||||
if (message != null && user != null) { |
||||
messages.addFirst(new Message(message, user, new Date())); |
||||
revision++; |
||||
} |
||||
} |
||||
|
||||
public synchronized void clearMessages() { |
||||
messages.clear(); |
||||
revision++; |
||||
} |
||||
|
||||
/** |
||||
* Returns all messages, but only if the given revision is different from the |
||||
* current revision. |
||||
*/ |
||||
public synchronized Messages getMessages(long revision) { |
||||
if (this.revision != revision) { |
||||
return new Messages(new ArrayList<Message>(messages), this.revision); |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
public void setSecurityService(SecurityService securityService) { |
||||
this.securityService = securityService; |
||||
} |
||||
|
||||
public static class Messages implements Serializable { |
||||
|
||||
private static final long serialVersionUID = -752602719879818165L; |
||||
private final List<Message> messages; |
||||
private final long revision; |
||||
|
||||
public Messages(List<Message> messages, long revision) { |
||||
this.messages = messages; |
||||
this.revision = revision; |
||||
} |
||||
|
||||
public List<Message> getMessages() { |
||||
return messages; |
||||
} |
||||
|
||||
public long getRevision() { |
||||
return revision; |
||||
} |
||||
} |
||||
|
||||
public static class Message implements Serializable { |
||||
|
||||
private static final long serialVersionUID = -1907101191518133712L; |
||||
private final String content; |
||||
private final String username; |
||||
private final Date date; |
||||
|
||||
public Message(String content, String username, Date date) { |
||||
this.content = content; |
||||
this.username = username; |
||||
this.date = date; |
||||
} |
||||
|
||||
public String getContent() { |
||||
return content; |
||||
} |
||||
|
||||
public String getUsername() { |
||||
return username; |
||||
} |
||||
|
||||
public Date getDate() { |
||||
return date; |
||||
} |
||||
|
||||
} |
||||
} |