forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pulsar-common] Support Snappy compression for Java (apache#4259)
* Support Snappy compression for java. * Some minor fix to pass unit tests * Format the cpp code * Added support for c++ client * Format the cpp code
- Loading branch information
Showing
20 changed files
with
241 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
#include "CompressionCodecSnappy.h" | ||
|
||
#if HAS_SNAPPY | ||
#include <snappy.h> | ||
#include "snappy-c.h" | ||
|
||
namespace pulsar { | ||
|
||
SharedBuffer CompressionCodecSnappy::encode(const SharedBuffer& raw) { | ||
// Get the max size of the compressed data and allocate a buffer to hold it | ||
int maxCompressedSize = snappy_max_compressed_length(raw.readableBytes()); | ||
SharedBuffer compressed = SharedBuffer::allocate(maxCompressedSize); | ||
|
||
unsigned long bytesWritten = maxCompressedSize; | ||
|
||
snappy_status status = | ||
snappy_compress(raw.data(), raw.readableBytes(), compressed.mutableData(), &bytesWritten); | ||
|
||
if (status != SNAPPY_OK) { | ||
LOG_ERROR("Failed to compress to snappy. res=" << res); | ||
abort(); | ||
} | ||
|
||
compressed.bytesWritten(bytesWritten); | ||
|
||
return compressed; | ||
} | ||
|
||
bool CompressionCodecSnappy::decode(const SharedBuffer& encoded, uint32_t uncompressedSize, | ||
SharedBuffer& decoded) { | ||
SharedBuffer decompressed = SharedBuffer::allocate(uncompressedSize); | ||
|
||
snappy_status status = snappy_uncompress(encoded.data(), encoded.readableBytes(), | ||
decompressed.mutableData(), uncompressedSize); | ||
|
||
if (status == SNAPPY_OK) { | ||
decoded = decompressed; | ||
decoded.setWriterIndex(uncompressedSize); | ||
return true; | ||
} else { | ||
// Decompression failed | ||
return false; | ||
} | ||
} | ||
} // namespace pulsar | ||
|
||
#else // No SNAPPY | ||
|
||
namespace pulsar { | ||
|
||
SharedBuffer CompressionCodecSnappy::encode(const SharedBuffer& raw) { | ||
throw "Snappy compression not supported"; | ||
} | ||
|
||
bool CompressionCodecSnappy::decode(const SharedBuffer& encoded, uint32_t uncompressedSize, | ||
SharedBuffer& decoded) { | ||
throw "Snappy compression not supported"; | ||
} | ||
} // namespace pulsar | ||
|
||
#endif // HAS_SNAPPY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
#pragma once | ||
|
||
#include "CompressionCodec.h" | ||
|
||
namespace pulsar { | ||
|
||
class CompressionCodecSnappy : public CompressionCodec { | ||
public: | ||
SharedBuffer encode(const SharedBuffer& raw); | ||
|
||
bool decode(const SharedBuffer& encoded, uint32_t uncompressedSize, SharedBuffer& decoded); | ||
}; | ||
} // namespace pulsar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
pulsar-common/src/main/java/org/apache/pulsar/common/api/proto/PulsarApi.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.