- Notifications
You must be signed in to change notification settings - Fork10
embed snappy and sparkey into Ruby extension#7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
wjordan wants to merge1 commit intoemnl:masterChoose a base branch fromwjordan:embed
base:master
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
Uh oh!
There was an error while loading.Please reload this page.
Open
Changes fromall commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
1 change: 1 addition & 0 deletions.gitignore
This file contains hidden or 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 |
---|---|---|
@@ -18,6 +18,7 @@ test/version_tmp | ||
tmp | ||
Makefile | ||
extconf.h | ||
mkmf.log | ||
.DS_Store |
6 changes: 6 additions & 0 deletions.gitmodules
This file contains hidden or 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,6 @@ | ||
[submodule "ext/gnista/sparkey"] | ||
path = ext/gnista/sparkey | ||
url = https://github.com/spotify/sparkey.git | ||
[submodule "ext/gnista/snappy"] | ||
path = ext/gnista/snappy | ||
url = https://github.com/google/snappy |
7 changes: 3 additions & 4 deletionsREADME.md
This file contains hidden or 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
63 changes: 61 additions & 2 deletionsext/gnista/extconf.rb
This file contains hidden or 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
2 changes: 1 addition & 1 deletionext/gnista/gnista.c
This file contains hidden or 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#include <ruby.h> | ||
#include <sparkey.h> | ||
typedef uint8_t bool; | ||
#define true 1 | ||
1 change: 1 addition & 0 deletionsext/gnista/snappy
94 changes: 94 additions & 0 deletionsext/gnista/snappy-stubs-public.h
This file contains hidden or 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,94 @@ | ||
// Copyright 2011 Google Inc. All Rights Reserved. | ||
// Author: sesse@google.com (Steinar H. Gunderson) | ||
// | ||
// Redistribution and use in source and binary forms, with or without | ||
// modification, are permitted provided that the following conditions are | ||
// met: | ||
// | ||
// * Redistributions of source code must retain the above copyright | ||
// notice, this list of conditions and the following disclaimer. | ||
// * Redistributions in binary form must reproduce the above | ||
// copyright notice, this list of conditions and the following disclaimer | ||
// in the documentation and/or other materials provided with the | ||
// distribution. | ||
// * Neither the name of Google Inc. nor the names of its | ||
// contributors may be used to endorse or promote products derived from | ||
// this software without specific prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
// | ||
// Various type stubs for the open-source version of Snappy. | ||
// | ||
// This file cannot include config.h, as it is included from snappy.h, | ||
// which is a public header. Instead, snappy-stubs-public.h is generated by | ||
// from snappy-stubs-public.h.in at configure time. | ||
#ifndef THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_STUBS_PUBLIC_H_ | ||
#define THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_STUBS_PUBLIC_H_ | ||
#ifdef HAVE_STDINT_H | ||
#include <stdint.h> | ||
#endif // HAVE_STDDEF_H | ||
#ifdef HAVE_STDDEF_H | ||
#include <stddef.h> | ||
#endif // HAVE_STDDEF_H | ||
#ifdef HAVE_SYS_UIO_H | ||
#include <sys/uio.h> | ||
#endif // HAVE_SYS_UIO_H | ||
#define SNAPPY_MAJOR 1 | ||
#define SNAPPY_MINOR 1 | ||
#define SNAPPY_PATCHLEVEL 7 | ||
#define SNAPPY_VERSION \ | ||
((SNAPPY_MAJOR << 16) | (SNAPPY_MINOR << 8) | SNAPPY_PATCHLEVEL) | ||
#include <string> | ||
namespace snappy { | ||
#ifdef HAVE_STDINT_H | ||
typedef int8_t int8; | ||
typedef uint8_t uint8; | ||
typedef int16_t int16; | ||
typedef uint16_t uint16; | ||
typedef int32_t int32; | ||
typedef uint32_t uint32; | ||
typedef int64_t int64; | ||
typedef uint64_t uint64; | ||
#else | ||
typedef signed char int8; | ||
typedef unsigned char uint8; | ||
typedef short int16; | ||
typedef unsigned short uint16; | ||
typedef int int32; | ||
typedef unsigned int uint32; | ||
typedef long long int64; | ||
typedef unsigned long long uint64; | ||
#endif // HAVE_STDINT_H | ||
typedef std::string string; | ||
#ifndef HAVE_SYS_UIO_H | ||
// Windows does not have an iovec type, yet the concept is universally useful. | ||
// It is simple to define it ourselves, so we put it inside our own namespace. | ||
struct iovec { | ||
void* iov_base; | ||
size_t iov_len; | ||
}; | ||
#endif // !HAVE_SYS_UIO_H | ||
} // namespace snappy | ||
#endif // THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_STUBS_PUBLIC_H_ |
1 change: 1 addition & 0 deletionsext/gnista/sparkey
4 changes: 3 additions & 1 deletiongnista.gemspec
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.