Add Segment2.extension and .withoutExtension properties.
Also adds GenericPath.fileExtension as a shortcut for `path.head2.extension`.
This commit is contained in:
parent
14bbc4bdec
commit
762ababa4d
|
@ -1,7 +1,7 @@
|
||||||
/**
|
/**
|
||||||
Contains routines for high level path handling.
|
Contains routines for high level path handling.
|
||||||
|
|
||||||
Copyright: © 2012-2019 Sönke Ludwig
|
Copyright: © 2012-2021 Sönke Ludwig
|
||||||
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
|
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
|
||||||
Authors: Sönke Ludwig
|
Authors: Sönke Ludwig
|
||||||
*/
|
*/
|
||||||
|
@ -12,8 +12,9 @@ import std.algorithm.comparison : equal, min;
|
||||||
import std.algorithm.iteration : map;
|
import std.algorithm.iteration : map;
|
||||||
import std.exception : enforce;
|
import std.exception : enforce;
|
||||||
import std.range : empty, front, popFront, popFrontExactly, takeExactly;
|
import std.range : empty, front, popFront, popFrontExactly, takeExactly;
|
||||||
import std.range.primitives : ElementType, isInputRange, isOutputRange;
|
import std.range.primitives : ElementType, isInputRange, isOutputRange, isForwardRange, save;
|
||||||
import std.traits : isInstanceOf;
|
import std.traits : isArray, isInstanceOf, isSomeChar;
|
||||||
|
import std.utf : byChar;
|
||||||
|
|
||||||
|
|
||||||
/** Computes the relative path from `base_path` to this path.
|
/** Computes the relative path from `base_path` to this path.
|
||||||
|
@ -467,6 +468,47 @@ struct GenericPath(F) {
|
||||||
/// Returns `true` $(I iff) the segment has a trailing path separator.
|
/// Returns `true` $(I iff) the segment has a trailing path separator.
|
||||||
@property bool hasSeparator() const nothrow @nogc { return m_separator != '\0'; }
|
@property bool hasSeparator() const nothrow @nogc { return m_separator != '\0'; }
|
||||||
|
|
||||||
|
|
||||||
|
/** The extension part of the file name.
|
||||||
|
|
||||||
|
If the file name contains an extension, this returns a forward range
|
||||||
|
with the extension including the leading dot. Otherwise an empty
|
||||||
|
range is returned.
|
||||||
|
|
||||||
|
See_also: `stripExtension`
|
||||||
|
*/
|
||||||
|
@property auto extension()
|
||||||
|
const nothrow @nogc {
|
||||||
|
return .extension(this.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
unittest {
|
||||||
|
assert(PosixPath("/foo/bar.txt").head2.extension.equal(".txt"));
|
||||||
|
assert(PosixPath("/foo/bar").head2.extension.equal(""));
|
||||||
|
assert(PosixPath("/foo/.bar").head2.extension.equal(""));
|
||||||
|
assert(PosixPath("/foo/.bar.txt").head2.extension.equal(".txt"));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** Returns the file base name, excluding the extension.
|
||||||
|
|
||||||
|
See_also: `extension`
|
||||||
|
*/
|
||||||
|
@property auto withoutExtension()
|
||||||
|
const nothrow @nogc {
|
||||||
|
return .stripExtension(this.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
unittest {
|
||||||
|
assert(PosixPath("/foo/bar.txt").head2.withoutExtension.equal("bar"));
|
||||||
|
assert(PosixPath("/foo/bar").head2.withoutExtension.equal("bar"));
|
||||||
|
assert(PosixPath("/foo/.bar").head2.withoutExtension.equal(".bar"));
|
||||||
|
assert(PosixPath("/foo/.bar.txt").head2.withoutExtension.equal(".bar"));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/** Converts the segment to another path type.
|
/** Converts the segment to another path type.
|
||||||
|
|
||||||
The segment name will be re-validated during the conversion. The
|
The segment name will be re-validated during the conversion. The
|
||||||
|
@ -809,6 +851,23 @@ struct GenericPath(F) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** The extension part of the file name pointed to by the path.
|
||||||
|
|
||||||
|
If the path is not empty and its head segment has an extension, this
|
||||||
|
returns a forward range with the extension including the leading dot.
|
||||||
|
Otherwise an empty range is returned.
|
||||||
|
|
||||||
|
See `Segment2.extension` for a full description.
|
||||||
|
|
||||||
|
See_also: `Segment2.extension`, `Segment2.stripExtension`
|
||||||
|
*/
|
||||||
|
@property auto fileExtension()
|
||||||
|
const nothrow @nogc {
|
||||||
|
if (this.empty) return typeof(this.head2.extension).init;
|
||||||
|
return this.head2.extension;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/** Returns the normalized form of the path.
|
/** Returns the normalized form of the path.
|
||||||
|
|
||||||
See `normalize` for a full description.
|
See `normalize` for a full description.
|
||||||
|
@ -1785,6 +1844,8 @@ struct InetPathFormat {
|
||||||
|
|
||||||
@property bool empty() const { return m_index >= m_str.length; }
|
@property bool empty() const { return m_index >= m_str.length; }
|
||||||
|
|
||||||
|
@property R save() const { return this; }
|
||||||
|
|
||||||
@property char front()
|
@property char front()
|
||||||
const {
|
const {
|
||||||
auto ch = m_str[m_index];
|
auto ch = m_str[m_index];
|
||||||
|
@ -1868,6 +1929,107 @@ struct InetPathFormat {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private auto extension(R)(R filename)
|
||||||
|
if (isForwardRange!R && isSomeChar!(ElementType!R))
|
||||||
|
{
|
||||||
|
if (filename.empty) return filename;
|
||||||
|
|
||||||
|
static if (isArray!R) { // avoid auto decoding
|
||||||
|
filename = filename[1 .. $]; // ignore leading dot
|
||||||
|
|
||||||
|
R candidate;
|
||||||
|
while (filename.length) {
|
||||||
|
if (filename[0] == '.')
|
||||||
|
candidate = filename;
|
||||||
|
filename = filename[1 .. $];
|
||||||
|
}
|
||||||
|
return candidate;
|
||||||
|
} else {
|
||||||
|
filename.popFront(); // ignore leading dot
|
||||||
|
|
||||||
|
R candidate;
|
||||||
|
while (!filename.empty) {
|
||||||
|
if (filename.front == '.')
|
||||||
|
candidate = filename.save;
|
||||||
|
filename.popFront();
|
||||||
|
}
|
||||||
|
return candidate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@safe nothrow unittest {
|
||||||
|
assert(extension("foo") == "");
|
||||||
|
assert(extension("foo.txt") == ".txt");
|
||||||
|
assert(extension(".foo") == "");
|
||||||
|
assert(extension(".foo.txt") == ".txt");
|
||||||
|
assert(extension("foo.bar.txt") == ".txt");
|
||||||
|
}
|
||||||
|
|
||||||
|
unittest {
|
||||||
|
assert(extension(InetPath("foo").head2.name).equal(""));
|
||||||
|
assert(extension(InetPath("foo.txt").head2.name).equal(".txt"));
|
||||||
|
assert(extension(InetPath(".foo").head2.name).equal(""));
|
||||||
|
assert(extension(InetPath(".foo.txt").head2.name).equal(".txt"));
|
||||||
|
assert(extension(InetPath("foo.bar.txt").head2.name).equal(".txt"));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private auto stripExtension(R)(R filename)
|
||||||
|
if (isForwardRange!R && isSomeChar!(ElementType!R))
|
||||||
|
{
|
||||||
|
static if (isArray!R) { // make sure to return a slice
|
||||||
|
if (!filename.length) return filename;
|
||||||
|
R r = filename;
|
||||||
|
r = r[1 .. $]; // ignore leading dot
|
||||||
|
size_t cnt = 0, rcnt = r.length;
|
||||||
|
while (r.length) {
|
||||||
|
if (r[0] == '.')
|
||||||
|
rcnt = cnt;
|
||||||
|
cnt++;
|
||||||
|
r = r[1 .. $];
|
||||||
|
}
|
||||||
|
return filename[0 .. rcnt + 1];
|
||||||
|
} else {
|
||||||
|
if (filename.empty) return filename.takeExactly(0);
|
||||||
|
R r = filename.save;
|
||||||
|
size_t cnt = 0, rcnt = size_t.max;
|
||||||
|
r.popFront(); // ignore leading dot
|
||||||
|
while (!r.empty) {
|
||||||
|
if (r.front == '.')
|
||||||
|
rcnt = cnt;
|
||||||
|
cnt++;
|
||||||
|
r.popFront();
|
||||||
|
}
|
||||||
|
if (rcnt == size_t.max) return filename.takeExactly(cnt + 1);
|
||||||
|
return filename.takeExactly(rcnt + 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@safe nothrow unittest {
|
||||||
|
assert(stripExtension("foo") == "foo");
|
||||||
|
assert(stripExtension("foo.txt") == "foo");
|
||||||
|
assert(stripExtension(".foo") == ".foo");
|
||||||
|
assert(stripExtension(".foo.txt") == ".foo");
|
||||||
|
assert(stripExtension("foo.bar.txt") == "foo.bar");
|
||||||
|
}
|
||||||
|
|
||||||
|
unittest { // test range based path
|
||||||
|
import std.utf : byWchar;
|
||||||
|
|
||||||
|
assert(stripExtension("foo".byWchar).equal("foo"));
|
||||||
|
assert(stripExtension("foo.txt".byWchar).equal("foo"));
|
||||||
|
assert(stripExtension(".foo".byWchar).equal(".foo"));
|
||||||
|
assert(stripExtension(".foo.txt".byWchar).equal(".foo"));
|
||||||
|
assert(stripExtension("foo.bar.txt".byWchar).equal("foo.bar"));
|
||||||
|
|
||||||
|
assert(stripExtension(InetPath("foo").head2.name).equal("foo"));
|
||||||
|
assert(stripExtension(InetPath("foo.txt").head2.name).equal("foo"));
|
||||||
|
assert(stripExtension(InetPath(".foo").head2.name).equal(".foo"));
|
||||||
|
assert(stripExtension(InetPath(".foo.txt").head2.name).equal(".foo"));
|
||||||
|
assert(stripExtension(InetPath("foo.bar.txt").head2.name).equal("foo.bar"));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
unittest { // regression tests
|
unittest { // regression tests
|
||||||
assert(NativePath("").bySegment.empty);
|
assert(NativePath("").bySegment.empty);
|
||||||
assert(NativePath("").bySegment2.empty);
|
assert(NativePath("").bySegment2.empty);
|
||||||
|
|
Loading…
Reference in a new issue