This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 193681
Collapse All | Expand All

(-)a/apisupport.harness/nbproject/project.properties (+1 lines)
Lines 75-80 Link Here
75
    org/netbeans/nbbuild/Arch-api-questions.xml,\
75
    org/netbeans/nbbuild/Arch-api-questions.xml,\
76
    org/netbeans/nbbuild/AutoUpdate*,\
76
    org/netbeans/nbbuild/AutoUpdate*,\
77
    org/netbeans/nbbuild/Branding*.class,\
77
    org/netbeans/nbbuild/Branding*.class,\
78
    org/netbeans/nbbuild/IsLocked*.class,\
78
    org/netbeans/nbbuild/CreateModuleXML*.class,\
79
    org/netbeans/nbbuild/CreateModuleXML*.class,\
79
    org/netbeans/nbbuild/CustomJavac*.class,\
80
    org/netbeans/nbbuild/CustomJavac*.class,\
80
    org/netbeans/nbbuild/ConvertClusterPath*.class,\
81
    org/netbeans/nbbuild/ConvertClusterPath*.class,\
(-)a/apisupport.harness/release/build.xml (+2 lines)
Lines 53-58 Link Here
53
        <taskdef classpath="${harness.dir}/tasks.jar" resource="org/netbeans/nbbuild/taskdefs.properties"/>
53
        <taskdef classpath="${harness.dir}/tasks.jar" resource="org/netbeans/nbbuild/taskdefs.properties"/>
54
        <typedef name="pathfileset" classname="org.netbeans.nbbuild.PathFileSet"
54
        <typedef name="pathfileset" classname="org.netbeans.nbbuild.PathFileSet"
55
                 classpath="${harness.dir}/tasks.jar"/>
55
                 classpath="${harness.dir}/tasks.jar"/>
56
        <typedef name="islocked" classname="org.netbeans.nbbuild.IsLocked" 
57
                 classpath="${harness.dir}/tasks.jar"/>
56
        <property name="harness.taskdefs.done" value="true"/>
58
        <property name="harness.taskdefs.done" value="true"/>
57
        <fail message="When using cluster.path property, remove netbeans.dest.dir, enabled.clusters and disabled.clusters properties from platform config, they would be ignored.">
59
        <fail message="When using cluster.path property, remove netbeans.dest.dir, enabled.clusters and disabled.clusters properties from platform config, they would be ignored.">
58
            <condition>
60
            <condition>
(-)a/apisupport.harness/release/suite.xml (-1 / +5 lines)
Lines 58-63 Link Here
58
        <taskdef classpath="${harness.dir}/tasks.jar" resource="org/netbeans/nbbuild/taskdefs.properties"/>
58
        <taskdef classpath="${harness.dir}/tasks.jar" resource="org/netbeans/nbbuild/taskdefs.properties"/>
59
        <typedef name="pathfileset" classname="org.netbeans.nbbuild.PathFileSet"
59
        <typedef name="pathfileset" classname="org.netbeans.nbbuild.PathFileSet"
60
                 classpath="${harness.dir}/tasks.jar"/>
60
                 classpath="${harness.dir}/tasks.jar"/>
61
        <typedef name="islocked" classname="org.netbeans.nbbuild.IsLocked" 
62
                 classpath="${harness.dir}/tasks.jar"/>
61
        <property name="harness.taskdefs.done" value="true"/>
63
        <property name="harness.taskdefs.done" value="true"/>
62
64
63
        <fail message="When using cluster.path property, remove netbeans.dest.dir, enabled.clusters and disabled.clusters properties from platform config, they would be ignored.">
65
        <fail message="When using cluster.path property, remove netbeans.dest.dir, enabled.clusters and disabled.clusters properties from platform config, they would be ignored.">
Lines 460-466 Link Here
460
    <target name="-testuserdir-delete-init" depends="-init">
462
    <target name="-testuserdir-delete-init" depends="-init">
461
        <property name="test.user.dir" location="${suite.build.dir}/testuserdir"/>
463
        <property name="test.user.dir" location="${suite.build.dir}/testuserdir"/>
462
        <property name="test.user.dir.lock" location="${test.user.dir}/lock"/>
464
        <property name="test.user.dir.lock" location="${test.user.dir}/lock"/>
463
        <available property="app.running" file="${test.user.dir.lock}"/>
465
        <condition property="app.running">
466
            <islocked file="${test.user.dir.lock}"/>
467
        </condition> 
464
    </target>
468
    </target>
465
    <target name="-testuserdir-delete-ok" depends="-testuserdir-delete-init" unless="app.running">
469
    <target name="-testuserdir-delete-ok" depends="-testuserdir-delete-init" unless="app.running">
466
        <delete dir="${test.user.dir}"/>
470
        <delete dir="${test.user.dir}"/>
