A slightly strange question, however, if I remember correctly, C++ source code doesn't require a file system to store its files.
Having a compiler that scans handwritten papers via a camera would be a conforming implementation. Although practically not making that much sense.
However C++20 now adds source location with file_name
. Does this now imply that source code should always be stored in a file?
No, source code doesn't have to come from a file (nor go to a file).
You can compile (and link) C++ completely within a pipe, putting your compiler in the middle, e.g.
and it's been like that for decades. See also:
The introduction of
std::source_location
in C++20 doesn't change this state of affairs. It's just that some code will not have a well-defined source location (or it may be well-defined, but not very meaningful). Actually, I'd say that the insistence on definingstd::source_location
using files is a bit myopic... although in fairness, it's just a macro-less equivalent of__FILE__
and__LINE__
which already exist in C++ (and C).@HBv6 notes that if you print the value of
__FILE__
when compiling using GCC from the standard input stream:running the resulting executable prints
<stdin>
.Source code can even come from the Internet.
@Morwenn notes that this code:
works on GodBolt (but won't work on your machine - no popular compiler supports this.)
Are you a language lawyer? Ok, so let's consult the standard..
The question of whether C++ program sources need to come from files is not answered clearly in the language standard. Looking at a draft of the C++17 standard (n4713), section 5.1 [lex.separate] reads:
So, the source code is not necessarily kept in a file per se, but in a "unit called a source file". But then, where do the includes come from? One would assume they come from named files on the filesystem... but that too is not mandated.
At any rate,
std::source_location
does not seem to change this wording in C++20 or to affect its interpretation.