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 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
|
/*
* Create_plugin_release_text.bsh - a BeanShell macro script for the
* jEdit text editor - Parses a plugin's properties file to create the
* text for a plugin submission
* Copyright ( C ) 2006 Jeffrey Hoyt
* jchoyt@jedit.org
* Eric Berry <elberry@users.sourceforge.net> (version checking 2010)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
// import statements
import javax.swing.border.*;
import org.gjt.sp.util.Log;
import java.util.Comparator;
public class PluginDependency
{
public String className;
public String simpleName;
public String version;
public PluginDependency(String cn, String v)
{
className = cn;
version = v;
simpleName = jEdit.getProperty("plugin." + cn + ".name");
if(simpleName != null)
{
simpleName = simpleName.trim();
}
if(simpleName == null || simpleName.length() <= 0)
{
int lastDotIndex = cn.lastIndexOf(".");
simpleName = cn.substring(lastDotIndex + 1);
}
Log.log(Log.DEBUG, this, "new PluginDependency class: " + className + " | name: " + simpleName + " | version: " + version);
}
}
public class PluginDependencyNameComparator implements Comparator
{
public int compare(Object o1, Object o2)
{
PluginDependency pd1 = (PluginDependency)o1;
PluginDependency pd2 = (PluginDependency)o2;
return pd1.simpleName.compareTo(pd2.simpleName);
}
}
// main routine
void pluginTextDialog( View view, Buffer buffer )
{
this.view = view;
this.buffer=buffer;
File propsFile = new File( buffer.getPath() );
Properties props = new Properties();
InputStream in = new FileInputStream( propsFile );
try
{
props.load( in );
}
finally
{
in.close();
}
//setup the strings we are interested in and can get from the props file
String fileName = propsFile.getName();
String pluginName = fileName.substring( 0, fileName.indexOf( '.' ) );
String version = null;
String jEditDependency = null;
String javaDependency = null;
String activate = null;
ArrayList pluginDependencies = new ArrayList();
ArrayList optionalPluginDependencies = new ArrayList();
String announcement, shortDescription, source;
String longDescription="";
String classname=null;
String longDescriptionFileName=null;
//extract the properties we care about
String start = "plugin.";
for ( Enumeration e = props.keys(); e.hasMoreElements() ; )
{
String key = ( String ) e.nextElement();
// Log.log( Log.DEBUG, this, "Parsing key: " + key );
if( key.startsWith( start ) )
{
if( key.endsWith( ".activate" ) )
{
activate = props.getProperty( key );
}
else if( key.endsWith( ".version" ) )
{
version = props.getProperty( key );
}
else if( key.indexOf( ".depend." ) != -1 )
{
String value = props.getProperty( key ).trim();
String[] parts = value.split( " " );
if( parts.length < 2 )
{
Macros.error( view, "Badly constructed dependency ( " + value + " ). All dependencies must have at least 2 parts" );
}
if( parts[0].equals( "jedit" ) )
{
jEditDependency = parts[1];
}
else if( parts[0].equals( "jdk" ) )
{
javaDependency = parts[1];
}
else if( parts[0].equals( "plugin" ) )
{
Log.log(Log.DEBUG, this, "required plugin name - class: " + parts[1] + " | name: " + jEdit.getProperty("plugin." + parts[1] + ".name"));
pluginDependencies.add(new PluginDependency(parts[1], parts[2]));
}
else if( parts[0].equals( "optional" ) && parts[1].equals( "plugin" ) )
{
Log.log(Log.DEBUG, this, "optional plugin name - class: " + parts[2] + " | name: " + jEdit.getProperty("plugin." + parts[2] + ".name"));
optionalPluginDependencies.add(new PluginDependency(parts[2], parts[3]));
}
else
{
Macros.error( view, "Unexpected dependency ( " + value + " ). See the javadoc of org.gjt.sp.jedit.EditPlugin" );
}
}
else if(key.endsWith(".longdescription") )
{
longDescriptionFileName = props.getProperty( key );
}
else if(key.endsWith(".description") )
{
shortDescription = props.getProperty( key );
}
else if(key.endsWith(".name") )
{
if (props.getProperty( key ).equals(pluginName))
{
classname = key.substring( start.length(), key.length() - 5 );
// Macros.error( view, "Classname is " + classname );
}
}
}
}
// Macros.error( view, "Parsing complete" );
if( javaDependency==null )
{
Macros.error( view, "You must supply a JDK dependency. Please add it and rerun the macro." );
return;
}
if( jEditDependency==null )
{
Macros.error( view, "You must supply a jEdit dependency. Please add it and rerun the macro." );
return;
}
if( shortDescription==null )
{
Macros.error( view, "You must supply a short description in the plugin." + classname + ".description property. Please add it and rerun the macro." );
return;
}
if( longDescriptionFileName==null )
{
longDescriptionFileName = "description.html";
// Macros.error(view, "setting default long description file");
}
//load the long description
File descriptionFile = new File( new File(buffer.getPath()).getParent(), longDescriptionFileName );
if(!descriptionFile.exists())
{
Macros.error( view, "You must supply a long description in a file located at " + descriptionFile.getPath() + ". Please create it and rerun the macro." );
return;
}
BufferedReader reader = new BufferedReader( new FileReader( descriptionFile ) );
try
{
String line;
while( (line = reader.readLine())!=null )
{
longDescription = longDescription + line + "\n";
}
}
finally
{
reader.close();
}
// create dialog object and set its features
title = "Create Plugin Announcement";
dialog = new JDialog( view, title, false );
content = new JPanel( new BorderLayout() );
content.setBorder( new EmptyBorder( 12, 12, 12, 12 ) );
dialog.setContentPane( content );
// add to the dialog a panel containing the text fields for
// entry of the prefix and suffix text
propsPanel = new JPanel( new GridLayout( 5 + pluginDependencies.size() + optionalPluginDependencies.size() , 2, 2, 6 ) );
propsPanel.add( new JLabel( "Plugin name" ) );
propsPanel.add( new JLabel( pluginName ) );
propsPanel.add( new JLabel( "Plugin version" ) );
propsPanel.add( new JLabel( version ) );
propsPanel.add( new JLabel( "Activates" ) );
propsPanel.add( new JLabel( activate ) );
propsPanel.add( new JLabel( "jEdit Dependency" ) );
propsPanel.add( new JLabel( jEditDependency ) );
propsPanel.add( new JLabel( "JDK Dependency" ) );
propsPanel.add( new JLabel( javaDependency ) );
PluginDependencyNameComparator comparator = new PluginDependencyNameComparator();
Collections.sort(pluginDependencies, comparator);
Collections.sort(optionalPluginDependencies, comparator);
for( int i=0; i<pluginDependencies.size(); i++ )
{
propsPanel.add( new JLabel( "Depends on" ) );
PluginDependency requiredPlugin = pluginDependencies.get( i );
propsPanel.add( new JLabel( requiredPlugin.simpleName + " " + requiredPlugin.version ) );
}
for( int i=0; i<optionalPluginDependencies.size(); i++ )
{
propsPanel.add( new JLabel( "Optional" ) );
PluginDependency optionalPlugin = optionalPluginDependencies.get( i );
propsPanel.add( new JLabel( optionalPlugin.simpleName + " " + optionalPlugin.version ) );
}
content.add( propsPanel, "Center" );
//add areas for source location, Announcement, Short Description, and Long Description
descriptionPanel = new JPanel();
descriptionPanel.setLayout( new BoxLayout( descriptionPanel, BoxLayout.Y_AXIS ) );
descriptionPanel.setBorder(new EmptyBorder(12, 5, 0, 5));
descriptionPanel.add( new JLabel( "Source Code Location (SVN and tag, or URL): " ) );
sourceArea = new JEditorPane();
sourceArea.setText("Source code is in SVN with the tag XXXX (no SVN release numbers, please)");
sourceArea.setPreferredSize( new Dimension( 250, 36 ) );
descriptionPanel.add( new JScrollPane( sourceArea ) );
descriptionPanel.add( new JLabel( "Announcement: " ) );
announcementArea = new JEditorPane();
announcementArea.setPreferredSize( new Dimension( 250, 120 ) );
descriptionPanel.add( new JScrollPane( announcementArea ) );
descriptionPanel.add( new JLabel( "Short Description ( for new plugins or updated descriptions only ): " ) );
shortDescriptionArea = new JEditorPane("text/plain", shortDescription);
shortDescriptionArea.disable();
shortDescriptionArea.setPreferredSize( new Dimension( 250, 72 ) );
descriptionPanel.add( new JScrollPane( shortDescriptionArea ) );
descriptionPanel.add( new JLabel( "Long Description ( for new plugins or updated descriptions only ): " ) );
longDescriptionArea = new JEditorPane("text/plain", longDescription);
longDescriptionArea.disable();
longDescriptionArea.setPreferredSize( new Dimension( 250, 120 ) );
descriptionPanel.add( new JScrollPane( longDescriptionArea ) );
//add buttons to description panel
buttonPanel = new JPanel();
buttonPanel.setLayout( new BoxLayout( buttonPanel, BoxLayout.X_AXIS ) );
ok = new JButton( "Create Announcement" );
buttonPanel.add( ok );
cancel = new JButton( "Cancel" );
buttonPanel.add( cancel );
descriptionPanel.add( buttonPanel );
content.add( descriptionPanel, "South" );
// register this method as an ActionListener for
// the buttons and text fields
ok.addActionListener( this );
cancel.addActionListener( this );
// locate the dialog in the center of the
// editing pane and make it visible
dialog.pack();
dialog.setLocationRelativeTo( view );
dialog.setDefaultCloseOperation( JDialog.DISPOSE_ON_CLOSE );
dialog.setVisible( true );
// this method will be called when a button is clicked
// or when ENTER is pressed
void actionPerformed( e )
{
if( e.getSource() != cancel )
{
if(validateVersions()) {
createAnnouncement();
}
}
dialog.dispose();
}
void createAnnouncement()
{
announcement = announcementArea.getText();
shortDescription = shortDescriptionArea.getText();
longDescription = longDescriptionArea.getText();
source = sourceArea.getText();
StringBuffer ret = new StringBuffer();
ret.append( "Paste the text below into the Plugin Central Submission Tracker at https://sourceforge.net/tracker/?group_id=588&atid=625093\n" );
ret.append( "\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" );
ret.append( "\n{{{ " );
ret.append( pluginName );
ret.append( " " );
ret.append( version );
ret.append( "\n Source: " );
ret.append( source );
ret.append( "\n Announcement: " + announcement.replaceAll("\n", "\n " ) );
ret.append( "\n Requires Java " );
ret.append( javaDependency );
ret.append( "\n Requires jEdit " );
ret.append( jEditDependency );
if( pluginDependencies.size() > 0 )
{
ret.append( "\n Required plugins: " );
for( int i=0; i<pluginDependencies.size(); i++ )
{
ret.append( "\n " );
PluginDependency plugin = pluginDependencies.get( i );
ret.append( plugin.simpleName + " " + plugin.version + " (" + plugin.className + ")" );
}
}
if( optionalPluginDependencies.size() > 0 )
{
ret.append( "\n Optional plugins: " );
for( int i=0; i<optionalPluginDependencies.size(); i++ )
{
ret.append( "\n " );
PluginDependency plugin = optionalPluginDependencies.get( i );
ret.append( plugin.simpleName + " " + plugin.version + " (" + plugin.className + ")" );
}
}
if( shortDescription!=null && !shortDescription.equals( "" ) )
{
ret.append( "\n \n Short Description: " + shortDescription );
}
if( longDescription!=null && !longDescription.equals( "" ) )
{
ret.append( "\n \n Long Description: " + longDescription );
}
ret.append( " }}}" );
newbuf = jEdit.newFile( view );
newbuf.insert( 0, ret.toString() );
}
boolean pluginIsNotInstalled(PluginDependency dependency, String installed) {
if(installed != null) {
installed = installed.trim();
if(!installed.equals(dependency.version))
{
return true;
}
} else {
return true;
}
return false;
}
boolean validateVersions()
{
boolean valid = true;
StringBuilder builder = new StringBuilder();
builder.append(
"There are some inconsistencies in your plugin's requirements. The\n" +
"version numbers below don't match what you are working with in\n" +
"your installation of jEdit.\n\n");
// check jEdit dependency against running build.
String build = jEdit.getBuild();
if(!build.equals(jEditDependency))
{
valid = false;
builder.append(" jEdit - Required: " + jEditDependency + " - Running: " + build + "\n");
}
// check required plugin dependencies.
for( int i = 0; i < pluginDependencies.size(); i++ )
{
PluginDependency plugin = pluginDependencies.get(i);
String installed = jEdit.getProperty("plugin." + plugin.className + ".version");
if(pluginIsNotInstalled(plugin, installed)) {
valid = false;
builder.append(" " + plugin.simpleName + " - Required: " + plugin.version + " - Running: " + installed + "\n");
}
}
// check optional plugin dependencies.
for( int i = 0; i < optionalPluginDependencies.size(); i++ )
{
PluginDependency plugin = optionalPluginDependencies.get(i);
String installed = jEdit.getProperty("plugin." + plugin.className + ".version");
if(pluginIsNotInstalled(plugin, installed)) {
valid = false;
builder.append(" " + plugin.simpleName + " - Optional: " + plugin.version + " - Running: " + installed + "\n");
}
}
if(!valid)
{
builder.append("\n\n" +
"Note that your plugin will be tested against the latest released\n" +
"versions of jEdit and your plugin's dependencies before it is\n" +
"released.\n\n" +
"Do you want to continue creating this announcement, or would you\n" +
"like to cancel it, and update the version numbers?\n\n" +
" \"Yes\" to create announcement as is.\n" +
" \"No\" to cancel and update props.");
int choice = JOptionPane.showConfirmDialog(
view,
builder.toString(),
"Versions don't match",
JOptionPane.YES_NO_OPTION,
JOptionPane.WARNING_MESSAGE);
// if user's chosen yes, then announcement is created.
valid = (choice == JOptionPane.YES_OPTION);
}
return valid;
}
}
// this single line of code is the script's main routine
// it calls the methods and exits
if( buffer.getMode().toString().equals( "properties" ) )
pluginTextDialog( view, buffer );
else
Macros.error( view, "This must be run on a jEdit plugin's properties file. \nOpen your Plugin's props file and rerun this macro." );
// ::mode=beanshell:noTabs=true:tabSize=4:indentSize=4::
|