Qt Contributor Summit 2019 - QtCore

From Qt Wiki
Revision as of 09:32, 21 November 2019 by Peppe (talk | contribs)
Jump to navigation Jump to search

Session notes.

Recap:

Calendaring & time

  • We have calendars!
  • QDateTime internal state keeping requires cleanup (doable in Qt 6, e.g. remove the dpointer for good)
  • Some API fixups also needed (but possibly after the internals have been cleaned up), no other deprecating expected
  • Compatibility with C++20's calendaring: looking into it. Unfortunately we can't depend on it in time for 6.0, but Eddy is looking at it closely, to ensure maximum compatibility
  • We need to get rid of locale-specific behavior from QDateTime (it should be C)

Containers

  • QList = QVector by default in Qt 6
  • s/QList/QVector/g just before Qt 6 release to avoid merging nightmare
  • Not sure if to keep Qt5List. We need more evaluation about how much code breaks (e.g. when Creator, KDE port it). Not so many fixes were required in Qt but this was after many fixes have already landed after Clazy passes in Qt itself.
  • QPair=std::pair => no brainer
  • QHash in terms of std::unordered_map: Lars, Peppe experimented on it, it "works", esp. after
  • Concerns regards std::unordered_map itself -- it's not great in terms of performance (or: it's "as bad" as QHash, so the only save is the maintenance). Should we look at other unorderd_map implementations under BSD? What about qHash and the seeding?
  • QMap => std::map, yes
  • QLinkedList => Qt5LinkedList
  • (Need to clarify what ends up in a Qt5Support library)
  • Do we need to provide generic accessors for arbitrary containers, esp. in the light of ranges added to C++20? (And what about things like toSet, toList, etc.?) Concerns raised by starting including std headers all over the place.

QString, QStringView, QByteArray

  • QByteArray
    • should be ASCII only, not Latin1 (e.g. toUpper() toLower() printf() etc.)
    • should this be a stopgap measure towards a Qt7 QByteArray for std::byte
      • we can "take" std::bytes without problems; returning not really
    • what would be the advantage of QByteArray in terms of std::byte vs. a QVector<std::byte>? If it's substring search, does it make sense to look for a std::byte needle?
    • Short Bytearray Optimiztion? Possible
      • We need to decide whether to have it "globally". We need good testcases
      • In Qt 6 design QString/QByteArray can reference to literals/constants without memory allocations so SOO won't help there
  • QStringView
    • We need to define "what it means" when passing QString vs QStringView
    • We need to have a discussion, unfortunately we're running out of time. E.g. hasParameter(QStringView) requires hasParameter(u"foo") but not hasParameter("foo")
    • All the overloads are kind of a nightmare (for maintenance and teachability), can we streamline?

Split-up of QtCore

  • QtSCXML can be moved out (note that declarative depends on it)
  • PROBABLY MORE STUFF

Codecs

  • Legacy text codecs implementations in Qt are going to be dropped from Qt itself; anything but UTF- codecs will require 3rd party (ICU).
  • Can we require the system to be properly set up? (locale not set => is it our problem?)
  • QTextCodec as an API has a few defects
    • Can we fix it? (What are the problems in the first place? Is there a bug report? Is QTextCodec a dead end / we need a new class? How much breakage?)
    • Should it be moved out of QtCore?
    • Concern is on low-end: do we want QtCore to unconditionally link to ICU, just for codecs?
      • Well it's not just codecs: QLocale, QCollation, calendars all require ICU anyhow
      • We don't strictly need this ICU linking anyhow: QTextCodec is extensible; we can move the ICU dependency to another library or plugin. Out of the box QTextCodec in Core will only provide UTF-.
  • to/fromLocal8Bit and/or setCodecForLocale => deprecate and remove; conversions should be explicit...
  • QXmlStream: those may require non UTF- codecs; there may be XML files in non UTF-8. How to handle those?
    • Register text codecs when linking to QtTextCodecs? Circular dependency?
    • Can QXmlStreamWriter write any other codec? Yes. Can we deprecate it right now?
  • What does Qt assume on locale on UNIX systems?
    • What happens if you haven't set anything?
      • Thiago: assume it is C.UTF-8
      • Peppe: crash/warning
    • What happens if you have set an encoding we would support (via QtTextCodecs or whatever), but not UTF-8?
      • Warning and override with UTF-8
    • Special case: C (that we would support anyhow), but not C.UTF-8?
      • Thiago: assume it is C.UTF-8
      • Warning? 7 bit is perfectly compatible
    • What happens if you have set an encoding we do NOT support?
      • Andre: override the user; assume it is UTF-8
        • Peppe: at a minimum: every time we override, print a warning!
    • What happens to child processes?
      • No -- there was a warning for the user

Threading

  • QRecursiveMutex split from QMutex
    • Deprecate our lockers after 6.0
    • Do we need QBasicMutex any longer? Likely no after the split
  • QWaitCondition & QReadWriteLocker improvements?
    • Those can be improved, e.g. making them big enough to avoid memory allocations
  • Future of QFuture
    • QFuture is still in QtCore
    • QFutureInterface was still around, but never cleaned up
      • If noone cleans it up for 6.0, move QFuture/QFutureInterface to QtConcurrent and keep it there
    • std::future / std::promise are there, but no continuations!

Paths/Filesystem

  • If you know about Windows path handling: please help Eddy! (E.g. filesystem paths that are neither absolute or relative)
  • Discuss if we want a dedicated filesystem path class -- we need to evaluate the impact on our API.
    • We want overloads taking std::fs::path, but not sure about a dedicated class to store paths

Other