From: Robin Rosenberg <robin.rosenberg.lists@dewire.com>
To: "Shawn O. Pearce" <spearce@spearce.org>
Cc: Johannes Schindelin <Johannes.Schindelin@gmx.de>, git@vger.kernel.org
Subject: Re: [JGIT PATCH 1/6] Add set to IntList
Date: Sun, 3 May 2009 09:07:01 +0200 [thread overview]
Message-ID: <200905030907.02287.robin.rosenberg.lists@dewire.com> (raw)
In-Reply-To: <1241230127-28279-2-git-send-email-spearce@spearce.org>
lördag 02 maj 2009 04:08:42 skrev "Shawn O. Pearce" <spearce@spearce.org>:
> Some applications may wish to modify an int list.
>
> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
> ---
> .../tst/org/spearce/jgit/util/IntListTest.java | 21 ++++++++++++++++++++
> .../src/org/spearce/jgit/util/IntList.java | 17 ++++++++++++++++
> 2 files changed, 38 insertions(+), 0 deletions(-)
>
> diff --git a/org.spearce.jgit.test/tst/org/spearce/jgit/util/IntListTest.java b/org.spearce.jgit.test/tst/org/spearce/jgit/util/IntListTest.java
> index c470d55..ce0d7af 100644
> --- a/org.spearce.jgit.test/tst/org/spearce/jgit/util/IntListTest.java
> +++ b/org.spearce.jgit.test/tst/org/spearce/jgit/util/IntListTest.java
> @@ -144,6 +144,27 @@ public void testClear() {
> }
> }
>
> + public void testSet() {
> + final IntList i = new IntList();
> + i.add(1);
> + assertEquals(1, i.size());
> + assertEquals(1, i.get(0));
> +
> + i.set(0, 5);
> + assertEquals(5, i.get(0));
> +
> + try {
> + i.set(5, 5);
> + fail("accepted set of 5 beyond end of list");
> + } catch (ArrayIndexOutOfBoundsException e){
> + assertTrue(true);
> + }
> +
> + i.set(1, 2);
Oh, you grow the array here. Not obvious.
> + assertEquals(2, i.size());
> + assertEquals(2, i.get(1));
> + }
> +
> public void testToString() {
> final IntList i = new IntList();
> i.add(1);
> diff --git a/org.spearce.jgit/src/org/spearce/jgit/util/IntList.java b/org.spearce.jgit/src/org/spearce/jgit/util/IntList.java
> index 0a84793..9d86a5c 100644
> --- a/org.spearce.jgit/src/org/spearce/jgit/util/IntList.java
> +++ b/org.spearce.jgit/src/org/spearce/jgit/util/IntList.java
> @@ -94,6 +94,23 @@ public void add(final int n) {
> }
>
> /**
> + * Assign an entry in the list.
> + *
> + * @param index
> + * index to set, must be in the range [0, {@link #size()}).
> + * @param n
> + * value to store at the position.
> + */
> + public void set(final int index, final int n) {
> + if (count < index)
> + throw new ArrayIndexOutOfBoundsException(index);
> + else if (count == index)
> + add(n);
The interface is quite obscure here. One the one hand it checks for assignment
outside the set but it does grow the array when only one entry is missing. The
reader of the code won't see that easily. A different name and reflection of the
behaviour in the javadoc is needed. The class javadoc says "A more efficient
List<Integer> using a primitive integer array." and I know of no java.util.List's
that expand implicitly.
-- robin
next prev parent reply other threads:[~2009-05-03 7:07 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-02 2:08 [JGIT PATCH 0/6] Diff processing utilities Shawn O. Pearce
2009-05-02 2:08 ` [JGIT PATCH 1/6] Add set to IntList Shawn O. Pearce
2009-05-02 2:08 ` [JGIT PATCH 2/6] Add diff.Edit to describe an edit region within a file Shawn O. Pearce
2009-05-02 2:08 ` [JGIT PATCH 3/6] Add diff.EditList to provide for a list of Edit instances Shawn O. Pearce
2009-05-02 2:08 ` [JGIT PATCH 4/6] Add diff.RawText to index a file content for later compares Shawn O. Pearce
2009-05-02 2:08 ` [JGIT PATCH 5/6] Teach FileHeader, HunkHeader how to create an EditList Shawn O. Pearce
2009-05-02 2:08 ` [JGIT PATCH 6/6] Add diff.DiffFormatter to create Git style unified patch scripts Shawn O. Pearce
2009-05-03 0:03 ` [JGIT PATCH v2 " Shawn O. Pearce
2009-05-03 0:29 ` [JGIT PATCH v3 " Shawn O. Pearce
2009-05-03 7:07 ` Robin Rosenberg [this message]
2009-05-04 14:22 ` [JGIT PATCH 1/6] Add set to IntList Shawn O. Pearce
2009-05-04 14:50 ` Johannes Schindelin
2009-05-04 14:55 ` Shawn O. Pearce
2009-05-04 15:10 ` Johannes Schindelin
2009-05-03 14:24 ` [JGIT PATCH 0/6] Diff processing utilities Johannes Schindelin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200905030907.02287.robin.rosenberg.lists@dewire.com \
--to=robin.rosenberg.lists@dewire.com \
--cc=Johannes.Schindelin@gmx.de \
--cc=git@vger.kernel.org \
--cc=spearce@spearce.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).