Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Kirill Smelkov
wendelin.core
Commits
72311505
Commit
72311505
authored
Jan 06, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
5f927f12
Changes
48
Hide whitespace changes
Inline
Side-by-side
Showing
48 changed files
with
56 additions
and
56 deletions
+56
-56
Makefile
Makefile
+1
-1
bigfile/__init__.py
bigfile/__init__.py
+1
-1
bigfile/_bigfile.c
bigfile/_bigfile.c
+1
-1
bigfile/_bigfile.h
bigfile/_bigfile.h
+1
-1
bigfile/_file_zodb.pyx
bigfile/_file_zodb.pyx
+1
-1
bigfile/file_zodb.cpp
bigfile/file_zodb.cpp
+2
-2
bigfile/file_zodb.py
bigfile/file_zodb.py
+1
-1
bigfile/tests/bench_virtmem.c
bigfile/tests/bench_virtmem.c
+1
-1
bigfile/tests/test_filezodb.py
bigfile/tests/test_filezodb.py
+1
-1
bigfile/tests/test_virtmem.c
bigfile/tests/test_virtmem.c
+1
-1
bigfile/virtmem.c
bigfile/virtmem.c
+1
-1
include/wendelin/bigfile/file.h
include/wendelin/bigfile/file.h
+1
-1
include/wendelin/bigfile/virtmem.h
include/wendelin/bigfile/virtmem.h
+1
-1
lib/tests/test_zodb.py
lib/tests/test_zodb.py
+1
-1
lib/zodb.py
lib/zodb.py
+1
-1
setup.py
setup.py
+1
-1
wcfs/__init__.py
wcfs/__init__.py
+1
-1
wcfs/gen-set
wcfs/gen-set
+1
-1
wcfs/gen-δtail
wcfs/gen-δtail
+1
-1
wcfs/internal/_wcfs.pxd
wcfs/internal/_wcfs.pxd
+1
-1
wcfs/internal/_wcfs.pyx
wcfs/internal/_wcfs.pyx
+1
-1
wcfs/internal/io.pyx
wcfs/internal/io.pyx
+2
-2
wcfs/internal/mm.pyx
wcfs/internal/mm.pyx
+2
-2
wcfs/internal/wcfs.h
wcfs/internal/wcfs.h
+1
-1
wcfs/internal/wcfs_misc.cpp
wcfs/internal/wcfs_misc.cpp
+2
-2
wcfs/internal/wcfs_misc.h
wcfs/internal/wcfs_misc.h
+2
-2
wcfs/internal/wcfs_test.pyx
wcfs/internal/wcfs_test.pyx
+2
-2
wcfs/internal/wcfs_virtmem.cpp
wcfs/internal/wcfs_virtmem.cpp
+1
-1
wcfs/internal/wcfs_watchlink.cpp
wcfs/internal/wcfs_watchlink.cpp
+1
-1
wcfs/internal/wcfs_watchlink.h
wcfs/internal/wcfs_watchlink.h
+1
-1
wcfs/misc.go
wcfs/misc.go
+1
-1
wcfs/misc_norace.go
wcfs/misc_norace.go
+1
-1
wcfs/misc_race.go
wcfs/misc_race.go
+1
-1
wcfs/set.go
wcfs/set.go
+1
-1
wcfs/set.go.in
wcfs/set.go.in
+1
-1
wcfs/testdata/zblk_test_gen.py
wcfs/testdata/zblk_test_gen.py
+1
-1
wcfs/testprog/wcfs_readcancel.py
wcfs/testprog/wcfs_readcancel.py
+2
-2
wcfs/wcfs.go
wcfs/wcfs.go
+1
-1
wcfs/wcfs_test.py
wcfs/wcfs_test.py
+1
-1
wcfs/zblk.go
wcfs/zblk.go
+1
-1
wcfs/zblk_test.go
wcfs/zblk_test.go
+1
-1
wcfs/zset_bigfile.go
wcfs/zset_bigfile.go
+1
-1
wcfs/zset_i64.go
wcfs/zset_i64.go
+1
-1
wcfs/zset_object.go
wcfs/zset_object.go
+1
-1
wcfs/zset_tree.go
wcfs/zset_tree.go
+1
-1
wcfs/δbtail.go
wcfs/δbtail.go
+1
-1
wcfs/δftail.go
wcfs/δftail.go
+2
-2
wcfs/δtail.go
wcfs/δtail.go
+1
-1
No files found.
Makefile
View file @
72311505
# Wendelin.core | Instructions to build & test
# Copyright (C) 2014-20
19
Nexedi SA and Contributors.
# Copyright (C) 2014-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
bigfile/__init__.py
View file @
72311505
# -*- coding: utf-8 -*-
# BigFile submodule for Wendelin
# Copyright (C) 2014-20
15
Nexedi SA and Contributors.
# Copyright (C) 2014-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
bigfile/_bigfile.c
View file @
72311505
/* Wendelin.bigfile | Python interface to memory/files
* Copyright (C) 2014-20
19
Nexedi SA and Contributors.
* Copyright (C) 2014-20
20
Nexedi SA and Contributors.
* Kirill Smelkov <kirr@nexedi.com>
*
* This program is free software: you can Use, Study, Modify and Redistribute
...
...
bigfile/_bigfile.h
View file @
72311505
...
...
@@ -2,7 +2,7 @@
#define _WENDELIN_BIGFILE__BIGFILE_H
/* Wendelin.bigfile | Python interface to memory/files
* Copyright (C) 2014-20
19
Nexedi SA and Contributors.
* Copyright (C) 2014-20
20
Nexedi SA and Contributors.
* Kirill Smelkov <kirr@nexedi.com>
*
* This program is free software: you can Use, Study, Modify and Redistribute
...
...
bigfile/_file_zodb.pyx
View file @
72311505
# -*- coding: utf-8 -*-
# Wendelin.bigfile | WCFS part of BigFile ZODB backend
# Copyright (C) 2014-20
19
Nexedi SA and Contributors.
# Copyright (C) 2014-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
bigfile/file_zodb.cpp
View file @
72311505
// Copyright (C) 2019 Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
// Copyright (C) 2019
-2020
Nexedi SA and Contributors.
//
Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
// it under the terms of the GNU General Public License version 3, or (at your
...
...
bigfile/file_zodb.py
View file @
72311505
# -*- coding: utf-8 -*-
# Wendelin.bigfile | BigFile ZODB backend
# Copyright (C) 2014-20
19
Nexedi SA and Contributors.
# Copyright (C) 2014-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
bigfile/tests/bench_virtmem.c
View file @
72311505
/* Wendelin.bigfile | virtual memory benchmarks
* Copyright (C) 2017-20
19
Nexedi SA and Contributors.
* Copyright (C) 2017-20
20
Nexedi SA and Contributors.
* Kirill Smelkov <kirr@nexedi.com>
*
* This program is free software: you can Use, Study, Modify and Redistribute
...
...
bigfile/tests/test_filezodb.py
View file @
72311505
# Wendelin.core.bigfile | Tests for ZODB BigFile backend
# Copyright (C) 2014-20
19
Nexedi SA and Contributors.
# Copyright (C) 2014-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
bigfile/tests/test_virtmem.c
View file @
72311505
/* Wendelin.bigfile | virtual memory tests
* Copyright (C) 2014-20
19
Nexedi SA and Contributors.
* Copyright (C) 2014-20
20
Nexedi SA and Contributors.
* Kirill Smelkov <kirr@nexedi.com>
*
* This program is free software: you can Use, Study, Modify and Redistribute
...
...
bigfile/virtmem.c
View file @
72311505
/* Wendelin.bigfile | Virtual memory
* Copyright (C) 2014-20
19
Nexedi SA and Contributors.
* Copyright (C) 2014-20
20
Nexedi SA and Contributors.
* Kirill Smelkov <kirr@nexedi.com>
*
* This program is free software: you can Use, Study, Modify and Redistribute
...
...
include/wendelin/bigfile/file.h
View file @
72311505
...
...
@@ -2,7 +2,7 @@
#define _WENDELIN_BIGFILE_FILE_H_
/* Wendelin.bigfile | Base file class
* Copyright (C) 2014-20
19
Nexedi SA and Contributors.
* Copyright (C) 2014-20
20
Nexedi SA and Contributors.
* Kirill Smelkov <kirr@nexedi.com>
*
* This program is free software: you can Use, Study, Modify and Redistribute
...
...
include/wendelin/bigfile/virtmem.h
View file @
72311505
...
...
@@ -2,7 +2,7 @@
#define _WENDELIN_BIGFILE_VIRTMEM_H_
/* Wendelin.bigfile | Virtual memory
* Copyright (C) 2014-20
19
Nexedi SA and Contributors.
* Copyright (C) 2014-20
20
Nexedi SA and Contributors.
* Kirill Smelkov <kirr@nexedi.com>
*
* This program is free software: you can Use, Study, Modify and Redistribute
...
...
lib/tests/test_zodb.py
View file @
72311505
# Wendelin.core.bigfile | Tests for ZODB utilities
# Copyright (C) 2014-20
19
Nexedi SA and Contributors.
# Copyright (C) 2014-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
lib/zodb.py
View file @
72311505
# Wendelin.bigfile | common ZODB-related helpers
# Copyright (C) 2014-20
19
Nexedi SA and Contributors.
# Copyright (C) 2014-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
setup.py
View file @
72311505
# Wendelin.core | pythonic package setup
# Copyright (C) 2014-20
19
Nexedi SA and Contributors.
# Copyright (C) 2014-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/__init__.py
View file @
72311505
# -*- coding: utf-8 -*-
# Copyright (C) 2018-20
19
Nexedi SA and Contributors.
# Copyright (C) 2018-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/gen-set
View file @
72311505
...
...
@@ -2,7 +2,7 @@
# set.go.in -> specialized with concrete types
# gen-set package KIND VALUE out
# Copyright (C) 2018-20
19
Nexedi SA and Contributors.
# Copyright (C) 2018-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/gen-δtail
View file @
72311505
...
...
@@ -2,7 +2,7 @@
# δtail.go.in -> specialized with concrete types
# gen-δtail KIND ID out
# Copyright (C) 2018-20
19
Nexedi SA and Contributors.
# Copyright (C) 2018-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/internal/_wcfs.pxd
View file @
72311505
# -*- coding: utf-8 -*-
# Copyright (C) 2018-20
19
Nexedi SA and Contributors.
# Copyright (C) 2018-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/internal/_wcfs.pyx
View file @
72311505
# -*- coding: utf-8 -*-
# Copyright (C) 2018-20
19
Nexedi SA and Contributors.
# Copyright (C) 2018-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/internal/io.pyx
View file @
72311505
# Copyright (C) 2019 Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
# Copyright (C) 2019
-2020
Nexedi SA and Contributors.
#
Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
# it under the terms of the GNU General Public License version 3, or (at your
...
...
wcfs/internal/mm.pyx
View file @
72311505
# Copyright (C) 2019 Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
# Copyright (C) 2019
-2020
Nexedi SA and Contributors.
#
Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
# it under the terms of the GNU General Public License version 3, or (at your
...
...
wcfs/internal/wcfs.h
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/internal/wcfs_misc.cpp
View file @
72311505
// Copyright (C) 2019 Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
// Copyright (C) 2019
-2020
Nexedi SA and Contributors.
//
Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
// it under the terms of the GNU General Public License version 3, or (at your
...
...
wcfs/internal/wcfs_misc.h
View file @
72311505
// Copyright (C) 2019 Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
// Copyright (C) 2019
-2020
Nexedi SA and Contributors.
//
Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
// it under the terms of the GNU General Public License version 3, or (at your
...
...
wcfs/internal/wcfs_test.pyx
View file @
72311505
# Copyright (C) 2019 Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
# Copyright (C) 2019
-2020
Nexedi SA and Contributors.
#
Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
# it under the terms of the GNU General Public License version 3, or (at your
...
...
wcfs/internal/wcfs_virtmem.cpp
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/internal/wcfs_watchlink.cpp
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/internal/wcfs_watchlink.h
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/misc.go
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/misc_norace.go
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/misc_race.go
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/set.go
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/set.go.in
View file @
72311505
//
Copyright
(
C
)
2015
-
20
19
Nexedi
SA
and
Contributors
.
//
Copyright
(
C
)
2015
-
20
20
Nexedi
SA
and
Contributors
.
//
Kirill
Smelkov
<
kirr
@
nexedi
.
com
>
//
//
This
program
is
free
software
:
you
can
Use
,
Study
,
Modify
and
Redistribute
...
...
wcfs/testdata/zblk_test_gen.py
View file @
72311505
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# Copyright (C) 2018-20
19
Nexedi SA and Contributors.
# Copyright (C) 2018-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/testprog/wcfs_readcancel.py
View file @
72311505
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2019 Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
# Copyright (C) 2019
-2020
Nexedi SA and Contributors.
#
Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
# it under the terms of the GNU General Public License version 3, or (at your
...
...
wcfs/wcfs.go
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/wcfs_test.py
View file @
72311505
# -*- coding: utf-8 -*-
# Copyright (C) 2018-20
19
Nexedi SA and Contributors.
# Copyright (C) 2018-20
20
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/zblk.go
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/zblk_test.go
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/zset_bigfile.go
View file @
72311505
// Code generated by gen-set BigFile *BigFile; DO NOT EDIT.
// Copyright (C) 2015-20
19
Nexedi SA and Contributors.
// Copyright (C) 2015-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/zset_i64.go
View file @
72311505
// Code generated by gen-set I64 int64; DO NOT EDIT.
// Copyright (C) 2015-20
19
Nexedi SA and Contributors.
// Copyright (C) 2015-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/zset_object.go
View file @
72311505
// Code generated by gen-set Object interface{}; DO NOT EDIT.
// Copyright (C) 2015-20
19
Nexedi SA and Contributors.
// Copyright (C) 2015-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/zset_tree.go
View file @
72311505
// Code generated by gen-set Tree *Tree; DO NOT EDIT.
// Copyright (C) 2015-20
19
Nexedi SA and Contributors.
// Copyright (C) 2015-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/δbtail.go
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
wcfs/δftail.go
View file @
72311505
// Copyright (C) 2019 Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
// Copyright (C) 2019
-2020
Nexedi SA and Contributors.
//
Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
// it under the terms of the GNU General Public License version 3, or (at your
...
...
wcfs/δtail.go
View file @
72311505
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
20
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
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