Source Code Cross Referenced for ZoneNode.java in  » 6.0-JDK-Modules-com.sun » jndi » com » sun » jndi » dns » 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 » 6.0 JDK Modules com.sun » jndi » com.sun.jndi.dns 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright 2000-2002 Sun Microsystems, Inc.  All Rights Reserved.
003:         * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004:         *
005:         * This code is free software; you can redistribute it and/or modify it
006:         * under the terms of the GNU General Public License version 2 only, as
007:         * published by the Free Software Foundation.  Sun designates this
008:         * particular file as subject to the "Classpath" exception as provided
009:         * by Sun in the LICENSE file that accompanied this code.
010:         *
011:         * This code is distributed in the hope that it will be useful, but WITHOUT
012:         * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013:         * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
014:         * version 2 for more details (a copy is included in the LICENSE file that
015:         * accompanied this code).
016:         *
017:         * You should have received a copy of the GNU General Public License version
018:         * 2 along with this work; if not, write to the Free Software Foundation,
019:         * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020:         *
021:         * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
022:         * CA 95054 USA or visit www.sun.com if you need additional information or
023:         * have any questions.
024:         */
025:
026:        package com.sun.jndi.dns;
027:
028:        import java.lang.ref.SoftReference;
029:        import java.util.Date;
030:        import java.util.Vector;
031:
032:        /**
033:         * ZoneNode extends NameNode to represent a tree of the zones in the
034:         * DNS namespace, along with any intermediate nodes between zones.
035:         * A ZoneNode that represents a zone may be "populated" with a
036:         * NameNode tree containing the zone's contents.
037:         *
038:         * <p> A populated zone's contents will be flagged as having expired after
039:         * the time specified by the minimum TTL value in the zone's SOA record.
040:         *
041:         * <p> Since zone cuts aren't directly modeled by a tree of ZoneNodes,
042:         * ZoneNode.isZoneCut() always returns false.
043:         *
044:         * <p> The synchronization strategy is documented in DnsContext.java.
045:         *
046:         * <p> The zone's contents are accessed via a soft reference, so its
047:         * heap space may be reclaimed when necessary.  The zone may be
048:         * repopulated later.
049:         *
050:         * @author Scott Seligman
051:         * @version 1.17 07/05/05
052:         */
053:
054:        class ZoneNode extends NameNode {
055:
056:            private SoftReference contentsRef = null; // the zone's namespace
057:            private long serialNumber = -1; // the zone data's serial number
058:            private Date expiration = null; // time when the zone's data expires
059:
060:            ZoneNode(String label) {
061:                super (label);
062:            }
063:
064:            protected NameNode newNameNode(String label) {
065:                return new ZoneNode(label);
066:            }
067:
068:            /*
069:             * Clears the contents of this node.  If the node was flagged as
070:             * expired, it remains so.
071:             */
072:            synchronized void depopulate() {
073:                contentsRef = null;
074:                serialNumber = -1;
075:            }
076:
077:            /*
078:             * Is this node currently populated?
079:             */
080:            synchronized boolean isPopulated() {
081:                return (getContents() != null);
082:            }
083:
084:            /*
085:             * Returns the zone's contents, or null if the zone is not populated.
086:             */
087:            synchronized NameNode getContents() {
088:                return (contentsRef != null) ? (NameNode) contentsRef.get()
089:                        : null;
090:            }
091:
092:            /*
093:             * Has this zone's data expired?
094:             */
095:            synchronized boolean isExpired() {
096:                return ((expiration != null) && expiration.before(new Date()));
097:            }
098:
099:            /*
100:             * Returns the deepest populated zone on the path specified by a
101:             * fully-qualified domain name, or null if there is no populated
102:             * zone on that path.  Note that a node may be depopulated after
103:             * being returned.
104:             */
105:            ZoneNode getDeepestPopulated(DnsName fqdn) {
106:                ZoneNode znode = this ;
107:                ZoneNode popNode = isPopulated() ? this  : null;
108:                for (int i = 1; i < fqdn.size(); i++) { //     "i=1" to skip root label
109:                    znode = (ZoneNode) znode.get(fqdn.getKey(i));
110:                    if (znode == null) {
111:                        break;
112:                    } else if (znode.isPopulated()) {
113:                        popNode = znode;
114:                    }
115:                }
116:                return popNode;
117:            }
118:
119:            /*
120:             * Populates (or repopulates) a zone given its own fully-qualified
121:             * name and its resource records.  Returns the zone's new contents.
122:             */
123:            NameNode populate(DnsName zone, ResourceRecords rrs) {
124:                // assert zone.get(0).equals("");		// zone has root label
125:                // assert (zone.size() == (depth() + 1));	// +1 due to root label
126:
127:                NameNode newContents = new NameNode(null);
128:
129:                for (int i = 0; i < rrs.answer.size(); i++) {
130:                    ResourceRecord rr = (ResourceRecord) rrs.answer
131:                            .elementAt(i);
132:                    DnsName n = rr.getName();
133:
134:                    // Ignore resource records whose names aren't within the zone's
135:                    // domain.  Also skip records of the zone's top node, since
136:                    // the zone's root NameNode is already in place.
137:                    if ((n.size() > zone.size()) && n.startsWith(zone)) {
138:                        NameNode nnode = newContents.add(n, zone.size());
139:                        if (rr.getType() == ResourceRecord.TYPE_NS) {
140:                            nnode.setZoneCut(true);
141:                        }
142:                    }
143:                }
144:                // The zone's SOA record is the first record in the answer section.
145:                ResourceRecord soa = (ResourceRecord) rrs.answer.firstElement();
146:                synchronized (this ) {
147:                    contentsRef = new SoftReference(newContents);
148:                    serialNumber = getSerialNumber(soa);
149:                    setExpiration(getMinimumTtl(soa));
150:                    return newContents;
151:                }
152:            }
153:
154:            /*
155:             * Set this zone's data to expire in <tt>secsToExpiration</tt> seconds.
156:             */
157:            private void setExpiration(long secsToExpiration) {
158:                expiration = new Date(System.currentTimeMillis() + 1000
159:                        * secsToExpiration);
160:            }
161:
162:            /*
163:             * Returns an SOA record's minimum TTL field.
164:             */
165:            private static long getMinimumTtl(ResourceRecord soa) {
166:                String rdata = (String) soa.getRdata();
167:                int pos = rdata.lastIndexOf(' ') + 1;
168:                return Long.parseLong(rdata.substring(pos));
169:            }
170:
171:            /*
172:             * Compares this zone's serial number with that of an SOA record.
173:             * Zone must be populated.
174:             * Returns a negative, zero, or positive integer as this zone's
175:             * serial number is less than, equal to, or greater than the SOA
176:             * record's.
177:             * See ResourceRecord.compareSerialNumbers() for a description of
178:             * serial number arithmetic.
179:             */
180:            int compareSerialNumberTo(ResourceRecord soa) {
181:                // assert isPopulated();
182:                return ResourceRecord.compareSerialNumbers(serialNumber,
183:                        getSerialNumber(soa));
184:            }
185:
186:            /*
187:             * Returns an SOA record's serial number.
188:             */
189:            private static long getSerialNumber(ResourceRecord soa) {
190:                String rdata = (String) soa.getRdata();
191:
192:                // An SOA record ends with:  serial refresh retry expire minimum.
193:                // Set "beg" to the space before serial, and "end" to the space after.
194:                // We go "backward" to avoid dealing with escaped spaces in names.
195:                int beg = rdata.length();
196:                int end = -1;
197:                for (int i = 0; i < 5; i++) {
198:                    end = beg;
199:                    beg = rdata.lastIndexOf(' ', end - 1);
200:                }
201:                return Long.parseLong(rdata.substring(beg + 1, end));
202:            }
203:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.