54 __attribute__ ((format (printf, 2, 3)))
56 StrPrintf( std::string* aResult,
const char* aFormat, ... );
68 __attribute__ ((format (printf, 1, 2)))
85#define LINE_READER_LINE_DEFAULT_MAX 1000000
86#define LINE_READER_LINE_INITIAL_SIZE 5000
137 operator char* ()
const
165 void expandCapacity(
unsigned aNewsize );
201 FILE_LINE_READER(
const wxString& aFileName,
unsigned aStartingLineNumber = 0,
218 FILE_LINE_READER( FILE* aFile,
const wxString& aFileName,
bool doOwn =
true,
219 unsigned aStartingLineNumber = 0,
240 long int FileLength();
304#define OUTPUTFMTBUFZ 500
341 static const char* GetQuoteChar(
const char* wrapee,
const char* quote_char );
350 virtual void write(
const char* aOutBuf,
int aCount ) = 0;
358#define PRINTF_FUNC_N __attribute__( ( format( printf, 3, 4 ) ) )
359#define PRINTF_FUNC __attribute__( ( format( printf, 2, 3 ) ) )
381 int PRINTF_FUNC_N Print(
int nestLevel,
const char* fmt, ... );
409 virtual const char* GetQuoteChar(
const char* wrapee )
const;
423 virtual std::string Quotes(
const std::string& aWrapee )
const;
425 std::string Quotew(
const wxString& aWrapee )
const;
437 int sprint(
const char* fmt, ... );
438 int vprint(
const char* fmt, va_list ap );
478 void write(
const char* aOutBuf,
int aCount )
override;
503 char aQuoteChar =
'"' );
508 void write(
const char* aOutBuf,
int aCount )
override;
519 char aQuoteChar =
'"' );
530 void write(
const char* aOutBuf,
int aCount )
override;
void Rewind()
Rewind the file and resets the line number back to zero.
FILE_LINE_READER(const wxString &aFileName, unsigned aStartingLineNumber=0, unsigned aMaxLineLength=LINE_READER_LINE_DEFAULT_MAX)
Take aFileName and the size of the desired line buffer and opens the file and assumes the obligation ...
FILE * m_fp
I may own this file, but might not.
char * ReadLine() override
Read a line of text into the buffer and increments the line number counter.
bool m_iOwn
if I own the file, I'll promise to close it, else not.
LINE_READER(unsigned aMaxLineLength=LINE_READER_LINE_DEFAULT_MAX)
Build a line reader and fixes the length of the maximum supported line length to aMaxLineLength.
virtual char * ReadLine()=0
Read a line of text into the buffer and increments the line number counter.
virtual const wxString & GetSource() const
Returns the name of the source of the lines in an abstract sense.
unsigned m_maxLineLength
maximum allowed capacity using resizing.
unsigned m_length
no. bytes in line before trailing nul.
unsigned m_capacity
no. bytes allocated for line.
char * m_line
the read line of UTF8 text
virtual unsigned LineNumber() const
Return the line number of the last line read from this LINE_READER.
wxString m_source
origin of text lines, e.g. filename or "clipboard"
unsigned Length() const
Return the number of bytes in the last line read from this LINE_READER.
char * Line() const
Return a pointer to the last line that was read in.
STRING_LINE_READER(const std::string &aString, const wxString &aSource)
Construct a string line reader.
char * ReadLine() override
Read a line of text into the buffer and increments the line number counter.
static int vprint(std::string *result, const char *format, va_list ap)
KICOMMON_API wxString SafeReadFile(const wxString &aFilePath, const wxString &aReadType)
Nominally opens a file and reads it into a string.
KICOMMON_API int StrPrintf(std::string *aResult, const char *aFormat,...)
This is like sprintf() but the output is appended to a std::string instead of to a character array.
#define OUTPUTFMTBUFZ
default buffer size for any OUTPUT_FORMATTER
#define LINE_READER_LINE_DEFAULT_MAX