« first day (948 days earlier)   

5:09 AM
@MarkGarcia Telepathic powers heh?
 
@Mysticial Assuming the function returns by value rather than reference, it ends up (modulo move semantics and/or RVO) returning a value, that gets copied to the caller. If the copy ctor throws,...
 
@LucDanton I don't know. Must be the environment inducing the song in our brains.
 
@JerryCoffin ha... never thought of the copy ctor throwing.
 
@Mysticial How much data can fit in an std::string?
 
@LucDanton Are you asking how large my strings are?
 
5:12 AM
No.
 
I'm confused, you can fit as much data in an std::string as you have memory (or address space) for.
 
The largest memory block the allocator can allocate.
 
@Mysticial So what happens if I try to copy a string that that that much data in it?
 
@LucDanton That I realize. It just didn't cross my mind.
 
Same goes for std::vector<T> and so on.
 
yiz
5:15 AM
or many string manipulation operations that requires extra memory
 
Most copy constructors would be noexcept if it werent for std::bad_alloc in fact.
So it's not too much of a surprise copy construction is taken for granted.
 
@LucDanton In point of fact, in quite a few cases when you run out of memory, they won't actually throw. On Windows, things will grind to a halt and the user will step in long before it actually gives up and throws. Depending on version, Linux can be even worse, such as randomly killing processes until that frees up enough memory. Much (most?) of what we do to deal with out of memory situations borders on fantasy.
 
Old news.
You can't tell from inside the language though. I'd rather not label noexcept which isn't.
 
Oh.
Damn, my PNG loader can't handle multiple DATA chunks.
 
@LucDanton Fair enough.
 
5:21 AM
It expects the first one to have all the data, which has been true for a lot of the cases I've dealt with...
WELP, time to do a bit of refactoring.
@JerryCoffin That all sounds... ... nightmarish, haha.
 
yiz
say 1 char = 2 bytes, 1MB = 500,000 char, 1 GB = 500,000,000
 
I'm a user of Boost.Exception, which amongst other features allow you to add any data to an exception object. Needless to say, that uses memory allocation. I've written so very fiddly parts where I need to keep track in my head of the normal path, the exception handling path, and the 'std::bad_alloc while handling an exception' path. It's not very fun, and I don't really plan on hitting std::bad_alloc or have any real need of 'handling' it.
 
@yiz You forgot the KB.
 
yiz
@MarkGarcia Thank you, I am such an idiot :'(
 
@yiz Compress those characters...
 
yiz
5:25 AM
not idea if you want to perform string operations on them
but for storage, yes
the classical speed, space trade off
 
I personally always viewed "out of memory" as a program bug, and it's my intention with Wide to terminate the program rather than throw an exception.
 
It's pretty silly to throw an exception if you're out of memory...
 
@DeadMG Kinda restricts the language to writing userland applications.
 
@LucDanton :O how so?
 
yiz
but then again when you are out of memory on ram you always have your 8TB harddrive for the swap space, but it will make your program as slow as hell
 
5:31 AM
Any kind of 'quick exit' arguably subverts RAII, too.
 
@LucDanton Even if you were kernel or embedded, what would you do on running out of memory that wouldn't be essentially terminating?
 
@yiz Really, that defeats the purpose of the program.
Swap is never useful unless you have a never-fail program.
Because execution speeds going from 100000 main loop cycles a second to 1 every ten seconds is just not worth it.
 
@DeadMG Can put the program in the starting state, e.g. assuming it only starts to grab memory at certain times and under certain conditions and it's okay to fail at those times.
 
There is always an explicit contract that - unless otherwise stated - your programs should run decently quickly.
 
@LucDanton Right, but if you're on a specific platform, then you can use a platform-specific API to know whether or not there's enough memory left before you start.
 
5:34 AM
I'd rather not if I can get away with it. Better to ask to be forgiven than for permission kind of deal (to be clear: that's a real guideline in software).
 
Blah...
 
I don't ask whether the filesystem is ready before I try to write either.
 
I probably agree in the general case
 
I can't use signed integers as my desired allocation number type. =/
 
