This is an automated email from the ASF dual-hosted git repository.
lahirujayathilake pushed a change to branch agent-framewok-refactoring
in repository https://gitbox.apache.org/repos/asf/airavata.git
from ec4a624ad2 application interface pulled by the group
new c8f7853fa3 File server initial implementation
new e29842fcc1 Support to upload files
new e1bcf29695 extract process id using exp id
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
modules/agent-framework/agent-service/pom.xml | 3 +-
.../service/controllers/ExperimentController.java | 11 ++
.../service/handlers/AgentManagementHandler.java | 17 ++++
.../service/models/LaunchAgentResponse.java | 9 ++
.../airavata/helix/impl/task/AiravataTask.java | 2 +-
modules/file-server/pom.xml | 81 +++++++++++++++
.../main/assembly/file-service-bin-assembly.xml} | 5 +-
.../file/server/FileServerApplication.java | 16 +++
.../file/server/FileServerConfiguration.java | 47 +++++++++
.../file/server/controller/FileController.java | 89 ++++++++++++++++
.../file/server/model/AiravataDirectory.java | 49 +++++++++
.../airavata/file/server/model/AiravataFile.java | 47 +++++++++
.../file/server/model/FileUploadResponse.java | 47 +++++++++
.../file/server/service/AirvataFileService.java | 113 +++++++++++++++++++++
.../file/server/service/ProcessDataManager.java | 57 +++++++++++
.../src/main/resources/application.properties | 12 +++
.../distribution/bin/file-service-daemon.sh} | 13 ++-
.../resources/distribution/bin/file-service.sh} | 6 +-
.../src/main/resources/distribution/bin/setenv.sh | 0
.../distribution/conf/application.properties | 12 +++
.../main/resources/distribution/conf/log4j2.xml | 0
pom.xml | 2 +
22 files changed, 622 insertions(+), 16 deletions(-)
create mode 100644 modules/file-server/pom.xml
copy
modules/{agent-framework/agent-service/src/main/assembly/agent-service-bin-assembly.xml
=> file-server/src/main/assembly/file-service-bin-assembly.xml} (94%)
create mode 100644
modules/file-server/src/main/java/org/apache/airavata/file/server/FileServerApplication.java
create mode 100644
modules/file-server/src/main/java/org/apache/airavata/file/server/FileServerConfiguration.java
create mode 100644
modules/file-server/src/main/java/org/apache/airavata/file/server/controller/FileController.java
create mode 100644
modules/file-server/src/main/java/org/apache/airavata/file/server/model/AiravataDirectory.java
create mode 100644
modules/file-server/src/main/java/org/apache/airavata/file/server/model/AiravataFile.java
create mode 100644
modules/file-server/src/main/java/org/apache/airavata/file/server/model/FileUploadResponse.java
create mode 100644
modules/file-server/src/main/java/org/apache/airavata/file/server/service/AirvataFileService.java
create mode 100644
modules/file-server/src/main/java/org/apache/airavata/file/server/service/ProcessDataManager.java
create mode 100644
modules/file-server/src/main/resources/application.properties
copy
modules/{distribution/src/main/resources/email-monitor/bin/email-monitor-daemon.sh
=> file-server/src/main/resources/distribution/bin/file-service-daemon.sh}
(87%)
copy
modules/{agent-framework/agent-service/src/main/resources/distribution/bin/agent-service.sh
=> file-server/src/main/resources/distribution/bin/file-service.sh} (84%)
mode change 100755 => 100644
copy modules/{agent-framework/agent-service =>
file-server}/src/main/resources/distribution/bin/setenv.sh (100%)
mode change 100755 => 100644
create mode 100644
modules/file-server/src/main/resources/distribution/conf/application.properties
copy modules/{agent-framework/agent-service =>
file-server}/src/main/resources/distribution/conf/log4j2.xml (100%)