001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * If you wish your version of this file to be governed by only the CDDL
025: * or only the GPL Version 2, indicate your decision by adding
026: * "[Contributor] elects to include this software in this distribution
027: * under the [CDDL or GPL Version 2] license." If you do not indicate a
028: * single choice of license, a recipient has the option to distribute
029: * your version of this file under either the CDDL, the GPL Version 2 or
030: * to extend the choice of license to its licensees as provided above.
031: * However, if you add GPL Version 2 code and therefore, elected the GPL
032: * Version 2 license, then the option applies only if the new code is
033: * made subject to such option by the copyright holder.
034: *
035: * Contributor(s):
036: *
037: * Portions Copyrighted 2008 Sun Microsystems, Inc.
038: */
039:
040: package org.netbeans.modules.db.mysql.installations;
041:
042: import org.netbeans.modules.db.mysql.Installation;
043: import org.openide.util.Utilities;
044:
045: /**
046: * Defines the AMP stack distribution called "XAMPP" for Linux
047: * See <a href="http://www.apachefriends.org/en/xampp-linux.html">
048: * http://www.apachefriends.org/en/xampp-linux.html</a>
049: *
050: * @author David Van Couvering
051: */
052: public class LinuxXAMPPInstallation extends AbstractInstallation {
053: private static final String DEFAULT_BASE_PATH = "/opt/lampp"; // NOI8N
054: private static final String LAMPP_EXE_PATH = "/lampp"; // NOI18N
055: private static final String ADMIN_URL = "http://localhost/phpmyadmin";
056: private static final String DEFAULT_PORT = "3306";
057:
058: private String basePath = DEFAULT_BASE_PATH;
059:
060: private static final LinuxXAMPPInstallation DEFAULT = new LinuxXAMPPInstallation(
061: DEFAULT_BASE_PATH);
062:
063: public static final LinuxXAMPPInstallation getDefault() {
064: return DEFAULT;
065: }
066:
067: private LinuxXAMPPInstallation(String basePath) {
068: this .basePath = basePath;
069: }
070:
071: public boolean isStackInstall() {
072: return true;
073: }
074:
075: public boolean isValidOnCurrentOS() {
076: return Utilities.isUnix();
077: }
078:
079: public String[] getAdminCommand() {
080: return new String[] { ADMIN_URL, "" };
081: }
082:
083: public String[] getStartCommand() {
084: String command = basePath + LAMPP_EXE_PATH; // NOI18N
085: return new String[] { command, "startmysql" };
086: }
087:
088: public String[] getStopCommand() {
089: String command = basePath + LAMPP_EXE_PATH; // NOI18N
090: return new String[] { command, "stopmysql" };
091: }
092:
093: public String getDefaultPort() {
094: return DEFAULT_PORT;
095: }
096:
097: @Override
098: protected String getBasePath() {
099: return basePath;
100: }
101:
102: @Override
103: protected String getStartPath() {
104: return LAMPP_EXE_PATH;
105: }
106:
107: @Override
108: protected String getStopPath() {
109: return LAMPP_EXE_PATH;
110: }
111:
112: @Override
113: protected Installation createInstallation(String basePath) {
114: return new LinuxXAMPPInstallation(basePath);
115: }
116:
117: }
|