(-)b7882f23273d (+116 lines)
Added Link Here
1
/*
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
 *
4
 * Copyright 2011 Oracle and/or its affiliates. All rights reserved.
5
 *
6
 * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
7
 * Other names may be trademarks of their respective owners.
8
 *
9
 * The contents of this file are subject to the terms of either the GNU
10
 * General Public License Version 2 only ("GPL") or the Common
11
 * Development and Distribution License("CDDL") (collectively, the
12
 * "License"). You may not use this file except in compliance with the
13
 * License. You can obtain a copy of the License at
14
 * http://www.netbeans.org/cddl-gplv2.html
15
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
16
 * specific language governing permissions and limitations under the
17
 * License.  When distributing the software, include this License Header
18
 * Notice in each file and include the License file at
19
 * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
20
 * particular file as subject to the "Classpath" exception as provided
21
 * by Oracle in the GPL Version 2 section of the License file that
22
 * accompanied this code. If applicable, add the following below the
23
 * License Header, with the fields enclosed by brackets [] replaced by
24
 * your own identifying information:
25
 * "Portions Copyrighted [year] [name of copyright owner]"
26
 *
27
 * If you wish your version of this file to be governed by only the CDDL
28
 * or only the GPL Version 2, indicate your decision by adding
29
 * "[Contributor] elects to include this software in this distribution
30
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
31
 * single choice of license, a recipient has the option to distribute
32
 * your version of this file under either the CDDL, the GPL Version 2 or
33
 * to extend the choice of license to its licensees as provided above.
34
 * However, if you add GPL Version 2 code and therefore, elected the GPL
35
 * Version 2 license, then the option applies only if the new code is
36
 * made subject to such option by the copyright holder.
37
 *
38
 * Contributor(s):
39
 *
40
 * Portions Copyrighted 2011 Sun Microsystems, Inc.
41
 */
42
package org.netbeans.nbbuild;
43
44
import java.io.File;
45
import java.io.IOException;
46
import java.io.RandomAccessFile;
47
import java.nio.channels.FileLock;
48
import org.apache.tools.ant.BuildException;
49
import org.apache.tools.ant.taskdefs.condition.Condition;
50
51
/** Checks whether given file can be locked or not.
52
 *
53
 * @author Jaroslav Tulach <jtulach@netbeans.org>
54
 */
55
public final class IsLocked implements Condition {
56
    private File file;
57
    // defaults as for tryLock():
58
    private long position = 0L;
59
    private long size = Long.MAX_VALUE;
60
    private boolean shared = false;
61
62
    public void setShared(boolean shared) {
63
        this.shared = shared;
64
    }
65
    
66
    public void setFile(File file) {
67
        this.file = file;
68
    }
69
    
70
    public void setPosition(long position) {
71
        this.position = position;
72
    }
73
    
74
    public void setSize(long size) {
75
        this.size = size;
76
    }
77
78
    public boolean eval() throws BuildException {
79
        if (file == null) {
80
            throw new BuildException("file needs to be specified");
81
        }
82
        if (!file.exists()) {
83
            return false;
84
        }
85
        RandomAccessFile raf = null;
86
        FileLock lock = null;
87
        try {
88
            raf = new RandomAccessFile(file, "rw");
89
            try {
90
                lock = raf.getChannel().tryLock(position, size, shared);
91
                if (lock == null) {
92
                    return true;
93
                }
94
            } catch (RuntimeException ex) {
95
                throw new IOException(ex);
96
            }
97
            return false;
98
        } catch (IOException ex) {
99
            return true;
100
        } finally {
101
            try {
102
                if (lock != null) {
103
                    lock.release();
104
                }
105
                if (raf != null) {
106
                    raf.close();
107
                }
108
            } catch (IOException ex) {
109
                throw new BuildException("Cannot close " + file, ex);
110
            }
111
        }
112
        
113
    }
114
    
115
    
116
}
(-)a/nbbuild/default.xml (+2 lines)
Lines 121-126 Link Here
121
         classpath="${nb_all}/nbbuild/nbantext.jar"/>
121
         classpath="${nb_all}/nbbuild/nbantext.jar"/>
122
    <taskdef name="parsemanifest" classname="org.netbeans.nbbuild.ParseManifest"
122
    <taskdef name="parsemanifest" classname="org.netbeans.nbbuild.ParseManifest"
123
         classpath="${nb_all}/nbbuild/nbantext.jar"/>
123
         classpath="${nb_all}/nbbuild/nbantext.jar"/>
124
    <typedef name="islocked" classname="org.netbeans.nbbuild.IsLocked"
125
         classpath="${nb_all}/nbbuild/nbantext.jar"/>
124
    <taskdef name="subant-junit" classname="org.netbeans.nbbuild.SubAntJUnitReport" classpath="${nb_all}/nbbuild/nbantext.jar"/>
126
    <taskdef name="subant-junit" classname="org.netbeans.nbbuild.SubAntJUnitReport" classpath="${nb_all}/nbbuild/nbantext.jar"/>
