Return-Path: Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: (qmail 88161 invoked from network); 7 Jun 2009 20:20:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Jun 2009 20:20:30 -0000 Received: (qmail 12795 invoked by uid 500); 7 Jun 2009 20:20:41 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 12673 invoked by uid 500); 7 Jun 2009 20:20:41 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 12654 invoked by uid 99); 7 Jun 2009 20:20:41 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Jun 2009 20:20:41 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Jun 2009 20:20:28 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 79A3B234C004 for ; Sun, 7 Jun 2009 13:20:07 -0700 (PDT) Message-ID: <1655497001.1244406007484.JavaMail.jira@brutus> Date: Sun, 7 Jun 2009 13:20:07 -0700 (PDT) From: "Mark Struberg (JIRA)" To: issues@commons.apache.org Subject: [jira] Updated: (LANG-508) Validate: add message parameter construction via elllipsis notation to speed up processing In-Reply-To: <1711795915.1244405647624.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LANG-508?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Struberg updated LANG-508: ------------------------------- Attachment: LANG-508.patch Patch which introduces new variants of all validate functions in the form of e.g. {noformat} public static void notNull(Object object, Object... msgObjects); {noformat} The commit is also available my github repo: http://github.com/struberg/commons-lang/commit/ed8515f63290eba6e38ff5b79772e87b27dde32b TBD: need to cleanup my JUnit tests, then I'll add those too soon > Validate: add message parameter construction via elllipsis notation to speed up processing > ------------------------------------------------------------------------------------------ > > Key: LANG-508 > URL: https://issues.apache.org/jira/browse/LANG-508 > Project: Commons Lang > Issue Type: Improvement > Affects Versions: 2.4 > Reporter: Mark Struberg > Fix For: 3.0 > > Attachments: LANG-508.patch > > > Currently passing verbose message strings to a log of commons.lang.Validate functions costs a lot of performance. > A typical usecase currently is: > {noformat} > Validate.isTrue (argInt1.intValue > argInt2.intValue, "param2 actually is " + argInt2 + " but must larger than param1 " + argInt1 +" !"); > {noformat} > So all the string operations get executed regardless if the validation fails or not. > This can be made perform much better by moving all the string operations inside the respective validation function and execute it only if the validation fails: > {noformat} > Validate.isTrue(argInt1.intValue > argInt2.intValue, "param2 actually is {1} but must larger than param1 {0} !", argInt1, argInt2); > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.