Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MicroCART
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Distributed Autonomous Networked Control Lab
MicroCART
Commits
a33faed4
Commit
a33faed4
authored
3 years ago
by
Zach Eisele
Browse files
Options
Downloads
Patches
Plain Diff
constantly read log file
parent
43a8619d
No related branches found
No related tags found
1 merge request
!77
Groundstation gui rough edits
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
groundStation/gui/MicroCART/logworker.cpp
+47
-1
47 additions, 1 deletion
groundStation/gui/MicroCART/logworker.cpp
groundStation/gui/MicroCART/logworker.h
+2
-0
2 additions, 0 deletions
groundStation/gui/MicroCART/logworker.h
with
49 additions
and
1 deletion
groundStation/gui/MicroCART/logworker.cpp
+
47
−
1
View file @
a33faed4
...
...
@@ -26,7 +26,19 @@ void LogWorker::connectBackend()
}
else
{
qInfo
()
<<
"Attempted to connect crazyflieworker when already connected!"
;
}
startReadingLogFile
();
}
std
::
string
LogWorker
::
getLogFile
(
int
type
)
{
struct
frontend_getlogfile_data
logfile
;
char
fname
[
256
];
logfile
.
command
=
type
;
logfile
.
name
=
fname
;
if
(
frontend_getlogfile
(
conn
,
&
logfile
))
{
return
""
;
}
std
::
string
result
(
logfile
.
name
,
strlen
(
logfile
.
name
));
return
result
;
}
/**
...
...
@@ -42,4 +54,38 @@ void LogWorker::disconnectBackend()
conn
=
NULL
;
emit
(
disconnected
());
}
}
void
LogWorker
::
startReadingLogFile
()
{
std
::
string
filename
=
getLogFile
(
0
);
std
::
ifstream
logFile
;
logFile
.
open
(
filename
.
c_str
());
//std::streamoff p = 0;
std
::
string
line
;
// while(true) {
// logFile.seekg(p);
// while(std::getline(logFile, line)) {
// QString result(line.c_str());
// qInfo() << result;
// if(logFile.tellg() == -1) {
// p = p + line.size();
// }
// else {
// p = logFile.tellg();
// }
// }
// logFile.clear();
// }
while
(
true
)
{
while
(
std
::
getline
(
logFile
,
line
))
{
QString
result
(
line
.
c_str
());
qInfo
()
<<
result
;
}
if
(
!
logFile
.
eof
())
{
break
;
}
logFile
.
clear
();
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
groundStation/gui/MicroCART/logworker.h
+
2
−
0
View file @
a33faed4
...
...
@@ -38,6 +38,8 @@ public slots:
private:
struct
backend_conn
*
conn
;
void
startReadingLogFile
();
std
::
string
getLogFile
(
int
type
);
};
#endif // LOGWORKER_H
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment