Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
asapo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Joao Alvim Oliveira Dias De Almeida
asapo
Commits
d2379c46
Commit
d2379c46
authored
4 years ago
by
Carsten Patzke
Browse files
Options
Downloads
Patches
Plain Diff
[fabric::rds] Added fabric factory
parent
14966e1f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
receiver/src/receiver_data_server/fabric_server_rds.cpp
+9
-2
9 additions, 2 deletions
receiver/src/receiver_data_server/fabric_server_rds.cpp
receiver/src/receiver_data_server/fabric_server_rds.h
+10
-3
10 additions, 3 deletions
receiver/src/receiver_data_server/fabric_server_rds.h
with
19 additions
and
5 deletions
receiver/src/receiver_data_server/fabric_server_rds.cpp
+
9
−
2
View file @
d2379c46
...
...
@@ -2,7 +2,7 @@
using
namespace
asapo
;
FabricServerRds
::
FabricServerRds
(
const
std
::
string
&
address
)
{
FabricServerRds
::
FabricServerRds
(
const
std
::
string
&
address
)
:
factory__
(
fabric
::
GenerateDefaultFabricFactory
())
{
}
...
...
@@ -14,7 +14,14 @@ GenericRequests FabricServerRds::GetNewRequests(Error* err) const noexcept {
return
asapo
::
GenericRequests
();
}
Error
FabricServerRds
::
SendData
(
uint64_t
source_id
,
void
*
buf
,
uint64_t
size
)
const
noexcept
{
Error
FabricServerRds
::
SendResponse
(
const
ReceiverDataServerRequest
*
request
,
const
GenericNetworkResponse
*
response
)
const
noexcept
{
return
asapo
::
Error
();
}
Error
FabricServerRds
::
SendResponseAndSlotData
(
const
ReceiverDataServerRequest
*
request
,
const
GenericNetworkResponse
*
response
,
const
CacheMeta
*
cache_slot
)
const
noexcept
{
return
asapo
::
Error
();
}
...
...
This diff is collapsed.
Click to expand it.
receiver/src/receiver_data_server/fabric_server_rds.h
+
10
−
3
View file @
d2379c46
#ifndef ASAPO_RDS_FABRIC_SERVER_H
#define ASAPO_RDS_FABRIC_SERVER_H
#include
"net_server.h"
#include
"rds_net_server.h"
#include
"asapo_fabric/asapo_fabric.h"
namespace
asapo
{
class
FabricServerRds
:
public
NetServer
{
class
FabricServerRds
:
public
Rds
NetServer
{
public:
explicit
FabricServerRds
(
const
std
::
string
&
address
);
~
FabricServerRds
()
override
;
std
::
unique_ptr
<
asapo
::
fabric
::
FabricFactory
>
factory__
;
// modified in testings to mock system calls, otherwise do not touch
public:
// NetServer implementation
GenericRequests
GetNewRequests
(
Error
*
err
)
const
noexcept
override
;
Error
SendData
(
uint64_t
source_id
,
void
*
buf
,
uint64_t
size
)
const
noexcept
override
;
Error
SendResponse
(
const
ReceiverDataServerRequest
*
request
,
const
GenericNetworkResponse
*
response
)
const
noexcept
override
;
Error
SendResponseAndSlotData
(
const
ReceiverDataServerRequest
*
request
,
const
GenericNetworkResponse
*
response
,
const
CacheMeta
*
cache_slot
)
const
noexcept
override
;
void
HandleAfterError
(
uint64_t
source_id
)
const
noexcept
override
;
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment