From 89252d46e4dd702a234175f95ce1d0660f79171a Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 30 Mar 2024 21:57:45 -0400 Subject: [PATCH] clear all opend deprecations --- archive.d | 8 ++++---- com.d | 2 ++ comhelpers.d | 2 ++ curl.d | 2 +- email.d | 2 +- eventloop.d | 6 +++--- image.d | 4 ++-- imageresize.d | 2 ++ jni.d | 2 +- jpeg.d | 12 +++++++----- minigui_addons/terminal_emulator_widget.d | 15 +++++++++------ mp3.d | 14 +++++++------- mysql.d | 10 +++++----- nanovega.d | 2 +- oauth.d | 2 +- pcx.d | 2 +- postgres.d | 4 ++-- qrcode.d | 2 ++ sqlite.d | 10 +++++----- svg.d | 2 +- targa.d | 2 +- vorbis.d | 2 ++ 22 files changed, 62 insertions(+), 47 deletions(-) diff --git a/archive.d b/archive.d index 10406f5..bdd43f2 100644 --- a/archive.d +++ b/archive.d @@ -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 diff --git a/com.d b/com.d index 777f7f1..f057b33 100644 --- a/com.d +++ b/com.d @@ -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 diff --git a/comhelpers.d b/comhelpers.d index bd5caec..155c6e8 100644 --- a/comhelpers.d +++ b/comhelpers.d @@ -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; diff --git a/curl.d b/curl.d index 74a3963..acda15e 100644 --- a/curl.d +++ b/curl.d @@ -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); diff --git a/email.d b/email.d index e4f78f7..2c5d734 100644 --- a/email.d +++ b/email.d @@ -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, diff --git a/eventloop.d b/eventloop.d index 0f75407..19b551f 100644 --- a/eventloop.d +++ b/eventloop.d @@ -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; diff --git a/image.d b/image.d index 46d2ec5..5e71451 100644 --- a/image.d +++ b/image.d @@ -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; diff --git a/imageresize.d b/imageresize.d index 8eb7f12..89a0c82 100644 --- a/imageresize.d +++ b/imageresize.d @@ -69,6 +69,8 @@ import arsd.color; // float or double private: +@system: + //version = iresample_debug; diff --git a/jni.d b/jni.d index e562449..c6648f6 100644 --- a/jni.d +++ b/jni.d @@ -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)) diff --git a/jpeg.d b/jpeg.d index 4368b9a..705b97a 100644 --- a/jpeg.d +++ b/jpeg.d @@ -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). diff --git a/minigui_addons/terminal_emulator_widget.d b/minigui_addons/terminal_emulator_widget.d index 243143f..c9b47c2 100644 --- a/minigui_addons/terminal_emulator_widget.d +++ b/minigui_addons/terminal_emulator_widget.d @@ -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; diff --git a/mp3.d b/mp3.d index 3451620..df86cb3 100644 --- a/mp3.d +++ b/mp3.d @@ -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; diff --git a/mysql.d b/mysql.d index 3f65785..52db566 100644 --- a/mysql.d +++ b/mysql.d @@ -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; diff --git a/nanovega.d b/nanovega.d index fbfa4a3..f67dcf1 100644 --- a/nanovega.d +++ b/nanovega.d @@ -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; diff --git a/oauth.d b/oauth.d index 6143e63..4e41174 100644 --- a/oauth.d +++ b/oauth.d @@ -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)); diff --git a/pcx.d b/pcx.d index 8edc665..4a2b519 100644 --- a/pcx.d +++ b/pcx.d @@ -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; diff --git a/postgres.d b/postgres.d index 4b34ead..6d7ca50 100644 --- a/postgres.d +++ b/postgres.d @@ -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; diff --git a/qrcode.d b/qrcode.d index 291f46a..bdbe55c 100644 --- a/qrcode.d +++ b/qrcode.d @@ -66,6 +66,8 @@ unittest { main; // exclude from docs } +@system: + import core.stdc.stddef; import core.stdc.stdint; import core.stdc.string; diff --git a/sqlite.d b/sqlite.d index d9c4336..85d9ebb 100644 --- a/sqlite.d +++ b/sqlite.d @@ -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; diff --git a/svg.d b/svg.d index 8c9a2b6..d1e764d 100644 --- a/svg.d +++ b/svg.d @@ -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; diff --git a/targa.d b/targa.d index 1637af4..a4b6577 100644 --- a/targa.d +++ b/targa.d @@ -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; diff --git a/vorbis.d b/vorbis.d index 34b1181..61f2ca7 100644 --- a/vorbis.d +++ b/vorbis.d @@ -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)