-
-
Notifications
You must be signed in to change notification settings - Fork 9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[JENKINS-35098] Disable AutoBrowserHolder by default to improve the changelog rendering performance #2371
[JENKINS-35098] Disable AutoBrowserHolder by default to improve the changelog rendering performance #2371
Changes from 1 commit
9928750
0195542
0c6a801
eda2f54
77798a6
1a0ee41
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/* | ||
* The MIT License | ||
* | ||
* Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
package hudson.scm; | ||
|
||
import hudson.model.AbstractProject; | ||
import jenkins.model.Jenkins; | ||
|
||
/** | ||
* Maintains the automatically inferred {@link RepositoryBrowser} instance. | ||
* | ||
* <p> | ||
* To reduce the user's work, Hudson tries to infer applicable {@link RepositoryBrowser} | ||
* from configurations of other jobs. But this needs caution — for example, | ||
* such inferred {@link RepositoryBrowser} must be recalculated whenever | ||
* a job configuration changes somewhere. | ||
* | ||
* <p> | ||
* This class makes such tracking easy by hiding this logic. | ||
* @deprecated Disabled by default: JENKINS-35098 | ||
*/ | ||
@Deprecated | ||
final class AutoBrowserHolder { | ||
private int cacheGeneration; | ||
private RepositoryBrowser cache; | ||
private SCM owner; | ||
|
||
public AutoBrowserHolder(SCM owner) { | ||
this.owner = owner; | ||
} | ||
|
||
public RepositoryBrowser get() { | ||
if (cacheGeneration == -1) { | ||
return cache; | ||
} | ||
SCMDescriptor<?> d = owner.getDescriptor(); | ||
RepositoryBrowser<?> dflt = owner.guessBrowser(); | ||
if (dflt != null) { | ||
cache = dflt; | ||
cacheGeneration = -1; | ||
return cache; | ||
} | ||
int g = d.generation; | ||
if(g!=cacheGeneration) { | ||
cacheGeneration = g; | ||
cache = infer(); | ||
} | ||
return cache; | ||
} | ||
|
||
/** | ||
* Picks up a {@link RepositoryBrowser} that matches the | ||
* given {@link SCM} from existing other jobs. | ||
* | ||
* @return | ||
* null if no applicable configuration was found. | ||
*/ | ||
private RepositoryBrowser infer() { | ||
for( AbstractProject p : Jenkins.getInstance().getAllItems(AbstractProject.class) ) { | ||
SCM scm = p.getScm(); | ||
if (scm!=null && scm.getClass()==owner.getClass() && scm.getBrowser()!=null && | ||
((SCMDescriptor)scm.getDescriptor()).isBrowserReusable(scm,owner)) { | ||
return scm.getBrowser(); | ||
} | ||
} | ||
return null; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,9 +38,7 @@ | |
* List of all installed SCMs. | ||
* | ||
* @author Kohsuke Kawaguchi | ||
* @deprecated No longer contains anything nondeprecated. | ||
*/ | ||
@Deprecated | ||
public class SCMS { | ||
/** | ||
* List of all installed SCMs. | ||
|
@@ -55,16 +53,12 @@ public class SCMS { | |
* | ||
* @param target | ||
* The project for which this SCM is configured to. | ||
* @deprecated Suffices to use {@link StaplerRequest#bindJSON(java.lang.Class, net.sf.json.JSONObject)} | ||
*/ | ||
@Deprecated | ||
@SuppressWarnings("deprecation") | ||
public static SCM parseSCM(StaplerRequest req, AbstractProject target) throws FormException, ServletException { | ||
String scm = req.getParameter("scm"); | ||
if(scm==null) return new NullSCM(); | ||
|
||
int scmidx = Integer.parseInt(scm); | ||
SCMDescriptor<?> d = SCM._for(target).get(scmidx); | ||
return d.newInstance(req, req.getSubmittedForm().getJSONObject("scm")); | ||
SCM scm = req.bindJSON(SCM.class, req.getSubmittedForm().getJSONObject("scm")); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @oleg-nenashev @jglick Could this have caused JENKINS-35906? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably. No longer calling There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Possibly could use |
||
scm.getDescriptor().generation++; | ||
return scm; | ||
} | ||
|
||
/** | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use SystemProperties.getBoolean() (new API in 2.4)