Kryptostack
linesource.h
Go to the documentation of this file.
1
17#pragma once
18
19#include <iostream>
20#include <fstream>
21#include <string>
22
23#include "counter.h"
24#include "error.h"
25
29class LineSource : public Counter<LineSource> {
30 std::string fn_;
31 std::ifstream * inFile_{};
32 bool fromcin_;
34public:
36 explicit LineSource( const std::string & p_fn ) : fn_(p_fn), fromcin_(p_fn=="-") {}
37
39 LineSource( const LineSource& ) = delete;
40
42 LineSource( LineSource&& ) = delete;
43
45 LineSource& operator=( const LineSource& ) = delete;
46
49
51 ~LineSource() { delete inFile_; }
52
54 bool getLine( std::string & p_line ) {
55 if( fromcin_ )
56 return static_cast<bool>( std::getline( std::cin, p_line ) );
57 if( inFile_ == nullptr ) {
58 inFile_ = new std::ifstream( fn_, std::ios::in );
59 if( inFile_ == nullptr )
60 inErrExit( memory, "can not create ifstream '" + fn_ + "'" ); /* LCOV_EXCL_LINE */
61 }
62 if( !inFile_->is_open() )
63 inErrExit( cmdline, "can not open file name '" + fn_ + "'" );
64 return static_cast<bool>( std::getline( *inFile_, p_line ) );
65 }
66};
Counter base class.
Definition: counter.h:23
Abstraction of input channel.
Definition: linesource.h:29
bool fromcin_
Do we read from standard in?
Definition: linesource.h:32
std::string fn_
File name.
Definition: linesource.h:30
LineSource & operator=(const LineSource &)=delete
Delete copy assignement.
LineSource & operator=(LineSource &&)=delete
Delete move assignement.
bool getLine(std::string &p_line)
Wrapper around getline() to hide input stream.
Definition: linesource.h:54
LineSource(const std::string &p_fn)
Ctor.
Definition: linesource.h:36
std::ifstream * inFile_
Open, if we read from a file.
Definition: linesource.h:31
LineSource(const LineSource &)=delete
Delete the copy ctor.
LineSource(LineSource &&)=delete
Delete the move ctor.
~LineSource()
Dtor.
Definition: linesource.h:51
The class Counter.
void inErrExit(InError p_err, const std::string &p_details, const std::source_location p_location)
Interpreter error message to interpreter cout_ and exit(1).
Definition: error.cpp:48
Definitions and functions for error handling.