summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-04-05main: add a white space to the elapsed time outputRyo Nakamura
It adjusts the position of XX:XX in elapsed timeou output.
2023-04-05main: print elapsed time instead ETA at the endRyo Nakamura
2023-03-26Merge branch 'main' of github.com:upa/mscpRyo Nakamura
2023-03-25fix error handling when scan thread failed.Ryo Nakamura
set chunk pool to fill to invoke copy threads when scan failed.
2023-03-22test: add sleep -1 before ssh-keyscanRyo Nakamura
2023-03-22fix invalid return semRyo Nakamura
2023-03-22test: set min_chunk_sz to 32768 on test_min_chunkRyo Nakamura
Page size of arm mac is 16384.
2023-03-19bump version to 0.0.8Ryo Nakamura
2023-03-16do not sem_close() for unnamed semaphoreRyo Nakamura
2023-03-16fix semaphore handling for macOSRyo Nakamura
2023-03-15add sem_create(), wrappign sem_init() for linux and sem_open() for macOSRyo Nakamura
2023-03-15linux also needs stdlib.h for random()Ryo Nakamura
2023-03-15test: add __repr__ to FileRyo Nakamura
2023-03-15macOS does not support sem_init. use sem_open insteadRyo Nakamura
2023-03-15fix readmeRyo Nakamura
2023-03-15test: add invalid kwargs testRyo Nakamura
2023-03-15add comment to mscp_scan(), why usleep(100)Ryo Nakamura
2023-03-15rename mscp_prepare to mscp_scanRyo Nakamura
2023-03-15set m->tid_prepare 0 to avoid duble joinRyo Nakamura
2023-03-15mscp: add -u max_startups option.Ryo Nakamura
pymscp also accepts keyword 'max_startups' (int).
2023-03-15fix: when msg_fd is 0, use STDOUT_FILENORyo Nakamura
2023-03-15do not fdopen(msg_fd) if msg_fd < 0Ryo Nakamura
2023-03-15introduce semaphore for concurrent connecting sshRyo Nakamura
instead of ssh_estab_queue (delay-based approach). MaxStartups in sshd_config limits number of conccurent incoming ssh connections. mscp_opts->max_startups adjusts this value.
2023-03-15cleanup message print functionsRyo Nakamura
2023-03-14rename ssh_connect_flag to ssh_estab_queueRyo Nakamura
2023-03-14implement ssh_connect_flagRyo Nakamura
Each copy thread establishes SSH/SFTP connection to remote host. A delay is inserted between SSH connecting to the remote.
2023-03-14cleanup mscp_prepare-related codeRyo Nakamura
2023-03-13mscp_prepare() scans source paths in a thread.Ryo Nakamura
This commit runs mscp_prepare() in a pthread. mscp copy threads run aysnchronously with mscp_prepare(). So, when mscp_prepare() has not finished yet (due to too many source files), we can start to copy files.
2023-03-13revise walk_src_path.Ryo Nakamura
In new walk_src_path, resolve dst path and resolve chunks are invoked when adding a path.
2023-03-13Update README.mdRyo Nakamura
2023-03-13bump version to 0.0.7Ryo Nakamura
2023-03-13fix mscp.pyRyo Nakamura
2023-03-13fix install libmscp.dylib to python package dir in macOSRyo Nakamura
2023-03-12remove VERSION from package file namesRyo Nakamura
This change enables downloading latest packages from URL https://github.com/upa/mscp/releases/latest/download/PACKAGE
2023-03-12test: add test_python.py for testing python-mscpRyo Nakamura
Dockerfiles also adapt themselvs for testing python-mscp bindings.
2023-03-12little cleanup for python bindingsRyo Nakamura
2023-03-12fix cleanupRyo Nakamura
2023-03-12setup.py: read version from VERSION fileRyo Nakamura
2023-03-12add destructor to mscp class to call mscp_free()Ryo Nakamura
2023-03-12mscp copy via python bindings works.Ryo Nakamura
ToDo: memory for struct instance in pymscp.c is not released until mscp.free() is called. It is memory leak in a typical pyhotn usage. Use python extension refcnt instead.
2023-03-11add mscp and pymscp python modules.Ryo Nakamura
pymscp is a C Python wrapper for libmscp functions. mscp module provides simple (?) Python API.
2023-03-11add note to mscp_cleanup() and mscp_free()Ryo Nakamura
mscp_join() must be called before mscp_cleanup() and mscp_free() are called. Need fix.
2023-03-11move direction from mscp_opts to mscp_init argumentRyo Nakamura
2023-03-11start to implement pymscp.cRyo Nakamura
2023-03-10remove numpy from test, and fix compiling single binary mscpRyo Nakamura
2023-03-10fix uninitialized dst_path_is_dir boolRyo Nakamura
2023-03-10add include GNUInstallDirsRyo Nakamura
2023-03-10now make install installs libmscpRyo Nakamura
2023-03-10fix CMakeLists to build libmscp on ubnutu 22.04Ryo Nakamura
2023-03-10merge main into libRyo Nakamura