Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
c94f1661
Commit
c94f1661
authored
Jul 01, 2020
by
DonLakeFlyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parent
f83ccb28
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
108 additions
and
0 deletions
+108
-0
qgroundcontrol.pro
qgroundcontrol.pro
+2
-0
QGCZlib.cc
src/QGCZlib.cc
+85
-0
QGCZlib.h
src/QGCZlib.h
+21
-0
No files found.
qgroundcontrol.pro
View file @
c94f1661
...
...
@@ -644,6 +644,7 @@ HEADERS += \
src
/
QGCQGeoCoordinate
.
h
\
src
/
QGCTemporaryFile
.
h
\
src
/
QGCToolbox
.
h
\
src
/
QGCZlib
.
h
\
src
/
QmlControls
/
AppMessages
.
h
\
src
/
QmlControls
/
EditPositionDialogController
.
h
\
src
/
QmlControls
/
FlightPathSegment
.
h
\
...
...
@@ -859,6 +860,7 @@ SOURCES += \
src
/
QGCQGeoCoordinate
.
cc
\
src
/
QGCTemporaryFile
.
cc
\
src
/
QGCToolbox
.
cc
\
src
/
QGCZlib
.
cc
\
src
/
QmlControls
/
AppMessages
.
cc
\
src
/
QmlControls
/
EditPositionDialogController
.
cc
\
src
/
QmlControls
/
FlightPathSegment
.
cc
\
...
...
src/QGCZlib.cc
0 → 100644
View file @
c94f1661
/****************************************************************************
*
* (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
#include "QGCZlib.h"
#include <QFile>
#include <QDir>
#include <QtDebug>
#include "zlib.h"
bool
QGCZlib
::
inflateGzipFile
(
const
QString
&
gzippedFileName
,
const
QString
&
decompressedFilename
)
{
bool
success
=
true
;
int
ret
;
const
int
cBuffer
=
1024
*
5
;
unsigned
char
inputBuffer
[
cBuffer
];
unsigned
char
outputBuffer
[
cBuffer
];
z_stream
strm
;
QFile
inputFile
(
gzippedFileName
);
if
(
!
inputFile
.
open
(
QIODevice
::
ReadOnly
))
{
qWarning
()
<<
"QGCZlib::inflateGzipFile: open input file failed"
<<
gzippedFileName
<<
inputFile
.
errorString
();
return
false
;
}
QFile
outputFile
(
decompressedFilename
);
if
(
!
outputFile
.
open
(
QIODevice
::
WriteOnly
|
QIODevice
::
Truncate
))
{
qWarning
()
<<
"QGCZlib::inflateGzipFile: open input file failed"
<<
outputFile
.
fileName
()
<<
outputFile
.
errorString
();
return
false
;
}
strm
.
zalloc
=
nullptr
;
strm
.
zfree
=
nullptr
;
strm
.
opaque
=
nullptr
;
strm
.
avail_in
=
0
;
strm
.
next_in
=
nullptr
;
ret
=
inflateInit2
(
&
strm
,
16
+
MAX_WBITS
);
if
(
ret
!=
Z_OK
)
{
qWarning
()
<<
"QGCZlib::inflateGzipFile: inflateInit2 failed:"
<<
ret
;
goto
Error
;
}
do
{
strm
.
avail_in
=
static_cast
<
unsigned
>
(
inputFile
.
read
((
char
*
)
inputBuffer
,
cBuffer
));
if
(
strm
.
avail_in
==
0
)
{
break
;
}
strm
.
next_in
=
inputBuffer
;
do
{
strm
.
avail_out
=
cBuffer
;
strm
.
next_out
=
outputBuffer
;
ret
=
inflate
(
&
strm
,
Z_NO_FLUSH
);
if
(
ret
!=
Z_OK
&&
ret
!=
Z_STREAM_END
)
{
qWarning
()
<<
"QGCZlib::inflateGzipFile: inflate failed:"
<<
ret
;
goto
Error
;
}
unsigned
cBytesInflated
=
cBuffer
-
strm
.
avail_out
;
qint64
cBytesWritten
=
outputFile
.
write
((
char
*
)
outputBuffer
,
static_cast
<
int
>
(
cBytesInflated
));
if
(
cBytesWritten
!=
cBytesInflated
)
{
qWarning
()
<<
"QGCZlib::inflateGzipFile: output file write failed:"
<<
outputFile
.
fileName
()
<<
outputFile
.
errorString
();
goto
Error
;
}
}
while
(
strm
.
avail_out
==
0
);
}
while
(
ret
!=
Z_STREAM_END
);
Out:
inflateEnd
(
&
strm
);
return
success
;
Error:
success
=
false
;
goto
Out
;
}
src/QGCZlib.h
0 → 100644
View file @
c94f1661
/****************************************************************************
*
* (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
#pragma once
#include <QString>
class
QGCZlib
{
public:
/// Decompresses the specified file to the specified directory
/// @param gzipFilename Fully qualified path to gzip file
/// @param decompressedFilename Fully qualified path to for file to decompress to
static
bool
inflateGzipFile
(
const
QString
&
gzippedFileName
,
const
QString
&
decompressedFilename
);
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment