clear all opend deprecations

This commit is contained in:
Adam D. Ruppe 2024-03-30 21:57:45 -04:00
parent a35f0ef535
commit 89252d46e4
22 changed files with 62 additions and 47 deletions

View File

@ -254,7 +254,7 @@ ulong readVla(ref const(ubyte)[] data) {
Added March 24, 2023 (dub v11.0)
+/
version(WithLzmaDecoder)
void decompressLzma(scope void delegate(in ubyte[] chunk) chunkReceiver, scope ubyte[] delegate(ubyte[] buffer) bufferFiller, ubyte[] chunkBuffer = null, ubyte[] inputBuffer = null, bool allowPartialChunks = false) {
void decompressLzma(scope void delegate(in ubyte[] chunk) chunkReceiver, scope ubyte[] delegate(ubyte[] buffer) bufferFiller, ubyte[] chunkBuffer = null, ubyte[] inputBuffer = null, bool allowPartialChunks = false) @trusted {
if(chunkBuffer is null)
chunkBuffer = new ubyte[](1024 * 32);
if(inputBuffer is null)
@ -296,7 +296,7 @@ void decompressLzma(scope void delegate(in ubyte[] chunk) chunkReceiver, scope u
}
/// ditto
void decompressGzip(scope void delegate(in ubyte[] chunk) chunkReceiver, scope ubyte[] delegate(ubyte[] buffer) bufferFiller, ubyte[] chunkBuffer = null, ubyte[] inputBuffer = null, bool allowPartialChunks = false) {
void decompressGzip(scope void delegate(in ubyte[] chunk) chunkReceiver, scope ubyte[] delegate(ubyte[] buffer) bufferFiller, ubyte[] chunkBuffer = null, ubyte[] inputBuffer = null, bool allowPartialChunks = false) @trusted {
import etc.c.zlib;
@ -1221,7 +1221,7 @@ private:
}
}
void unpackNextChunk () {
void unpackNextChunk () @system {
if (nfop == 0) assert(0, "wtf?!");
//scope(failure) if (chunkData !is null) { xfree(chunkData); chunkData = null; }
debug(arcz_unp) { import core.stdc.stdio : printf; printf("unpacking chunk %u\n", nextchunk); }
@ -1312,7 +1312,7 @@ private:
curcpos += skip;
}
int read (void* buf, uint count) {
int read (void* buf, uint count) @system {
if (buf is null) return -1;
if (count == 0 || totalsize == 0) return 0;
if (totalsize >= 0 && pos >= totalsize) return 0; // EOF

2
com.d
View File

@ -93,6 +93,8 @@ module arsd.com;
import arsd.core;
version(Windows):
// for arrays to/from IDispatch use SAFEARRAY
// see https://stackoverflow.com/questions/295067/passing-an-array-using-com

View File

@ -24,6 +24,8 @@ module arsd.comhelpers;
and then fully dynamic can be done with opDispatch for teh lulz.
+/
version(Windows):
import core.sys.windows.windows;
import core.sys.windows.com;
import core.sys.windows.oaidl;

2
curl.d
View File

@ -192,7 +192,7 @@ string curlAuth(string url, string data = null, string username = null, string p
}
class CurlException : Exception {
this(CURLcode code, string msg = null, string file = __FILE__, int line = __LINE__) {
this(CURLcode code, string msg = null, string file = __FILE__, int line = __LINE__) @system {
string message = file ~ ":" ~ to!string(line) ~ " (" ~ to!string(code) ~ ") ";
auto strerror = curl_easy_strerror(code);

View File

@ -651,7 +651,7 @@ class IncomingEmailMessage {
}
///
this(ref immutable(ubyte)[][] mboxLines, bool asmbox=true) {
this(ref immutable(ubyte)[][] mboxLines, bool asmbox=true) @trusted {
enum ParseState {
lookingForFrom,

View File

@ -458,7 +458,7 @@ version(linux) {
int epoll = -1;
private void addFileToLoopImplementation(int fd, int events, bool edgeTriggered = true) {
private void addFileToLoopImplementation(int fd, int events, bool edgeTriggered = true) @system {
epoll_event ev = void;
ev.events = 0;
@ -501,14 +501,14 @@ version(linux) {
epoll_ctl(epoll, EPOLL_CTL_ADD, fd, &ev);
}
private void removeFileFromLoopImplementation(int fd) {
private void removeFileFromLoopImplementation(int fd) @system {
epoll_event ev = void;
ev.data.fd = fd;
epoll_ctl(epoll, EPOLL_CTL_DEL, fd, &ev);
}
private void loopImplementation() {
private void loopImplementation() @system {
insideLoop = true;
scope(exit)
insideLoop = false;

View File

@ -80,7 +80,7 @@ enum ImageFileFormat {
/// Try to guess image format from file extension.
public ImageFileFormat guessImageFormatFromExtension (const(char)[] filename) {
public ImageFileFormat guessImageFormatFromExtension (const(char)[] filename) @system {
if (filename.length < 2) return ImageFileFormat.Unknown;
size_t extpos = filename.length;
version(Windows) {
@ -103,7 +103,7 @@ public ImageFileFormat guessImageFormatFromExtension (const(char)[] filename) {
/// Try to guess image format by first data bytes.
public ImageFileFormat guessImageFormatFromMemory (const(void)[] membuf) {
public ImageFileFormat guessImageFormatFromMemory (const(void)[] membuf) @system {
enum TargaSign = "TRUEVISION-XFILE.\x00";
auto buf = cast(const(ubyte)[])membuf;
if (buf.length == 0) return ImageFileFormat.Unknown;

View File

@ -69,6 +69,8 @@ import arsd.color;
// float or double
private:
@system:
//version = iresample_debug;

2
jni.d
View File

@ -2361,7 +2361,7 @@ final class JavaBridge(Class) {
static if(is(typeof(__traits(getMember, Class, memberName).offsetof)))
static assert(1, "Data members in D on Java classes are not reliable because they cannot be consistently associated back to their corresponding Java classes through JNI without major runtime expense."); // FIXME
else static if(memberName == "__ctor")
static assert("JavaClasses can only be constructed by Java. Try making a constructor in Java, then make an @Import this(args); here.");
static assert(1, "JavaClasses can only be constructed by Java. Try making a constructor in Java, then make an @Import this(args); here.");
// implementations
static foreach(oi, overload; __traits(getOverloads, Class, memberName))

12
jpeg.d
View File

@ -43,6 +43,8 @@
*/
module arsd.jpeg;
@system:
// Set to 1 to enable freq. domain chroma upsampling on images using H2V2 subsampling (0=faster nearest neighbor sampling).
// This is slower, but results in higher quality on images with highly saturated colors.
version = JPGD_SUPPORT_FREQ_DOMAIN_UPSAMPLING;
@ -556,7 +558,7 @@ public:
return JPGD_FAILED;
}
@property const pure nothrow @safe @nogc {
@property const pure nothrow @trusted @nogc {
jpgd_status error_code () { pragma(inline, true); return m_error_code; }
int width () { pragma(inline, true); return m_image_x_size; }
@ -3605,7 +3607,7 @@ public struct JpegParams {
bool twoPass = true;
///
bool check () const pure nothrow @safe @nogc {
bool check () const pure nothrow @trusted @nogc {
if (quality < 1 || quality > 100) return false;
if (cast(uint)subsampling > cast(uint)JpegSubsampling.H2V2) return false;
return true;
@ -4547,7 +4549,7 @@ public:
bool setup() (WriteFunc pStream, int width, int height, int src_channels) { return setup(pStream, width, height, src_channels, JpegParams()); }
@property ref inout(JpegParams) params () return inout pure nothrow @safe @nogc { pragma(inline, true); return m_params; }
@property ref inout(JpegParams) params () return inout pure nothrow @trusted @nogc { pragma(inline, true); return m_params; }
// Deinitializes the compressor, freeing any allocated memory. May be called at any time.
void deinit () {
@ -4555,8 +4557,8 @@ public:
clear();
}
@property uint total_passes () const pure nothrow @safe @nogc { pragma(inline, true); return (m_params.twoPass ? 2 : 1); }
@property uint cur_pass () const pure nothrow @safe @nogc { pragma(inline, true); return m_pass_num; }
@property uint total_passes () const pure nothrow @trusted @nogc { pragma(inline, true); return (m_params.twoPass ? 2 : 1); }
@property uint cur_pass () const pure nothrow @trusted @nogc { pragma(inline, true); return m_pass_num; }
// Call this method with each source scanline.
// width*src_channels bytes per scanline is expected (RGB or Y format).

View File

@ -79,7 +79,10 @@ class TerminalEmulatorWidget : Widget {
terminalEmulator.attentionReceived();
}
override MouseCursor cursor() { return GenericCursor.Text; }
class Style : Widget.Style {
override MouseCursor cursor() { return GenericCursor.Text; }
}
mixin OverrideStyle!Style;
override void paint(WidgetPainter painter) {
terminalEmulator.redrawPainter(painter, true);
@ -189,7 +192,7 @@ class TerminalEmulatorInsideWidget : TerminalEmulator {
bool skipNextChar = false;
widget.addEventListener("mousedown", (Event ev) {
widget.addEventListener((MouseDownEvent ev) {
int termX = (ev.clientX - paddingLeft) / fontWidth;
int termY = (ev.clientY - paddingTop) / fontHeight;
@ -203,7 +206,7 @@ class TerminalEmulatorInsideWidget : TerminalEmulator {
redraw();
});
widget.addEventListener("mouseup", (Event ev) {
widget.addEventListener((MouseUpEvent ev) {
int termX = (ev.clientX - paddingLeft) / fontWidth;
int termY = (ev.clientY - paddingTop) / fontHeight;
@ -217,7 +220,7 @@ class TerminalEmulatorInsideWidget : TerminalEmulator {
redraw();
});
widget.addEventListener("mousemove", (Event ev) {
widget.addEventListener((MouseMoveEvent ev) {
int termX = (ev.clientX - paddingLeft) / fontWidth;
int termY = (ev.clientY - paddingTop) / fontHeight;
@ -231,7 +234,7 @@ class TerminalEmulatorInsideWidget : TerminalEmulator {
redraw();
});
widget.addEventListener("keydown", (Event ev) {
widget.addEventListener((KeyDownEvent ev) {
if(ev.key == Key.ScrollLock) {
toggleScrollbackWrap();
}
@ -275,7 +278,7 @@ class TerminalEmulatorInsideWidget : TerminalEmulator {
return; // the character event handler will do others
});
widget.addEventListener("char", (Event ev) {
widget.addEventListener((CharEvent ev) {
dchar c = ev.character;
if(skipNextChar) {
skipNextChar = false;

14
mp3.d
View File

@ -194,7 +194,7 @@ class MP3Decoder {
Returns `true` if the object is in a valid state. May be
false if the stream was corrupted or reached end-of-file.
+/
@property bool valid () const pure nothrow @safe @nogc {
@property bool valid () const pure nothrow @trusted @nogc {
return isOpen;
}
/++
@ -206,7 +206,7 @@ class MP3Decoder {
See_Also:
[channels]
+/
@property uint sampleRate () const pure nothrow @safe @nogc {
@property uint sampleRate () const pure nothrow @trusted @nogc {
return valid ? dec.info.hz : 0;
}
/++
@ -218,7 +218,7 @@ class MP3Decoder {
See_Also:
[sampleRate]
+/
@property ubyte channels () const pure nothrow @safe @nogc {
@property ubyte channels () const pure nothrow @trusted @nogc {
return (valid ? cast(ubyte) dec.info.channels : 0);
}
/++
@ -230,7 +230,7 @@ class MP3Decoder {
History:
Added November 21, 2022 (dub v10.10)
+/
@property int bitrate() const pure nothrow @safe @nogc {
@property int bitrate() const pure nothrow @trusted @nogc {
return (valid ? dec.info.bitrate_kbps : 0);
}
@ -241,7 +241,7 @@ class MP3Decoder {
History:
Added November 26, 2022 (dub v10.10)
+/
@property float duration() const pure nothrow @safe @nogc {
@property float duration() const pure nothrow @trusted @nogc {
return (valid ? (cast(float) dec.samples / sampleRate / channels) : float.nan);
}
@ -253,7 +253,7 @@ class MP3Decoder {
See_Also:
[frameSamplesFloat], [frameSamples], [decodeNextFrame], [channels]
+/
@property int samplesInFrame () const pure nothrow @safe @nogc {
@property int samplesInFrame () const pure nothrow @trusted @nogc {
if(valid)
return cast(int) (decodedFramesUsed / channels);
else
@ -323,7 +323,7 @@ class MP3Decoder {
@system:
import core.stdc.stdlib;
import core.stdc.string;

10
mysql.d
View File

@ -75,7 +75,7 @@ class MySqlResult : ResultSet {
}
MYSQL_FIELD[] fields() {
MYSQL_FIELD[] fields() @system {
int numFields = mysql_num_fields(result);
auto fields = mysql_fetch_fields(result);
@ -124,7 +124,7 @@ class MySqlResult : ResultSet {
return mapping[field];
}
private void makeFieldMapping() {
private void makeFieldMapping() @system {
int numFields = mysql_num_fields(result);
auto fields = mysql_fetch_fields(result);
@ -137,7 +137,7 @@ class MySqlResult : ResultSet {
}
}
private void fetchNext() {
private void fetchNext() @system {
assert(result);
auto r = mysql_fetch_row(result);
if(r is null)
@ -163,7 +163,7 @@ class MySqlResult : ResultSet {
}
override string[] fieldNames() {
override string[] fieldNames() @system {
int numFields = mysql_num_fields(result);
auto fields = mysql_fetch_fields(result);
@ -1042,7 +1042,7 @@ cstring toCstring(string c) {
}
import std.array;
string fromCstring(cstring c, size_t len = size_t.max) {
string fromCstring(cstring c, size_t len = size_t.max) @system {
string ret;
if(c is null)
return null;

View File

@ -12333,7 +12333,7 @@ version(bindbc){
assert(0, "OpenGL initialization failed: a context needs to be created prior to initialization");
}
} else { // OpenGL API missing from simpledisplay
private void nanovgInitOpenGL () @nogc nothrow {
private void nanovgInitOpenGL () @nogc nothrow @system {
__gshared bool initialized = false;
if (initialized) return;

View File

@ -829,7 +829,7 @@ extern(C) {
alias void* MHASH;
}
ubyte[] mhashSign(string data, string signWith, hashid algorithm) {
ubyte[] mhashSign(string data, string signWith, hashid algorithm) @trusted {
auto td = mhash_hmac_init(algorithm, signWith.ptr, cast(int) signWith.length,
mhash_get_hash_pblock(algorithm));

2
pcx.d
View File

@ -39,7 +39,7 @@ public MemoryImage loadPcxMem (const(void)[] buf, const(char)[] filename=null) {
}
}
ptrdiff_t read (void* buf, size_t count) {
ptrdiff_t read (void* buf, size_t count) @system {
if (pos >= data.length) return 0;
if (count > 0) {
import core.stdc.string : memcpy;

View File

@ -206,7 +206,7 @@ class PostgresResult : ResultSet {
return row;
}
int affectedRows() {
int affectedRows() @system {
auto g = PQcmdTuples(res);
if(g is null)
return 0;
@ -305,7 +305,7 @@ class PostgresResult : ResultSet {
}
}
string copyCString(const char* c, int actualLength = -1) {
string copyCString(const char* c, int actualLength = -1) @system {
const(char)* a = c;
if(a is null)
return null;

View File

@ -66,6 +66,8 @@ unittest {
main; // exclude from docs
}
@system:
import core.stdc.stddef;
import core.stdc.stdint;
import core.stdc.string;

View File

@ -132,7 +132,7 @@ class Sqlite : Database {
return s.execute();
}
override string escape(string sql) {
override string escape(string sql) @system {
if(sql is null)
return null;
char* got = sqlite3_mprintf("%q", toStringz(sql)); // FIXME: might have to be %Q, need to check this, but I think the other impls do the same as %q
@ -152,7 +152,7 @@ class Sqlite : Database {
return tohexsql(b);
}
string error(){
string error() @system {
import core.stdc.string : strlen;
char* mesg = sqlite3_errmsg(db);
char[] m;
@ -175,7 +175,7 @@ class Sqlite : Database {
}
int exec(string sql, void delegate (char[][char[]]) onEach = null) {
int exec(string sql, void delegate (char[][char[]]) onEach = null) @system {
char* mesg;
if(sqlite3_exec(db, toStringz(sql), &callback, &onEach, &mesg) != SQLITE_OK) {
import core.stdc.string : strlen;
@ -296,7 +296,7 @@ struct Statement {
version(sqlite_extended_metadata_available)
Tuple!(string, string)[string] extendedMetadata;
ResultSet execute(bool fetchExtendedMetadata = false) {
ResultSet execute(bool fetchExtendedMetadata = false) @system {
bool first = true;
int count;
int numRows = 0;
@ -659,7 +659,7 @@ struct ResultByDataObject {
extern(C) int callback(void* cb, int howmany, char** text, char** columns){
extern(C) int callback(void* cb, int howmany, char** text, char** columns) @system {
if(cb is null)
return 0;

2
svg.d
View File

@ -3688,7 +3688,7 @@ public void kill (NSVG* image) {
///
public NSVG* nsvgParseFromFile (const(char)[] filename, const(char)[] units="px", float dpi=96, int canvaswdt=-1, int canvashgt=-1) nothrow {
public NSVG* nsvgParseFromFile (const(char)[] filename, const(char)[] units="px", float dpi=96, int canvaswdt=-1, int canvashgt=-1) nothrow @system {
import core.stdc.stdlib : malloc, free;
enum AddedBytes = 8;

View File

@ -38,7 +38,7 @@ public MemoryImage loadTgaMem (const(void)[] buf, const(char)[] filename=null) {
}
}
ptrdiff_t read (void* buf, size_t count) {
ptrdiff_t read (void* buf, size_t count) @system {
if (pos >= data.length) return 0;
if (count > 0) {
import core.stdc.string : memcpy;

View File

@ -64,6 +64,8 @@ import core.stdc.stdio : FILE;
version(Windows)
extern(C) int lrintf(float f) { return cast(int) f; }
@system:
nothrow /*@trusted*/:
@nogc { // code block, as c macro helper is not @nogc; yet it's CTFE-only
// import it here, as druntime has no `@nogc` on it (for a reason)