yiz
@LucDanton yes you do
 
5:35 AM
C++ just doesn't agree with me.
 
but in this case, you're asking every user to pay a large penalty in both application complexity and run-time performance, in exchange for easier programming in a specific niche which doesn't really lend itself to exceptions anyway.
 
yiz
If it's not ready, the file system will tell you. You do not explicitly ask, but by doing a request to write, file system will tell you whether it is available
 
Application complexity?
 
it's surely easier to reason about a program that throws fewer exceptions rather than more.
 
You're comparing 'program will reset after out of mem' to 'program dies when out of mem'. That's comparing 'additional functionality after out of mem' to 'no more functionality after out of mem'.
I also have a tip for less application complexity: remove more features.
 
yiz
5:37 AM
better logic
 
right, but I seriously doubt that most applications will want to reset after out of memory
 
@JamesAnderson Embedded systems? What are you smoking? Trigraphs don't affect the program functionality or target system. They are effectively a character encoding for source files and a convenience for users missing certain keys on their keyboards. IBM lobbies against their deprecation because, supposedly, it allows them to avoid forcing their mainframe users to standardize on an EBCDIC text encoding. But a mainframe is the exact opposite of an embedded system. — Potatoswatter 13 mins ago
 
Then fine? Don't handle out of mem?
 
^^ IBM lobbies against the depreciation of trigrpahs?
 
@LucDanton Right, but even the theoretical possibility of throwing an exception has real penalties, even if it's never used.
 
yiz
5:39 AM
trigrpahs?
 
move_if_noexcept being a simple example
 
yiz
The more try/catch you have the slower your program will run
try/catch is great for debugging version
 
I can't say I've ever seen noticeable performance penalties with exceptions. That's mostly because I don't use them where the performance matters.
 
yiz
for real life high performing system, you probably do not want too many try catches
 
I'm skeptical. In any case I was just making a remark, not a plea. You can't and won't please everybody no matter which design you pick.
 
5:41 AM
I leaned in Bristol that some Standard types don't have noexcept move constructors, because some implementations wanted to allocate memory in their move constructors (wtf?).
 
@DeadMG wtf
 
Possibly so as to leave moved-from objects in a defined and useful state.
 
@LucDanton I absolutely agree with this. One of the reasons why, for example, I am specifying 8bit bytes, and such things. I absolutely think that there is a certain point where I define "too niche to support".
 
I think some servers and daemons and such do like to handle anything and everything, including out of mem still.
 
hmm
if you have a daemon and you want to go back to start, just create a new process and then terminate the existing one.
although I guess that you would certainly want to have some mechanism to handle cleaning up any non-process-local state in that circumstance
in any case, only the default allocator will have such behaviour- you could write a custom one that does throw an exception on allocation failure.
 
5:50 AM
anyone want to chat about MFC? )
 
yiz
@Klasik depends, if you are interested in the multithreaded MFC GUI, then yes, else GTFO
 
@yiz i'm interested all about MFC. i'm developing UI and want to make it as better by optimizing it.
 
@Mysticial Sounds highly suspect. Trigraphs were invented for keyboards/terminals that only support ISO 646, not for EBCDIC (which can encode the required characters directly).
 
6:15 AM
I have several things what I want to od with my program. but I don't know what is will me better. I can use edited tree control or list control with insertion of tree control. I'm thinking the edited tree control will be better. the standard tree control when selected highlights only text but not all line I want it all, and I want insert background image on main tree control item. maybe anyone can show me a way how i can do it? :)
 
6:49 AM
holy fuckshitties, it's so unbelievably confusing to deal with lvalues, rvalues, and overloads.
 
7:05 AM
@DeadMG Wait till they add dvalue for classes that are old and busted.
 
if I add dvalue to my own language it'll be my own fault
 
Xeo
Whatvalue?
 
7:20 AM
no idea
hmm, balls.
just realized my latest design for Wide requires copyability in some cases I really wish it didn't
 
@klasik MFC is a bad choice.
 
@BartekBanachewicz so u think I must start lerning c# with .net?
 

« first day (948 days earlier)