Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
Hudson-ci/Planning/Library Cleanup
Hudson Continuous Integration Server | |
Website | |
Download | |
Community | |
Mailing List • Forums • IRC • mattermost | |
Issues | |
Open • Help Wanted • Bug Day | |
Contribute | |
Browse Source |
![]() |
Library Cleanup Project |
---|
Contents
Introduction
One of the major problems with the original Hudson code-base was the use of several of forked / patched 3rd party libraries. It's in no-one's interest to have to maintain separate code-bases in these cases and so we need to look at contributing any patches back to the original projects and removing the dependency on the patched versions This page tracks the libraries that we need to concentrate on as part of this process
JavaBeans Activation Framework
Hudson uses a patched version of activation.jar derived from git://github.com/kohsuke/javax.activation.git
The home of the base project version compared below is now the GlassFish Project: https://svn.java.net/svn/glassfish~svn/trunk/external/modules/activation
Tracking
This project is related to CQ: 5774
This project is tracked by BugZilla: 364988
JAF Diffs
By package / source file:
Strikethrough indicates no significant diffs apart from comments / copyright. Bold used to indicate simple code change within a statement.
DataContentHandler.java
Package | Class | Diff | Function | Origional (1.1 JAF) | Hudson |
com.sun. activation. registries |
|
||||
MailcapFile.java | 1 | public String[] getNativeCommands( String mime_type) | List v = (List)native_commands.get( mime_type.toLowerCase()); |
List v = (List)native_commands.get( mime_type.toLowerCase(Locale.ENGLISH)); | |
2 | protected void parseLine(String mailcapEntry) | String primaryType = tokenizer.getCurrentTokenValue().toLowerCase(); | String primaryType = tokenizer.getCurrentTokenValue().toLowerCase(Locale.ENGLISH); | ||
3 | subType = tokenizer.getCurrentTokenValue().toLowerCase(); | subType = tokenizer.getCurrentTokenValue().toLowerCase(Locale.ENGLISH); | |||
String paramName = tokenizer.getCurrentTokenValue().toLowerCase(); |
String paramName = tokenizer.getCurrentTokenValue(). toLowerCase(Locale.ENGLISH); | ||||
.java |
|||||
MailcapTokenizer.java | 1 | public void setAutoquoteChar(char value) | |
Function Not Present | |
2 | public int nextToken() | if (isAutoquoting) { if (!isAutoquoteSpecialChar(c)) { processAutoquoteToken(); } else if ((c == ';') || (c == '=')) { currentToken = c; currentTokenValue = new Character(c).toString(); ++dataIndex; } else { currentToken = UNKNOWN_TOKEN; currentTokenValue = new Character(c).toString(); ++dataIndex; } |
if (isAutoquoting) { if (c == ';' || c == '=') { currentToken = c; currentTokenValue = new Character(c).toString(); ++dataIndex; } else { processAutoquoteToken(); } | ||
3 | public static boolean isAutoquoteSpecialChar( char c) | Function Not Present | |||
|
|||||
|
|||||
com.sun. |
|
||||
|
|||||
TextEditor.java | 1 | public void setInputStream (InputStream ins) |
// make sure we got one if(fos == null) { System.out.println("Invalid outputstream in TextEditor!"); System.out.println("not saving!"); } |
// make sure we got one if(fos == null) { System.out.println("Invalid outputstream in TextEditor!"); System.out.println("not saving!"); return; } | |
|
|||||
javax. activation |
ActivationDataFlavor.java | 1 | public boolean isMimeTypeEqual(String mimeType) | } catch (MimeTypeParseException e) {} | } catch (MimeTypeParseException e) { // something didn't parse, do a crude comparison return this.mimeType.equalsIgnoreCase(mimeType); } |
|
|||||
|
|||||
|
|||||
|
|||||
.java |
|||||
DataHandler.java | 1 | public DataFlavor[] getTransferDataFlavors() | public DataFlavor[] getTransferDataFlavors() | public synchronized DataFlavor[] getTransferDataFlavors() | |
2 | Object getTransferData( DataFlavor df, DataSource ds) | else if (df.equals(transferFlavors[0])) // only have one now | else if (df.equals(getTransferDataFlavors()[0])) // only have one now | ||
3 | public void writeTo(Object obj, String mimeType, OutputStream os) | if (dch != null) dch.writeTo(obj, mimeType, os); else throw new UnsupportedDataTypeException( |
if (dch != null) dch.writeTo(obj, mimeType, os); else if (obj instanceof byte[]) os.write((byte[])obj); else if (obj instanceof String) { OutputStreamWriter osw = new OutputStreamWriter(os); osw.write((String)obj); osw.flush(); } else throw new UnsupportedDataTypeException( | ||
|
|||||
|
|||||
|
|||||
MailcapCommandMap .java |
1 | public synchronized CommandInfo[] getPreferredCommands (String mimeType) | mimeType = mimeType.toLowerCase(); | mimeType = mimeType.toLowerCase(Locale.ENGLISH); | |
2 | public synchronized CommandInfo[] getAllCommands(String mimeType) | mimeType = mimeType.toLowerCase(); | mimeType = mimeType.toLowerCase(Locale.ENGLISH); | ||
3 | public synchronized DataContentHandler createDataContentHandler (String mimeType) |
mimeType = mimeType.toLowerCase(); | mimeType = mimeType.toLowerCase(Locale.ENGLISH); | ||
4 | public synchronized String[] getNativeCommands(String mimeType) | mimeType = mimeType.toLowerCase(); | mimeType = mimeType.toLowerCase(Locale.ENGLISH); | ||
MimeType.java | 1 | public MimeType(String primary, String sub) | primaryType = primary.toLowerCase(); | primaryType = primary.toLowerCase(Locale.ENGLISH); | |
2 | public MimeType(String primary, String sub) | subType= sub.toLowerCase(); | subType= sub.toLowerCase(Locale.ENGLISH); | ||
3 | private void parse(String rawdata) | primaryType = rawdata.substring(0, slashIndex).trim().toLowerCase(); | primaryType = rawdata.substring(0, slashIndex).trim().toLowerCase(Locale.ENGLISH); | ||
4 | private void parse(String rawdata) | subType = rawdata.substring(slashIndex + 1).trim().toLowerCase(); | subType = rawdata.substring(slashIndex + 1).trim().toLowerCase(Locale.ENGLISH); | ||
5 | private void parse(String rawdata) | primaryType = rawdata.substring(0, slashIndex).trim().toLowerCase(); | primaryType = rawdata.substring(0, slashIndex).trim().toLowerCase(Locale.ENGLISH); | ||
6 | private void parse(String rawdata) | subType = rawdata.substring(slashIndex + 1,semIndex).trim().toLowerCase(); | subType = rawdata.substring(slashIndex + 1,semIndex).trim().toLowerCase(Locale.ENGLISH); | ||
7 | public void setPrimaryType(String primary) | primaryType = primary.toLowerCase(); | primaryType = primary.toLowerCase(Locale.ENGLISH); | ||
8 | public void setSubType( String sub) | subType = sub.toLowerCase(); | subType = sub.toLowerCase(Locale.ENGLISH); | ||
MimeTypeParameterList .java |
1 | protected void parse(String parameterList) | name = parameterList.substring(lastIndex, i).toLowerCase(); | name = parameterList.substring(lastIndex, i).toLowerCase(Locale.ENGLISH); | |
2 | public String get(String name) | return (String)parameters.get(name.trim().toLowerCase()); | return (String)parameters.get(name.trim().toLowerCase(Locale.ENGLISH)); | ||
3 | public void set(String name, String value) | parameters.put(name.trim().toLowerCase(), value); | parameters.put(name.trim().toLowerCase(Locale.ENGLISH), value); | ||
4 | public void remove(String name) | parameters.remove(name.trim().toLowerCase()); | parameters.remove(name.trim().toLowerCase(Locale.ENGLISH)); | ||
.java |
|||||
.java |
|||||
.java |
|||||
Exception.java |
|||||
|
Xstream XML Parser
Husdon uses a patched version of xstream:
The home of the base project is on Codehaus: http://svn.codehaus.org/xstream/trunk/
Tracking
This project is related to CQ: 5771
This project is tracked by BugZilla:
Diffs
The issues tracking the diffs on Codehaus are: