Source Code Cross Referenced for TagFileCatalog.java in  » IDE » J » org » armedbear » j » 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
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE » J » org.armedbear.j 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * TagFileCatalog.java
003:         *
004:         * Copyright (C) 1998-2002 Peter Graves
005:         * $Id: TagFileCatalog.java,v 1.1.1.1 2002/09/24 16:08:01 piso Exp $
006:         *
007:         * This program is free software; you can redistribute it and/or
008:         * modify it under the terms of the GNU General Public License
009:         * as published by the Free Software Foundation; either version 2
010:         * of the License, or (at your option) any later version.
011:         *
012:         * This program is distributed in the hope that it will be useful,
013:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
014:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
015:         * GNU General Public License for more details.
016:         *
017:         * You should have received a copy of the GNU General Public License
018:         * along with this program; if not, write to the Free Software
019:         * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
020:         */
021:
022:        package org.armedbear.j;
023:
024:        import java.io.BufferedReader;
025:        import java.io.BufferedWriter;
026:        import java.io.IOException;
027:        import java.io.InputStreamReader;
028:        import java.io.OutputStreamWriter;
029:        import java.util.ArrayList;
030:        import java.util.Date;
031:
032:        public final class TagFileCatalog {
033:            private File tagfileDir;
034:            private File catalogFile;
035:            private ArrayList entries = new ArrayList();
036:
037:            public TagFileCatalog(File tagfileDir) {
038:                this .tagfileDir = tagfileDir;
039:                catalogFile = File.getInstance(tagfileDir, "catalog");
040:            }
041:
042:            public synchronized void addEntry(File dir, File tagfile, Mode mode) {
043:                String directoryPath = dir.canonicalPath();
044:                String modeName = mode.toString();
045:                for (int i = entries.size() - 1; i >= 0; i--) {
046:                    CatalogEntry entry = getEntry(i);
047:                    if (entry.directoryPath.equals(directoryPath)) {
048:                        if (entry.modeName == null) {
049:                            entry.tagfileName = tagfile.getName();
050:                            entry.modeName = modeName;
051:                            return;
052:                        } else if (entry.modeName.equals(modeName)) {
053:                            entry.tagfileName = tagfile.getName();
054:                            return;
055:                        }
056:                    }
057:                }
058:                // Not found.
059:                entries.add(new CatalogEntry(directoryPath, modeName, tagfile
060:                        .getName()));
061:            }
062:
063:            public synchronized boolean containsTagFileName(String name) {
064:                for (int i = entries.size() - 1; i >= 0; i--) {
065:                    CatalogEntry entry = getEntry(i);
066:                    if (entry.tagfileName.equals(name))
067:                        return true;
068:                }
069:                // Not found.
070:                return false;
071:            }
072:
073:            public synchronized File getTagFile(File dir, Mode mode) {
074:                Debug.assertTrue(mode != null);
075:                String directoryPath = dir.canonicalPath();
076:                String modeName = mode.toString();
077:                for (int i = entries.size() - 1; i >= 0; i--) {
078:                    CatalogEntry entry = getEntry(i);
079:                    if (directoryPath.equals(entry.directoryPath)
080:                            && modeName.equals(entry.modeName))
081:                        return File.getInstance(tagfileDir, entry.tagfileName);
082:                }
083:                // Not found.
084:                return null;
085:            }
086:
087:            public synchronized void update() {
088:                boolean changed = false;
089:                for (int i = entries.size() - 1; i >= 0; i--) {
090:                    CatalogEntry entry = getEntry(i);
091:                    File file = File.getInstance(tagfileDir, entry.tagfileName);
092:                    if (!file.exists()) {
093:                        entries.remove(i);
094:                        changed = true;
095:                    }
096:                }
097:                if (changed)
098:                    save();
099:            }
100:
101:            public synchronized void load() {
102:                try {
103:                    if (catalogFile.isFile()) {
104:                        BufferedReader reader = new BufferedReader(
105:                                new InputStreamReader(catalogFile
106:                                        .getInputStream()));
107:                        String s;
108:                        while ((s = reader.readLine()) != null) {
109:                            if (s.trim().startsWith("#"))
110:                                continue;
111:                            int i = s.indexOf('\t');
112:                            if (i < 0) {
113:                                // Old or invalid format.
114:                                Log
115:                                        .error("TagFileCatalog.load old or invalid format");
116:                                entries.clear();
117:                                break;
118:                            }
119:                            String tagFileName = s.substring(0, i);
120:                            String remaining = s.substring(i + 1).trim();
121:                            i = remaining.indexOf('\t');
122:                            if (i < 0) {
123:                                // Invalid format.
124:                                Log.error("TagFileCatalog.load invalid format");
125:                                entries.clear();
126:                                break;
127:                            }
128:                            String modeName = remaining.substring(0, i);
129:                            String directoryPath = remaining.substring(i + 1)
130:                                    .trim();
131:                            entries.add(new CatalogEntry(directoryPath,
132:                                    modeName, tagFileName));
133:                        }
134:                        reader.close();
135:                    }
136:                } catch (IOException e) {
137:                    Log.error(e);
138:                }
139:            }
140:
141:            public synchronized void save() {
142:                try {
143:                    BufferedWriter writer = new BufferedWriter(
144:                            new OutputStreamWriter(catalogFile
145:                                    .getOutputStream()));
146:                    writer.write("# " + new Date().toString() + '\n');
147:                    final int limit = entries.size();
148:                    for (int i = 0; i < limit; i++) {
149:                        CatalogEntry entry = getEntry(i);
150:                        writer.write(entry.tagfileName);
151:                        writer.write('\t');
152:                        writer.write(entry.modeName);
153:                        writer.write('\t');
154:                        writer.write(entry.directoryPath);
155:                        writer.write('\n');
156:                    }
157:                    writer.flush();
158:                    writer.close();
159:                } catch (IOException e) {
160:                    Log.error(e);
161:                }
162:            }
163:
164:            private final CatalogEntry getEntry(int i) {
165:                return (CatalogEntry) entries.get(i);
166:            }
167:
168:            private static class CatalogEntry {
169:                final String directoryPath;
170:                String modeName;
171:                String tagfileName;
172:
173:                CatalogEntry(String directoryPath, String modeName,
174:                        String tagfileName) {
175:                    this .directoryPath = directoryPath;
176:                    this .modeName = modeName;
177:                    this .tagfileName = tagfileName;
178:                }
179:
180:                public String toString() {
181:                    return tagfileName + " " + directoryPath + " " + modeName;
182:                }
183:            }
184:        }
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.