1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
package com.sun.star.script.framework.container;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import org.w3c.dom.CharacterData;
import org.w3c.dom.DOMException;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;
public class ParcelDescriptor {
// File name to be used for parcel descriptor files
public static final String
PARCEL_DESCRIPTOR_NAME = "parcel-descriptor.xml";
// This is the default contents of a parcel descriptor to be used when
// creating empty descriptors
private static final byte[] EMPTY_DOCUMENT =
("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
"<parcel xmlns:parcel=\"scripting.dtd\" language=\"Java\">\n" +
"</parcel>").getBytes();
private Document document = null;
private String language = null;
private final Map<String, String> languagedepprops = new HashMap<String, String>(3);
public ParcelDescriptor() throws IOException {
ByteArrayInputStream bis = null;
try {
bis = new ByteArrayInputStream(EMPTY_DOCUMENT);
this.document = XMLParserFactory.getParser().parse(bis);
} finally {
if (bis != null)
bis.close();
}
}
private ParcelDescriptor(Document document) {
this.document = document;
initLanguageProperties();
}
public ParcelDescriptor(InputStream is) throws IOException {
this(XMLParserFactory.getParser().parse(is));
}
public ParcelDescriptor(File file) throws IOException {
this(file, "Java");
}
private ParcelDescriptor(File file, String language) throws IOException {
if (file.exists()) {
FileInputStream fis = null;
try {
fis = new FileInputStream(file);
this.document = XMLParserFactory.getParser().parse(fis);
} finally {
if (fis != null)
fis.close();
}
} else {
ByteArrayInputStream bis = null;
try {
bis = new ByteArrayInputStream(EMPTY_DOCUMENT);
this.document = XMLParserFactory.getParser().parse(bis);
} finally {
if (bis != null)
bis.close();
}
setLanguage(language);
}
initLanguageProperties();
}
public void write(OutputStream out) throws IOException {
XMLParserFactory.getParser().write(document, out);
}
public Document getDocument() {
return document;
}
public String getLanguage() {
if (language == null && document != null) {
Element e = document.getDocumentElement();
language = e.getAttribute("language");
}
return language;
}
public void setLanguage(String language) {
this.language = language;
if (document != null) {
try {
Element e = document.getDocumentElement();
e.setAttribute("language", language);
} catch (DOMException de) {
}
}
}
public ScriptEntry[] getScriptEntries() {
ArrayList<ScriptEntry> scripts = new ArrayList<ScriptEntry>();
NodeList scriptNodes;
int len;
if (document == null ||
(scriptNodes = document.getElementsByTagName("script")) == null ||
(len = scriptNodes.getLength()) == 0)
return new ScriptEntry[0];
for (int i = 0; i < len; i++) {
String language, languagename, description = "";
Map<String, String> langProps = new HashMap<String, String>();
NodeList nl;
Element scriptElement = (Element)scriptNodes.item(i);
language = scriptElement.getAttribute("language");
// get the text of the description element
nl = scriptElement.getElementsByTagName("locale");
if (nl != null) {
nl = nl.item(0).getChildNodes();
if (nl != null) {
for (int j = 0 ; j < nl.getLength(); j++) {
if (nl.item(j).getNodeName().equals("description")) {
CharacterData cd =
(CharacterData)nl.item(j).getFirstChild();
description = cd.getData().trim();
}
}
}
}
nl = scriptElement.getElementsByTagName("functionname");
if (nl == null) {
languagename = "";
} else {
Element tmp = (Element)nl.item(0);
languagename = tmp.getAttribute("value");
}
nl = scriptElement.getElementsByTagName("languagedepprops");
if (nl != null && nl.getLength() > 0) {
NodeList props = ((Element)nl.item(0)).getElementsByTagName("prop");
if (props != null) {
for (int j = 0; j < props.getLength(); j++) {
Element tmp = (Element)props.item(j);
String key = tmp.getAttribute("name");
String val = tmp.getAttribute("value");
langProps.put(key, val);
}
}
}
ScriptEntry entry =
new ScriptEntry(language, languagename, langProps, description);
scripts.add(entry);
}
return scripts.toArray(new ScriptEntry[scripts.size()]);
}
public void setScriptEntries(ScriptEntry[] scripts) {
clearEntries();
for (ScriptEntry script : scripts) {
addScriptEntry(script);
}
}
public void setScriptEntries(Iterator<ScriptEntry> scripts) {
clearEntries();
while (scripts.hasNext()) {
addScriptEntry(scripts.next());
}
}
private String getLanguageProperty(String name) {
return languagedepprops.get(name);
}
private void initLanguageProperties() {
NodeList nl = document.getElementsByTagName("languagedepprops");
int len;
if (nl != null && (len = nl.getLength()) != 0) {
for (int i = 0; i < len; i++) {
Element e = (Element)nl.item(i);
NodeList nl2 = e.getElementsByTagName("prop");
int len2;
if (nl2 != null && (len2 = nl2.getLength()) != 0) {
for (int j = 0; j < len2; j++) {
Element e2 = (Element)nl2.item(j);
String name = e2.getAttribute("name");
String value = e2.getAttribute("value");
if (getLanguageProperty(name) == null) {
languagedepprops.put(name, value);
}
}
}
}
}
}
private void clearEntries() {
NodeList scriptNodes;
Element main = document.getDocumentElement();
int len;
if ((scriptNodes = document.getElementsByTagName("script")) != null &&
(len = scriptNodes.getLength()) != 0) {
for (int i = len - 1; i >= 0; i--) {
try {
main.removeChild(scriptNodes.item(i));
} catch (DOMException de) {
// ignore
}
}
}
}
public void removeScriptEntry(ScriptEntry script) {
NodeList scriptNodes;
Element main = document.getDocumentElement();
int len;
if ((scriptNodes = document.getElementsByTagName("script")) != null &&
(len = scriptNodes.getLength()) != 0) {
for (int i = len - 1; i >= 0; i--) {
try {
Element scriptElement = (Element)scriptNodes.item(i);
String languagename = "";
NodeList nl =
scriptElement.getElementsByTagName("functionname");
if (nl == null) {
continue;
} else {
Element tmp = (Element)nl.item(0);
languagename = tmp.getAttribute("value");
}
if (languagename.equals(script.getLanguageName())) {
main.removeChild(scriptElement);
}
} catch (DOMException de) {
// ignore
}
}
}
}
public void addScriptEntry(ScriptEntry script) {
Element main = document.getDocumentElement();
Element root, item, tempitem;
root = document.createElement("script");
root.setAttribute("language", script.getLanguage());
item = document.createElement("locale");
item.setAttribute("lang", "en");
tempitem = document.createElement("displayname");
tempitem.setAttribute("value", script.getLogicalName());
item.appendChild(tempitem);
tempitem = document.createElement("description");
String description = script.getDescription();
if (description == null || description.length() == 0) {
description = script.getLogicalName();
}
tempitem.appendChild(document.createTextNode(description));
item.appendChild(tempitem);
root.appendChild(item);
item = document.createElement("logicalname");
item.setAttribute("value", script.getLogicalName());
root.appendChild(item);
item = document.createElement("functionname");
item.setAttribute("value", script.getLanguageName());
root.appendChild(item);
if (languagedepprops != null && !languagedepprops.isEmpty()) {
String key;
item = document.createElement("languagedepprops");
for (Map.Entry<String, String> entry : languagedepprops.entrySet()) {
tempitem = document.createElement("prop");
tempitem.setAttribute("name", entry.getKey());
tempitem.setAttribute("value", entry.getValue());
item.appendChild(tempitem);
}
root.appendChild(item);
}
//add to the Top Element
main.appendChild(root);
}
}
|