Skip to content

Commit

Permalink
Merge branch '__rultor'
Browse files Browse the repository at this point in the history
  • Loading branch information
rultor committed Jun 28, 2017
2 parents 2c54e24 + 8af1906 commit 884896c
Show file tree
Hide file tree
Showing 4 changed files with 183 additions and 6 deletions.
103 changes: 103 additions & 0 deletions src/main/java/org/cactoos/io/InputWithFallback.java
@@ -0,0 +1,103 @@
/**
* The MIT License (MIT)
*
* Copyright (c) 2017 Yegor Bugayenko
*
* 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 NON-INFRINGEMENT. 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 org.cactoos.io;

import java.io.IOException;
import java.io.InputStream;
import org.cactoos.Func;
import org.cactoos.Input;
import org.cactoos.func.IoCheckedFunc;

/**
* Input that returns an alternative input if the main one throws
* {@link IOException}.
*
* <p>There is no thread-safety guarantee.
*
* @author Yegor Bugayenko (yegor256@gmail.com)
* @version $Id$
* @since 0.9
*/
public final class InputWithFallback implements Input {

/**
* The main one.
*/
private final Input main;

/**
* The alternative one.
*/
private final IoCheckedFunc<IOException, Input> alternative;

/**
* Ctor.
* @param input Main input
*/
public InputWithFallback(final Input input) {
this(input, new DeadInput());
}

/**
* Ctor.
* @param input Main input
* @param alt Alternative
*/
public InputWithFallback(final Input input, final Input alt) {
this(input, error -> alt);
}

/**
* Ctor.
* @param input Main input
* @param alt Alternative
*/
public InputWithFallback(final Input input,
final Func<IOException, Input> alt) {
this(input, new IoCheckedFunc<>(alt));
}

/**
* Ctor.
* @param input Main input
* @param alt Alternative
*/
public InputWithFallback(final Input input,
final IoCheckedFunc<IOException, Input> alt) {
this.main = input;
this.alternative = alt;
}

@Override
public InputStream stream() throws IOException {
InputStream stream;
try {
stream = this.main.stream();
} catch (final IOException ex) {
stream = this.alternative.apply(ex).stream();
}
return stream;
}

}
14 changes: 9 additions & 5 deletions src/main/java/org/cactoos/text/SplitText.java
Expand Up @@ -26,6 +26,7 @@
import java.util.Iterator;
import org.cactoos.Text;
import org.cactoos.list.ArrayAsIterable;
import org.cactoos.list.FilteredIterator;

/**
* Split the Text.
Expand Down Expand Up @@ -98,11 +99,14 @@ public SplitText(final UncheckedText text, final UncheckedText rgx) {

@Override
public Iterator<String> iterator() {
return new ArrayAsIterable<>(
this.origin.asString().split(
this.regex.asString()
)
).iterator();
return new FilteredIterator<>(
new ArrayAsIterable<>(
this.origin.asString().split(
this.regex.asString()
)
).iterator(),
input -> !input.isEmpty()
);
}

}
61 changes: 61 additions & 0 deletions src/test/java/org/cactoos/io/InputWithFallbackTest.java
@@ -0,0 +1,61 @@
/**
* The MIT License (MIT)
*
* Copyright (c) 2017 Yegor Bugayenko
*
* 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 NON-INFRINGEMENT. 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 org.cactoos.io;

import java.io.File;
import org.cactoos.TextHasString;
import org.cactoos.text.BytesAsText;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.Test;

/**
* Test case for {@link InputWithFallback}.
*
* @author Yegor Bugayenko (yegor256@gmail.com)
* @version $Id$
* @since 0.9
* @checkstyle JavadocMethodCheck (500 lines)
*/
public final class InputWithFallbackTest {

@Test
public void readsAlternativeInput() {
MatcherAssert.assertThat(
"Can't read alternative source",
new BytesAsText(
new InputAsBytes(
new InputWithFallback(
new FileAsInput(
new File("/this-file-is-absent-for-sure.txt")
),
new BytesAsInput("hello, world!")
)
)
),
new TextHasString(Matchers.endsWith("world!"))
);
}

}
11 changes: 10 additions & 1 deletion src/test/java/org/cactoos/text/SplitTextTest.java
Expand Up @@ -31,7 +31,7 @@
* Test case for {@link SplitText}.
* @author Alexey Semenyuk (semenyukalexey@gmail.com)
* @version $Id$
* @since 0.1
* @since 0.9
* @checkstyle JavadocMethodCheck (500 lines)
*/
public final class SplitTextTest {
Expand All @@ -50,4 +50,13 @@ public void splitText() throws Exception {
);
}

@Test
public void splitEmptyText() throws Exception {
MatcherAssert.assertThat(
"Can't split an empty text",
new SplitText("", "\n"),
Matchers.emptyIterable()
);
}

}

0 comments on commit 884896c

Please sign in to comment.