Skip to content

Commit

Permalink
deimos.openssl.opensslv: Remove use of Phobos
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberShadow committed Sep 14, 2023
1 parent da92bb3 commit aff12f3
Showing 1 changed file with 43 additions and 23 deletions.
66 changes: 43 additions & 23 deletions source/deimos/openssl/opensslv.di
Original file line number Diff line number Diff line change
Expand Up @@ -75,45 +75,65 @@ private struct OpenSSLVersionStruct

private OpenSSLVersionStruct parseOpenSSLVersion()(string textVersion)
{
OpenSSLVersionStruct v;
// Note: we avoid using Phobos here to avoid DMD bugs,
// e.g. https://issues.dlang.org/show_bug.cgi?id=24146

bool isDigit(char c) { return c >= '0' && c <= '9'; }

string[] split(string s, char delim)
{
string[] result;
size_t start;
for (size_t i = 0; i < s.length; i++)
if (s[i] == delim)
{
result ~= s[start .. i];
start = i + 1;
}
if (start != s.length)
result ~= s[start .. s.length];
return result;
}

uint parseUnsignedDecimal(string s)
{
assert(s.length);
uint result;
foreach (c; s)
{
assert(isDigit(c));
result = result * 10 + (c - '0');
}
return result;
}

import std.ascii : isDigit;
import std.algorithm.iteration : splitter;
import std.algorithm.searching : canFind;
import std.conv : to;
import std.range : dropExactly;
OpenSSLVersionStruct v;

v.text = textVersion;

textVersion = textVersion.splitter('-').front;
textVersion = split(textVersion, '-')[0];
auto parts = split(textVersion, '.');

v.major = textVersion.splitter('.')
.front.to!uint;
v.major = parseUnsignedDecimal(parts[0]);
assert (v.major >= 0);

v.minor = textVersion.splitter('.')
.dropExactly(1)
.front.to!uint;
v.minor = parseUnsignedDecimal(parts[1]);
assert (v.minor >= 0);

// `std.algorithm.iteration : splitWhen` not usable at CT
// so we're using `canFind`.
string patchText = textVersion.splitter('.')
.dropExactly(2).front;
auto patchChar = patchText.canFind!(
(dchar c) => !c.isDigit());

v.patch = patchText[0 .. $ - patchChar].to!uint;
assert (v.patch >= 0);

if (patchChar)
string patchText = parts[2];
if (!isDigit(patchText[$ - 1]))
{
v.build = (patchText[$ - 1] - '`');
assert (v.build >= 0);
v.build = patchText[$ - 1] - '`';
patchText = patchText[0 .. $ - 1];
}
else
v.build = 0;

v.patch = parseUnsignedDecimal(patchText);
assert (v.patch >= 0);

return v;
}

Expand Down

0 comments on commit aff12f3

Please sign in to comment.