Source Code Cross Referenced for XMLPropertiesUtil.java in  » J2EE » Pustefix » de » schlund » pfixxml » config » 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 » J2EE » Pustefix » de.schlund.pfixxml.config 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * This file is part of PFIXCORE.
003:         *
004:         * PFIXCORE is free software; you can redistribute it and/or modify
005:         * it under the terms of the GNU Lesser General Public License as published by
006:         * the Free Software Foundation; either version 2 of the License, or
007:         * (at your option) any later version.
008:         *
009:         * PFIXCORE is distributed in the hope that it will be useful,
010:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
011:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
012:         * GNU Lesser General Public License for more details.
013:         *
014:         * You should have received a copy of the GNU Lesser General Public License
015:         * along with PFIXCORE; if not, write to the Free Software
016:         * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
017:         */
018:
019:        package de.schlund.pfixxml.config;
020:
021:        import java.io.File;
022:        import java.io.FileInputStream;
023:        import java.io.IOException;
024:        import java.io.InputStream;
025:        import java.util.Properties;
026:
027:        import javax.xml.parsers.ParserConfigurationException;
028:        import javax.xml.parsers.SAXParser;
029:        import javax.xml.parsers.SAXParserFactory;
030:
031:        import org.apache.commons.digester.Digester;
032:        import org.apache.commons.digester.Rule;
033:        import org.apache.commons.digester.RulesBase;
034:        import org.apache.commons.digester.WithDefaultsRulesWrapper;
035:        import org.apache.log4j.Logger;
036:        import org.xml.sax.Attributes;
037:        import org.xml.sax.SAXException;
038:
039:        import de.schlund.pfixxml.config.impl.DefaultMatchRule;
040:        import de.schlund.pfixxml.resources.FileResource;
041:
042:        /**
043:         * Loads properties from a XML file
044:         * 
045:         * @author Sebastian Marsching <sebastian.marsching@1und1.de>
046:         */
047:        public abstract class XMLPropertiesUtil {
048:            private static final String PROPS_NS = "http://pustefix.sourceforge.net/properties200401";
049:
050:            private static final String CUS_NS = "http://www.schlund.de/pustefix/customize";
051:
052:            private static final Logger LOG = Logger
053:                    .getLogger(XMLPropertiesUtil.class);
054:
055:            // Define PropertyRule inline
056:            public static class PropertyRule extends Rule {
057:
058:                private Properties props;
059:
060:                private String propName;
061:
062:                private String propValue;
063:
064:                public PropertyRule(Properties props) {
065:                    this .props = props;
066:                }
067:
068:                /* (non-Javadoc)
069:                 * @see org.apache.commons.digester.Rule#begin(java.lang.String, java.lang.String, org.xml.sax.Attributes)
070:                 */
071:                public void begin(String namespace, String name,
072:                        Attributes attributes) throws Exception {
073:                    this .propName = attributes.getValue("name");
074:                    this .propValue = "";
075:                    if (propName == null) {
076:                        throw new SAXException(
077:                                "Mandatory attribute \"name\" is missing!");
078:                    }
079:                }
080:
081:                /* (non-Javadoc)
082:                 * @see org.apache.commons.digester.Rule#end(java.lang.String, java.lang.String)
083:                 */
084:                public void end(String namespace, String name) throws Exception {
085:                    if (props.getProperty(propName) != null) {
086:                        LOG.warn("Overwriting already set property \""
087:                                + propName + "\" with value \""
088:                                + propValue.trim() + "\"!");
089:                    }
090:                    props.setProperty(propName, unesacpePropertyValue(propValue
091:                            .trim()));
092:                }
093:
094:                /* (non-Javadoc)
095:                 * @see org.apache.commons.digester.Rule#body(java.lang.String, java.lang.String, java.lang.String)
096:                 */
097:                public void body(String namespace, String name, String text)
098:                        throws Exception {
099:                    this .propValue += text;
100:                }
101:
102:            }
103:
104:            public static Properties loadPropertiesFromXMLFile(File file)
105:                    throws SAXException, IOException {
106:                Properties props = new Properties();
107:                loadPropertiesFromXMLFile(file, props);
108:                return props;
109:            }
110:
111:            public static Properties loadPropertiesFromXMLFile(FileResource file)
112:                    throws SAXException, IOException {
113:                Properties props = new Properties();
114:                loadPropertiesFromXMLFile(file, props);
115:                return props;
116:            }
117:
118:            public static void loadPropertiesFromXMLFile(FileResource file,
119:                    Properties props) throws SAXException, IOException {
120:                loadPropertiesFromXMLStream(file.getInputStream(), props);
121:            }
122:
123:            public static void loadPropertiesFromXMLFile(File file,
124:                    Properties props) throws SAXException, IOException {
125:                loadPropertiesFromXMLStream(new FileInputStream(file), props);
126:            }
127:
128:            public static void loadPropertiesFromXMLStream(InputStream input,
129:                    Properties props) throws SAXException, IOException {
130:                Digester digester = new Digester();
131:
132:                WithDefaultsRulesWrapper rules = new WithDefaultsRulesWrapper(
133:                        new RulesBase());
134:                rules.addDefault(new DefaultMatchRule());
135:                digester.setRules(rules);
136:                digester.setRuleNamespaceURI(PROPS_NS);
137:
138:                Rule propertyRule = new PropertyRule(props);
139:                Rule dummyRule = new Rule() {
140:                };
141:
142:                digester.addRule("standardprops", dummyRule);
143:                digester.addRule("standardprops/properties", dummyRule);
144:                digester.addRule("standardprops/properties/prop", propertyRule);
145:
146:                CustomizationHandler cushandler = new CustomizationHandler(
147:                        digester, PROPS_NS, CUS_NS,
148:                        new String[] { "/standardprops/properties" });
149:                SAXParser parser;
150:                try {
151:                    SAXParserFactory spfac = SAXParserFactory.newInstance();
152:                    spfac.setNamespaceAware(true);
153:                    parser = spfac.newSAXParser();
154:                    parser.parse(input, cushandler);
155:                } catch (ParserConfigurationException e) {
156:                    throw new RuntimeException(
157:                            "Could not initialize SAXParser!");
158:                }
159:            }
160:
161:            protected static String unesacpePropertyValue(String value) {
162:                StringBuffer newValue = new StringBuffer(value.length());
163:                char aChar;
164:                int off = 0;
165:                int end = value.length();
166:
167:                while (off < end) {
168:                    aChar = value.charAt(off++);
169:                    if (aChar == '\\') {
170:                        aChar = value.charAt(off++);
171:                        if (aChar == 'u') {
172:                            // Read the xxxx
173:                            int val = 0;
174:                            for (int i = 0; i < 4; i++) {
175:                                try {
176:                                    aChar = value.charAt(off++);
177:                                } catch (StringIndexOutOfBoundsException e) {
178:                                    throw new IllegalArgumentException(
179:                                            "Malformed \\uxxxx encoding.");
180:                                }
181:                                switch (aChar) {
182:                                case '0':
183:                                case '1':
184:                                case '2':
185:                                case '3':
186:                                case '4':
187:                                case '5':
188:                                case '6':
189:                                case '7':
190:                                case '8':
191:                                case '9':
192:                                    val = (val << 4) + aChar - '0';
193:                                    break;
194:                                case 'a':
195:                                case 'b':
196:                                case 'c':
197:                                case 'd':
198:                                case 'e':
199:                                case 'f':
200:                                    val = (val << 4) + 10 + aChar - 'a';
201:                                    break;
202:                                case 'A':
203:                                case 'B':
204:                                case 'C':
205:                                case 'D':
206:                                case 'E':
207:                                case 'F':
208:                                    val = (val << 4) + 10 + aChar - 'A';
209:                                    break;
210:                                default:
211:                                    throw new IllegalArgumentException(
212:                                            "Malformed \\uxxxx encoding.");
213:                                }
214:                            }
215:                            newValue.append((char) val);
216:                        } else {
217:                            if (aChar == 't')
218:                                aChar = '\t';
219:                            else if (aChar == 'r')
220:                                aChar = '\r';
221:                            else if (aChar == 'n')
222:                                aChar = '\n';
223:                            else if (aChar == 'f')
224:                                aChar = '\f';
225:                            newValue.append(aChar);
226:                        }
227:                    } else {
228:                        newValue.append(aChar);
229:                    }
230:                }
231:
232:                return newValue.toString();
233:            }
234:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.