Skip to content

Commit

Permalink
First version of open sorce on Github
Browse files Browse the repository at this point in the history
  • Loading branch information
Takeshi Nakatani committed Dec 9, 2016
0 parents commit 1b4e5f1
Show file tree
Hide file tree
Showing 86 changed files with 43,333 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#### Additional Information
(The following information is very important in order to help us to help you. Omission of the following details may delay your support request or receive no attention at all.)

- Version of CHMPX being used (chmpx -version)
```
```

- System information (uname -a)
```
```

- Distro (cat /etc/issue)
```
```

#### Details about issue

6 changes: 6 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#### Relevant Issue (if applicable)
(If there are Issues related to this PullRequest, please list it.)

#### Details
(Please describe the details of PullRequest.)

149 changes: 149 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
#
# CHMPX
#
# Copyright 2014 Yahoo! JAPAN corporation.
#
# CHMPX is inprocess data exchange by MQ with consistent hashing.
# CHMPX is made for the purpose of the construction of
# original messaging system and the offer of the client
# library.
# CHMPX transfers messages between the client and the server/
# slave. CHMPX based servers are dispersed by consistent
# hashing and are automatically layouted. As a result, it
# provides a high performance, a high scalability.
#
# For the full copyright and license information, please view
# the LICENSE file that was distributed with this source code.
#
# AUTHOR: Takeshi Nakatani
# CREATE: Tue July 1 2014
# REVISION:
#

#
# Compiled Object files
#
*.slo
*.lo
*.o
*.Po
*.Plo

#
# Precompiled Headers
#
*.gch
*.pch

#
# Compiled Dynamic libraries
#
*.so
*.so.*
*.dylib
*.dll

#
# Fortran module files
#
*.mod

#
# Compiled Static libraries
#
*.lai
*.la
*.a
*.lib

#
# Executables
#
*.exe
*.out
*.app

#
# autotools
#
aclocal.m4
autom4te.cache
autoscan.log
config.guess
config.h
config.h.in
config.h.in~
config.log
config.status
config.sub
configure
configure.scan
depcomp
install-sh
libtool
ltmain.sh
m4
m4/*
missing
stamp-h1

#
# automakes
#
Makefile.in
*/Makefile.in
*/*/Makefile.in


#
# archive files and backups
#
*.tgz
*.tar.gz
*.rpm
*.swp

#
# object directories
#
.deps
.libs
*/.deps
*/.deps/*
*/.libs
*/.libs/*

#
# other files
#
compile
compile/*
test-driver
test-driver/*

#
# Other built objects
#
*.pc
Makefile
*/Makefile
*/*/Makefile

#
# project custom
#
RELEASE_VERSION
lib/chmpxversion.cc
*.k2h
src/chmpx
src/chmmain
tests/chmconftest
tests/chmstreamtest
tests/chmpxstatus
tests/chmpxbench

#
# VIM modelines
#
# vim:set ts=4 fenc=utf-8:
#
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "fullock"]
path = fullock
url = https://github.com/yahoojapan/fullock.git
[submodule "k2hash"]
path = k2hash
url = https://github.com/yahoojapan/k2hash.git
57 changes: 57 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
#
# FULLOCK - Fast User Level LOCK library by Yahoo! JAPAN
#
# Copyright 2015 Yahoo! JAPAN corporation.
#
# FULLOCK is fast locking library on user level by Yahoo! JAPAN.
# FULLOCK is following specifications.
#
# For the full copyright and license information, please view
# the LICENSE file that was distributed with this source code.
#
# AUTHOR: Takeshi Nakatani
# CREATE: Wed 7 Dec 2016
# REVISION:
#

language: cpp

sudo: required

dist: trusty

cache: apt

git:
submodules: false

before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq git autoconf autotools-dev gcc g++ make gdb dh-make fakeroot dpkg-dev devscripts libtool pkg-config libssl-dev libyaml-dev
- git submodule update --init --recursive
- git clone --recursive git://github.com/nakatani-yj/nakatani_yj_test_pj
- cd fullock
- ./autogen.sh
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone --recursive git://github.com/nakatani-yj/nakatani_yj_test_pj2
- cd k2hash
- ./autogen.sh
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..

script:
- ./autogen.sh
- ./configure --prefix=/usr
- make
- "cd tests && make check-TESTS"

#
# VIM modelines
#
# vim:set ts=4 fenc=utf-8:
#
11 changes: 11 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
1. Takeshi Nakatani <[email protected]>

Wrote from scratch the initial version of CHMPX.

2. Tetsuya Mochizuki <[email protected]>

Wrote tools for utilities.

3. Taku Ishihara <[email protected]>

Porting to multiple languages for k2hash.
21 changes: 21 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2014 Yahoo Japan Corporation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
chmpx (1.0.50) unstable; urgency=low

* First version of open sorce on Github

-- Takeshi Nakatani <[email protected]> Wed, 07 Dec 2016 18:31:17 +0900

Loading

0 comments on commit 1b4e5f1

Please sign in to comment.