Source Code Cross Referenced for LockFileSet.java in  » Workflow-Engines » pegasus-2.1.0 » org » griphyn » vdl » util » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Workflow Engines » pegasus 2.1.0 » org.griphyn.vdl.util 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * This file or a portion of this file is licensed under the terms of
003:         * the Globus Toolkit Public License, found in file GTPL, or at
004:         * http://www.globus.org/toolkit/download/license.html. This notice must
005:         * appear in redistributions of this file, with or without modification.
006:         *
007:         * Redistributions of this Software, with or without modification, must
008:         * reproduce the GTPL in: (1) the Software, or (2) the Documentation or
009:         * some other similar material which is provided with the Software (if
010:         * any).
011:         *
012:         * Copyright 1999-2004 University of Chicago and The University of
013:         * Southern California. All rights reserved.
014:         */
015:
016:        package org.griphyn.vdl.util;
017:
018:        import org.griphyn.vdl.util.Logging;
019:        import java.util.*;
020:        import java.io.*;
021:
022:        /**
023:         * This class is a helper for the <code>LockHelper</code>. It maintains
024:         * the set of lock filenames in status locked. These files need to be
025:         * removed on exit. Thus, this class is implemented as a Singleton.
026:         *
027:         * @author Jens-S. Vöckler
028:         * @author Yong Zhao
029:         * @version $Revision $
030:         *
031:         * @see LockHelper
032:         */
033:        public class LockFileSet extends Thread {
034:            /**
035:             * This is the Singleton instance variable.
036:             */
037:            private static LockFileSet m_instance;
038:
039:            /**
040:             * The set of files that need to be erased on exit.
041:             */
042:            private HashSet m_fileSet;
043:
044:            /**
045:             * The c'tor is protected in order to enforce the Singleton interface.
046:             */
047:            protected LockFileSet() {
048:                m_fileSet = new HashSet();
049:                Runtime.getRuntime().addShutdownHook(this );
050:            }
051:
052:            /**
053:             * This is the only access to any LockFileSet object. It is a kind of
054:             * factory that produces just one instance for all.
055:             *
056:             * @return the one and only instance of a LockFileSet. Always.
057:             */
058:            public static synchronized LockFileSet instance() {
059:                if (m_instance == null)
060:                    m_instance = new LockFileSet();
061:                return m_instance;
062:            }
063:
064:            /**
065:             * This method should not be called directly. It will be invoked on exit
066:             * by the exit hook handler.
067:             */
068:            public void run() {
069:                synchronized (this .m_fileSet) {
070:                    for (Iterator i = this .m_fileSet.iterator(); i.hasNext();) {
071:                        ((File) i.next()).delete();
072:                    }
073:                    this .m_fileSet = null;
074:                }
075:            }
076:
077:            /**
078:             * Adds a file name to the set of lock filenames that need to be removed
079:             * on exit.
080:             * @param f is a File instance nameing the lock filename.
081:             */
082:            public void add(File f) {
083:                // Logging.instance().log( "lock", 2, "LFS add " + f.getPath() );
084:                synchronized (this .m_fileSet) {
085:                    this .m_fileSet.add(f);
086:                }
087:            }
088:
089:            /**
090:             * Removes a filename from the set of lock filenames that get removed 
091:             * on exit.
092:             * @param f is a File instance of a filename to remove from the list
093:             * of removable files (are you confused yet).
094:             */
095:            public void remove(File f) {
096:                // Logging.instance().log( "lock", 2, "LFS del " + f.getPath() );
097:                synchronized (this.m_fileSet) {
098:                    this.m_fileSet.remove(f);
099:                }
100:            }
101:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.