/jEdit/tags/jedit-4-3-pre15/org/gjt/sp/jedit/pluginmgr/PluginListHandler.java

# · Java · 277 lines · 207 code · 31 blank · 39 comment · 61 complexity · 124f8bc1297aae98758a78c8c66c95bb MD5 · raw file

  1. /*
  2. * PluginListHandler.java - XML handler for the plugin list
  3. * Copyright (C) 2001 Slava Pestov
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. package org.gjt.sp.jedit.pluginmgr;
  20. //{{{ Imports
  21. import java.util.Stack;
  22. import org.xml.sax.Attributes;
  23. import org.xml.sax.InputSource;
  24. import org.xml.sax.helpers.DefaultHandler;
  25. import org.gjt.sp.util.Log;
  26. import org.gjt.sp.util.XMLUtilities;
  27. //}}}
  28. /**
  29. * @version $Id: PluginListHandler.java 12504 2008-04-22 23:12:43Z ezust $
  30. */
  31. class PluginListHandler extends DefaultHandler
  32. {
  33. //{{{ PluginListHandler constructor
  34. PluginListHandler(PluginList pluginList, String path)
  35. {
  36. this.pluginList = pluginList;
  37. this.path = path;
  38. author = new StringBuilder();
  39. description = new StringBuilder();
  40. pluginSetEntry = new StringBuilder();
  41. download = new StringBuilder();
  42. downloadSource = new StringBuilder();
  43. } //}}}
  44. //{{{ resolveEntity() method
  45. public InputSource resolveEntity(String publicId, String systemId)
  46. {
  47. return XMLUtilities.findEntity(systemId, "plugins.dtd", getClass());
  48. } //}}}
  49. //{{{ attribute() method
  50. public void attribute(String aname, String value, boolean isSpecified)
  51. {
  52. if(aname == "NAME")
  53. name = value;
  54. else if(aname == "JAR")
  55. jar = value;
  56. else if(aname == "VERSION")
  57. version = value;
  58. else if(aname == "DATE")
  59. date = value;
  60. else if(aname == "OBSOLETE")
  61. obsolete = ("TRUE".equals(value));
  62. else if(aname == "WHAT")
  63. depWhat = value;
  64. else if(aname == "FROM")
  65. depFrom = value;
  66. else if(aname == "TO")
  67. depTo = value;
  68. else if(aname == "PLUGIN")
  69. depPlugin = value;
  70. else if(aname == "SIZE")
  71. {
  72. size = Integer.parseInt(value);
  73. if(size == 0)
  74. Log.log(Log.WARNING,this,"SIZE = 0");
  75. }
  76. } //}}}
  77. //{{{ characters() method
  78. public void characters(char[] c, int off, int len)
  79. {
  80. String tag = peekElement();
  81. if(tag.equals("DESCRIPTION"))
  82. {
  83. description.append(c, off, len);
  84. }
  85. else if(tag.equals("PLUGIN_SET_ENTRY"))
  86. pluginSetEntry.append(c, off, len);
  87. else if(tag.equals("AUTHOR"))
  88. {
  89. if(author.length() != 0)
  90. author.append(", ");
  91. author.append(c, off, len);
  92. }
  93. else if(tag.equals("DOWNLOAD"))
  94. download.append(c, off, len);
  95. else if(tag.equals("DOWNLOAD_SOURCE"))
  96. downloadSource.append(c, off, len);
  97. } //}}}
  98. //{{{ startElement() method
  99. public void startElement(String uri, String localName,
  100. String tag, Attributes attrs)
  101. {
  102. for (int i = 0; i < attrs.getLength(); i++)
  103. {
  104. String aName = attrs.getQName(i);
  105. String aValue = attrs.getValue(i);
  106. attribute(aName, aValue, true);
  107. }
  108. tag = pushElement(tag);
  109. if(tag.equals("PLUGIN_SET"))
  110. {
  111. description.setLength(0);
  112. pluginSet = new PluginList.PluginSet();
  113. pluginSet.name = name;
  114. }
  115. else if(tag.equals("PLUGIN"))
  116. {
  117. description.setLength(0);
  118. author.setLength(0);
  119. branch = null;
  120. plugin = new PluginList.Plugin();
  121. }
  122. else if(tag.equals("BRANCH"))
  123. {
  124. download.setLength(0);
  125. branch = new PluginList.Branch();
  126. }
  127. else if(tag.equals("DOWNLOAD"))
  128. downloadSize = size;
  129. else if(tag.equals("DOWNLOAD_SOURCE"))
  130. downloadSourceSize = size;
  131. } //}}}
  132. //{{{ endElement() method
  133. public void endElement(String uri, String localName, String tag)
  134. {
  135. popElement();
  136. if(tag.equals("PLUGIN_SET"))
  137. {
  138. pluginList.addPluginSet(pluginSet);
  139. pluginSet = null;
  140. pluginSetEntry.setLength(0);
  141. }
  142. else if(tag.equals("PLUGIN_SET_ENTRY"))
  143. {
  144. pluginSet.plugins.add(pluginSetEntry.toString());
  145. pluginSetEntry.setLength(0);
  146. }
  147. else if(tag.equals("PLUGIN"))
  148. {
  149. plugin.jar = jar;
  150. plugin.name = name;
  151. plugin.author = author.toString();
  152. plugin.description = description.toString();
  153. pluginList.addPlugin(plugin);
  154. jar = null;
  155. name = null;
  156. author.setLength(0);
  157. description.setLength(0);
  158. }
  159. else if(tag.equals("BRANCH"))
  160. {
  161. branch.version = version;
  162. branch.date = date;
  163. branch.download = download.toString();
  164. branch.downloadSize = downloadSize;
  165. branch.downloadSource = downloadSource.toString();
  166. branch.downloadSourceSize = downloadSourceSize;
  167. branch.obsolete = obsolete;
  168. plugin.branches.add(branch);
  169. version = null;
  170. download.setLength(0);
  171. downloadSource.setLength(0);
  172. obsolete = false;
  173. }
  174. else if(tag.equals("DEPEND"))
  175. {
  176. PluginList.Dependency dep = new PluginList.Dependency(
  177. depWhat,depFrom,depTo,depPlugin);
  178. branch.deps.add(dep);
  179. depWhat = null;
  180. depFrom = null;
  181. depTo = null;
  182. depPlugin = null;
  183. }
  184. } //}}}
  185. //{{{ startDocument() method
  186. public void startDocument()
  187. {
  188. try
  189. {
  190. pushElement(null);
  191. }
  192. catch (Exception e)
  193. {
  194. Log.log(Log.ERROR, this, e);
  195. }
  196. } //}}}
  197. //{{{ endDocument() method
  198. public void endDocument()
  199. {
  200. pluginList.finished();
  201. } //}}}
  202. // end HandlerBase implementation
  203. //{{{ private members
  204. //{{{ Instance variables
  205. private final String path;
  206. private final PluginList pluginList;
  207. private PluginList.PluginSet pluginSet;
  208. private final StringBuilder pluginSetEntry;
  209. private PluginList.Plugin plugin;
  210. private String jar;
  211. private StringBuilder author;
  212. private PluginList.Branch branch;
  213. private boolean obsolete;
  214. private String version;
  215. private String date;
  216. private StringBuilder download;
  217. private int downloadSize;
  218. private StringBuilder downloadSource;
  219. private int downloadSourceSize;
  220. private int size;
  221. private String depWhat;
  222. private String depFrom;
  223. private String depTo;
  224. private String depPlugin;
  225. private String name;
  226. private StringBuilder description;
  227. private final Stack<String> stateStack = new Stack<String>();
  228. //}}}
  229. //{{{ pushElement() method
  230. private String pushElement(String name)
  231. {
  232. stateStack.push(name);
  233. return name;
  234. } //}}}
  235. //{{{ peekElement() method
  236. private String peekElement()
  237. {
  238. return stateStack.peek();
  239. } //}}}
  240. //{{{ popElement() method
  241. private String popElement()
  242. {
  243. return stateStack.pop();
  244. } //}}}
  245. //}}}
  246. }