125
    <taskdef name="resolvelist" classname="org.netbeans.nbbuild.ResolveList" classpath="${nb_all}/nbbuild/nbantext.jar"/>
127
    <taskdef name="resolvelist" classname="org.netbeans.nbbuild.ResolveList" classpath="${nb_all}/nbbuild/nbantext.jar"/>
126
    <taskdef name="checkmoduleconfigs" classname="org.netbeans.nbbuild.CheckModuleConfigs" classpath="${nb_all}/nbbuild/nbantext.jar"/>
128
    <taskdef name="checkmoduleconfigs" classname="org.netbeans.nbbuild.CheckModuleConfigs" classpath="${nb_all}/nbbuild/nbantext.jar"/>
(-)a/nbbuild/templates/common.xml (-1 / +3 lines)
Lines 971-977 Link Here
971
    <target name="-testuserdir-delete-init" depends="files-init">
971
    <target name="-testuserdir-delete-init" depends="files-init">
972
        <property name="test.user.dir" location="${build.dir}/testuserdir"/>
972
        <property name="test.user.dir" location="${build.dir}/testuserdir"/>
973
        <property name="test.user.dir.lock" location="${test.user.dir}/lock"/>
973
        <property name="test.user.dir.lock" location="${test.user.dir}/lock"/>
974
        <available property="app.running" file="${test.user.dir.lock}"/>
974
        <condition property="app.running">
975
            <islocked file="${test.user.dir.lock}"/>
976
        </condition> 
975
    </target>
977
    </target>
976
    <target name="-testuserdir-delete-ok" depends="-testuserdir-delete-init" unless="app.running">
978
    <target name="-testuserdir-delete-ok" depends="-testuserdir-delete-init" unless="app.running">
977
        <delete dir="${test.user.dir}"/>
979
        <delete dir="${test.user.dir}"/>
(-)b7882f23273d (+82 lines)
Added Link Here
1
/*
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
 *
4
 * Copyright 2011 Oracle and/or its affiliates. All rights reserved.
5
 *
6
 * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
7
 * Other names may be trademarks of their respective owners.
8
 *
9
 * The contents of this file are subject to the terms of either the GNU
10
 * General Public License Version 2 only ("GPL") or the Common
11
 * Development and Distribution License("CDDL") (collectively, the
12
 * "License"). You may not use this file except in compliance with the
13
 * License. You can obtain a copy of the License at
14
 * http://www.netbeans.org/cddl-gplv2.html
15
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
16
 * specific language governing permissions and limitations under the
17
 * License.  When distributing the software, include this License Header
18
 * Notice in each file and include the License file at
19
 * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
20
 * particular file as subject to the "Classpath" exception as provided
21
 * by Oracle in the GPL Version 2 section of the License file that
22
 * accompanied this code. If applicable, add the following below the
23
 * License Header, with the fields enclosed by brackets [] replaced by
24
 * your own identifying information:
25
 * "Portions Copyrighted [year] [name of copyright owner]"
26
 *
27
 * If you wish your version of this file to be governed by only the CDDL
28
 * or only the GPL Version 2, indicate your decision by adding
29
 * "[Contributor] elects to include this software in this distribution
30
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
31
 * single choice of license, a recipient has the option to distribute
32
 * your version of this file under either the CDDL, the GPL Version 2 or
33
 * to extend the choice of license to its licensees as provided above.
34
 * However, if you add GPL Version 2 code and therefore, elected the GPL
35
 * Version 2 license, then the option applies only if the new code is
36
 * made subject to such option by the copyright holder.
37
 *
38
 * Contributor(s):
39
 *
40
 * Portions Copyrighted 2011 Sun Microsystems, Inc.
41
 */
42
package org.netbeans.nbbuild;
43
44
import java.io.File;
45
import java.io.FileOutputStream;
46
import java.nio.channels.FileLock;
47
import org.netbeans.junit.NbTestCase;
48
49
public class IsLockedTest extends NbTestCase {
50
    private IsLocked condition;
51
    private File file;
52
53
    public IsLockedTest(String name) {
54
        super(name);
55
    }
56
57
    @Override
58
    protected void setUp() throws Exception {
59
        file = new File(getWorkDir(), "file");
60
        file.createNewFile();
61
        condition = new IsLocked();
62
        condition.setFile(file);
63
    }
64
    
65
    public void testCanLock() {
66
        assertFalse("Is not locked", condition.eval());
67
    }
68
    public void testDoesNotExists() {
69
        file.delete();
70
        assertFalse("Is not locked", condition.eval());
71
        assertFalse("Still does not exist", file.exists());
72
    }
73
    public void testCannotLock() throws Exception {
74
        FileOutputStream os = new FileOutputStream(file);
75
        FileLock lock = os.getChannel().lock();
76
        try {
77
            assertTrue("Is locked", condition.eval());
78
        } finally {
79
            lock.release();
80
        }
81
    }
82
}

Return to bug 193681