Agrarsense
Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | List of all members
ULogFile Class Reference

#include <LogFile.h>

Inheritance diagram for ULogFile:
Inheritance graph
[legend]
Collaboration diagram for ULogFile:
Collaboration graph
[legend]

Public Member Functions

 ULogFile ()
 
 ~ULogFile ()
 
void Create (const FString &FileNameWithoutExtension, FLogFileSettings Settings)
 
void Write (const FString &Text)
 
void Close ()
 
void Clear ()
 
void Destroy ()
 
void OpenFilePath ()
 
FString GetLogFilePath ()
 

Static Public Member Functions

static ULogFileCreateLogFile (const FString &FileNameWithoutExtension, FLogFileSettings Settings=FLogFileSettings())
 

Private Member Functions

void WriteQueuedMessages ()
 
void WriteToFile (const FString &Text, bool UseTimestamp)
 

Private Attributes

TArray< FString > MessageQueue
 
FLogFileSettings CurrentSettings
 
FString FilePath
 
std::ofstream LogFileStream
 

Detailed Description

LogFile is a Blueprintable class that allows .txt file creation and writing into it. The .txt file is created in the ROOT/Data/ directory.

Definition at line 62 of file LogFile.h.

Constructor & Destructor Documentation

◆ ULogFile()

ULogFile::ULogFile ( )

Definition at line 29 of file LogFile.cpp.

30{
31
32}

◆ ~ULogFile()

ULogFile::~ULogFile ( )

Definition at line 34 of file LogFile.cpp.

35{
37 Close();
38}
void WriteQueuedMessages()
Definition: LogFile.cpp:189
void Close()
Definition: LogFile.cpp:157

References Close(), and WriteQueuedMessages().

Member Function Documentation

◆ Clear()

void ULogFile::Clear ( )

Clear the file if it exists.

Definition at line 165 of file LogFile.cpp.

166{
167 if (std::filesystem::exists(TCHAR_TO_UTF8(*FilePath)))
168 {
169 std::ofstream clearFile(TCHAR_TO_UTF8(*FilePath), std::ofstream::out | std::ofstream::trunc);
170 clearFile.close();
171 }
172}
FString FilePath
Definition: LogFile.h:147

References FilePath.

Referenced by Create().

◆ Close()

void ULogFile::Close ( )

Close the file if it's open.

Definition at line 157 of file LogFile.cpp.

158{
159 if (LogFileStream.is_open())
160 {
161 LogFileStream.close();
162 }
163}
std::ofstream LogFileStream
Definition: LogFile.h:149

References LogFileStream.

Referenced by Destroy(), and ~ULogFile().

◆ Create()

void ULogFile::Create ( const FString &  FileNameWithoutExtension,
FLogFileSettings  Settings 
)

Create the log file.

Parameters
FileNameWithoutExtensionThe name of the log file without extension.
SettingsThe settings for creating the log file.

Definition at line 40 of file LogFile.cpp.

41{
42 CurrentSettings = Settings;
43
44 FString ProjectPath = UAgrarsensePaths::GetDataFolder();
45 FString Folder = FString("/Logs/");
46 FString LogDirPath = FPaths::Combine(*ProjectPath, *Folder);
47
48 if (!std::filesystem::exists(TCHAR_TO_UTF8(*LogDirPath)))
49 {
50 if (!std::filesystem::create_directory(TCHAR_TO_UTF8(*LogDirPath)))
51 {
52 // Failed to create the directory, return
53 return;
54 }
55 }
56
57 FString LogFilePath;
58
59 if (Settings.OverrideFilePath && !Settings.FilePath.IsEmpty())
60 {
61 if (!std::filesystem::exists(TCHAR_TO_UTF8(*Settings.FilePath)))
62 {
63 bool created = std::filesystem::create_directories(TCHAR_TO_UTF8(*Settings.FilePath));
64 }
65 LogFilePath = FPaths::Combine(*Settings.FilePath, *FileNameWithoutExtension) + TEXT(".txt");
66 }
67 else
68 {
69 LogFilePath = FPaths::Combine(*LogDirPath, *FileNameWithoutExtension) + TEXT(".txt");
70 }
71
72 FilePath = LogFilePath;
73
75 {
77 // Clear file if it exists
78 Clear();
79 break;
80
82 // Append to existing file if it exists
83 break;
84
86 {
87 // Create unique file by adding number to the end until we find unique filename
88 int suffix = 0;
89 FString UniqueFileName = FileNameWithoutExtension + TEXT("_") + FString::FromInt(suffix++);
90 FString UniqueLogFilePath = FPaths::Combine(*LogDirPath, *UniqueFileName) + TEXT(".txt");
91
92 while (std::filesystem::exists(TCHAR_TO_UTF8(*UniqueLogFilePath)))
93 {
94 UniqueFileName = FileNameWithoutExtension + TEXT("_") + FString::FromInt(suffix++) + TEXT(".txt");
95 UniqueLogFilePath = FPaths::Combine(*LogDirPath, *UniqueFileName);
96 }
97
98 LogFilePath = UniqueLogFilePath;
99 break;
100 }
101
102 default:
103 break;
104 }
105
106 // Try to create the .txt file
107 std::ofstream newFile(TCHAR_TO_UTF8(*LogFilePath), std::ios::app);
108 if (newFile.is_open())
109 {
110 newFile.close();
111 }
112 else
113 {
114 std::ifstream file(TCHAR_TO_UTF8(*LogFilePath));
115 if (file.good())
116 {
117 // The file already exists, return
118 file.close();
119 }
120 }
121}
static FString GetDataFolder()
void Clear()
Definition: LogFile.cpp:165
FLogFileSettings CurrentSettings
Definition: LogFile.h:145
FString FilePath
Definition: LogFile.h:54
bool OverrideFilePath
Definition: LogFile.h:51
FFileCreationOptions FileCreationOptions
Definition: LogFile.h:36

