Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.installer / org.gvsig.installer.main / src / main / java / org / gvsig / installer / main / DefaultLauncher.java @ 40560

History | View | Annotate | Download (2.63 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2010 {Prodevelop}   {Task}
27
 */
28

    
29
package org.gvsig.installer.main;
30

    
31
import java.io.File;
32
import java.io.FileInputStream;
33
import java.io.FileOutputStream;
34
import java.io.IOException;
35
import java.io.InputStream;
36
import java.io.OutputStream;
37

    
38
/**
39
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
40
 */
41
public class DefaultLauncher {
42

    
43
        private File appFolder;
44

    
45
        public File getApplicationFolder() throws IOException {
46
                if (appFolder == null) {
47
                        File templateFile = new File(getClass().getClassLoader()
48
                                        .getResource("application").getFile());
49
                        appFolder = new File(System.getProperty("java.io.tmpdir")
50
                                        + File.separator + "tmp_gvsig_installer");
51

    
52
                        copy(templateFile, appFolder);
53
                }
54

    
55
                return appFolder;
56
        }
57

    
58
        public File getPluginsFolder() throws IOException {
59
                return new File(appFolder, "plugins");
60
        }
61

    
62
        public File getInstallFolder() throws IOException {
63
                return new File(appFolder, "install");
64
        }
65

    
66
        public void copy(File sourceLocation, File targetLocation)
67
                        throws IOException {
68
                if (sourceLocation.isDirectory()) {
69
                        if (!targetLocation.exists()) {
70
                                targetLocation.mkdir();
71
                        }
72

    
73
                        String[] children = sourceLocation.list();
74
                        for (int i = 0; i < children.length; i++) {
75
                                copy(new File(sourceLocation, children[i]), new File(
76
                                                targetLocation, children[i]));
77
                        }
78
                } else {
79
                        targetLocation.getParentFile().mkdirs();
80

    
81
                        InputStream in = new FileInputStream(sourceLocation);
82
                        OutputStream out = new FileOutputStream(targetLocation);
83

    
84
                        // Copy the bits from instream to outstream
85
                        byte[] buf = new byte[1024];
86
                        int len;
87
                        while ((len = in.read(buf)) > 0) {
88
                                out.write(buf, 0, len);
89
                        }
90
                        in.close();
91
                        out.close();
92
                }
93
        }
94
}