References Append, Clear(), CreateUnique, CurrentSettings, FLogFileSettings::FileCreationOptions, FLogFileSettings::FilePath, FilePath, UAgrarsensePaths::GetDataFolder(), FLogFileSettings::OverrideFilePath, and Overwrite.

Referenced by ASensor::CreateLogFile(), ACamera::CreateLogFile(), ACollisionSensor::CreateLogFile(), ALidar::CreateLogFile(), AOverlapSensor::CreateLogFile(), ATransformSensor::CreateLogFile(), and CreateLogFile().

◆ CreateLogFile()

ULogFile * ULogFile::CreateLogFile ( const FString &  FileNameWithoutExtension,
FLogFileSettings  Settings = FLogFileSettings() 
)
static

Static way of creating a ULogFile instance and creating the file at the same time.

Parameters
FileNameWithoutExtensionThe name of the log file without extension.
Settings(Optional) The settings for creating the log file. Default is an empty settings object.
Returns
A pointer to the created ULogFile instance or nullptr.

Definition at line 17 of file LogFile.cpp.

18{
19 ULogFile* LogFile = NewObject<ULogFile>(ULogFile::StaticClass());
20 LogFile->AddToRoot();
21 if (LogFile)
22 {
23 LogFile->Create(FileNameWithoutExtension, Settings);
24 }
25
26 return LogFile;
27}
void Create(const FString &FileNameWithoutExtension, FLogFileSettings Settings)
Definition: LogFile.cpp:40

References Create().

Referenced by SimulatorLog::Create().

◆ Destroy()

void ULogFile::Destroy ( )

Start destroying this UObject.

Definition at line 174 of file LogFile.cpp.

175{
176 if (IsValid(this))
177 {
179 Close();
180 ConditionalBeginDestroy();
181 }
182}

References Close(), and WriteQueuedMessages().

Referenced by ASensor::EndPlay(), and SimulatorLog::Shutdown().

◆ GetLogFilePath()

FString ULogFile::GetLogFilePath ( )
inline

Get the full file path as an FString.

Definition at line 123 of file LogFile.h.

124 {
125 return FilePath;
126 }

◆ OpenFilePath()

void ULogFile::OpenFilePath ( )

Open the file explorer at the path of the file.

Definition at line 184 of file LogFile.cpp.

185{
187}
static void OpenFileExplorer(FString Path)

References FilePath, and UFileUtilities::OpenFileExplorer().

◆ Write()

void ULogFile::Write ( const FString &  Text)

Write a message to the file.

Parameters
TextThe text message to write to the log file.

Definition at line 123 of file LogFile.cpp.

124{
125 if (FilePath.IsEmpty() || !IsValid(this))
126 {
127 return;
128 }
129
131 {
133 {
135 }
136 else
137 {
138 // Add message to queue (with timestamp if CurrentSettings.Timestamp) and return
139 FString MessageToAdd = Text;
141 {
142 std::time_t now = std::time(nullptr);
143 std::tm tm_time = *std::localtime(&now);
144 char timestamp[12];
145 std::strftime(timestamp, sizeof(timestamp), "[%H:%M:%S] ", &tm_time);
146 MessageToAdd = FString(timestamp) + Text;
147 }
148 MessageQueue.Add(MessageToAdd);
149 }
150
151 return;
152 }
153
154 WriteToFile(Text, true);
155}
void WriteToFile(const FString &Text, bool UseTimestamp)
Definition: LogFile.cpp:220
TArray< FString > MessageQueue
Definition: LogFile.h:143
bool Timestamp
Definition: LogFile.h:39
FFileWriteOptions FileWriteOptions
Definition: LogFile.h:45
int32 QueueLength
Definition: LogFile.h:48

References CurrentSettings, FilePath, FLogFileSettings::FileWriteOptions, MessageQueue, Queue, FLogFileSettings::QueueLength, FLogFileSettings::Timestamp, WriteQueuedMessages(), and WriteToFile().

Referenced by SimulatorLog::Log(), and ASensor::WriteToLogFile().

◆ WriteQueuedMessages()

void ULogFile::WriteQueuedMessages ( )
private

Write any queued messages to .txt file.

Definition at line 189 of file LogFile.cpp.

190{
191 if (MessageQueue.IsEmpty() || FilePath.IsEmpty())
192 {
193 return;
194 }
195
196 if (!LogFileStream.is_open())
197 {
198 std::string filePathString(TCHAR_TO_UTF8(*FilePath));
199 LogFileStream.open(filePathString, std::ios::app);
200 if (!LogFileStream.is_open())
201 {
202 // Failed to open the file, return
203 return;
204 }
205 }
206
207 for (const FString& Message : MessageQueue)
208 {
209 WriteToFile(Message, false);
210 }
211
212 MessageQueue.Empty();
213
215 {
216 LogFileStream.close();
217 }
218}
bool KeepFileOpen
Definition: LogFile.h:42

References CurrentSettings, FilePath, FLogFileSettings::KeepFileOpen, LogFileStream, MessageQueue, and WriteToFile().

Referenced by Destroy(), Write(), and ~ULogFile().

◆ WriteToFile()

void ULogFile::WriteToFile ( const FString &  Text,
bool  UseTimestamp 
)
private

Actual method where text is written to the .txt file.

Parameters
TextThe text message to write to the log file.
UseTimestampIndicates whether to include a timestamp in the log message.

Definition at line 220 of file LogFile.cpp.

221{
222 if (FilePath.IsEmpty() || !IsValid(this))
223 {
224 return;
225 }
226
227 if (!LogFileStream.is_open())
228 {
229 std::string filePathString(TCHAR_TO_UTF8(*FilePath));
230 LogFileStream.open(filePathString, std::ios::app);
231 if (!LogFileStream.is_open())
232 {
233 // Failed to open the file, return
234 return;
235 }
236 }
237
238 if (UseTimestamp && CurrentSettings.Timestamp)
239 {
240 std::time_t now = std::time(nullptr);
241 std::tm tm_time = *std::localtime(&now);
242 char timestamp[12];
243 std::strftime(timestamp, sizeof(timestamp), "[%H:%M:%S] ", &tm_time);
244
245 LogFileStream << timestamp << TCHAR_TO_UTF8(*Text) << std::endl;
246 }
247 else
248 {
249 LogFileStream << TCHAR_TO_UTF8(*Text) << std::endl;
250 }
251
253 {
254 LogFileStream.close();
255 }
256}

References CurrentSettings, FilePath, FLogFileSettings::KeepFileOpen, LogFileStream, and FLogFileSettings::Timestamp.

Referenced by Write(), and WriteQueuedMessages().

Member Data Documentation

◆ CurrentSettings

FLogFileSettings ULogFile::CurrentSettings
private

Definition at line 145 of file LogFile.h.

Referenced by Create(), Write(), WriteQueuedMessages(), and WriteToFile().

◆ FilePath

FString ULogFile::FilePath
private

Definition at line 147 of file LogFile.h.

Referenced by Clear(), Create(), OpenFilePath(), Write(), WriteQueuedMessages(), and WriteToFile().

◆ LogFileStream

std::ofstream ULogFile::LogFileStream
private

Definition at line 149 of file LogFile.h.

Referenced by Close(), WriteQueuedMessages(), and WriteToFile().

◆ MessageQueue

TArray<FString> ULogFile::MessageQueue
private

Definition at line 143 of file LogFile.h.

Referenced by Write(), and WriteQueuedMessages().


The documentation for this class was generated from the following files: