-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathCatalogClientImpl.cpp
More file actions
190 lines (161 loc) · 7.03 KB
/
CatalogClientImpl.cpp
File metadata and controls
190 lines (161 loc) · 7.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/*
* Copyright (C) 2019-2022 HERE Europe B.V.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
* License-Filename: LICENSE
*/
#include "CatalogClientImpl.h"
#include <utility>
#include <olp/core/cache/DefaultCache.h>
#include <olp/core/client/OlpClientSettingsFactory.h>
#include <olp/core/client/PendingRequests.h>
#include <olp/core/logging/Log.h>
#include "Common.h"
#include "repositories/CatalogRepository.h"
namespace olp {
namespace dataservice {
namespace read {
namespace {
constexpr auto kLogTag = "CatalogClientImpl";
}
CatalogClientImpl::CatalogClientImpl(client::HRN catalog,
client::OlpClientSettings settings)
: catalog_(std::move(catalog)),
settings_(std::move(settings)),
lookup_client_(catalog_, settings_),
task_sink_(settings_.task_scheduler) {
if (!settings_.cache) {
settings_.cache = client::OlpClientSettingsFactory::CreateDefaultCache({});
}
}
bool CatalogClientImpl::CancelPendingRequests() {
OLP_SDK_LOG_TRACE(kLogTag, "CancelPendingRequests");
task_sink_.CancelTasks();
return true;
}
client::CancellationToken CatalogClientImpl::GetCatalog(
CatalogRequest request, CatalogResponseCallback callback) {
auto schedule_get_catalog = [&](CatalogRequest request,
CatalogResponseCallback callback) {
auto catalog = catalog_;
auto settings = settings_;
auto lookup_client = lookup_client_;
auto get_catalog_task = [=](client::CancellationContext context) {
repository::CatalogRepository repository(catalog, settings,
lookup_client);
return repository.GetCatalog(request, std::move(context));
};
return task_sink_.AddTask(std::move(get_catalog_task), std::move(callback),
thread::NORMAL);
};
return ScheduleFetch(std::move(schedule_get_catalog), std::move(request),
std::move(callback));
}
client::CancellableFuture<CatalogResponse> CatalogClientImpl::GetCatalog(
CatalogRequest request) {
auto promise = std::make_shared<std::promise<CatalogResponse>>();
auto cancel_token =
GetCatalog(std::move(request), [promise](CatalogResponse response) {
promise->set_value(std::move(response));
});
return client::CancellableFuture<CatalogResponse>(std::move(cancel_token),
std::move(promise));
}
client::CancellationToken CatalogClientImpl::GetLatestVersion(
CatalogVersionRequest request, CatalogVersionCallback callback) {
OLP_SDK_LOG_TRACE_F(kLogTag, "GetCatalog '%s'", request.CreateKey().c_str());
auto schedule_get_latest_version = [&](CatalogVersionRequest request,
CatalogVersionCallback callback) {
auto catalog = catalog_;
auto settings = settings_;
auto lookup_client = lookup_client_;
auto get_latest_version_task = [=](client::CancellationContext context) {
repository::CatalogRepository repository(catalog, settings,
lookup_client);
return repository.GetLatestVersion(request, std::move(context));
};
return task_sink_.AddTask(std::move(get_latest_version_task),
std::move(callback), thread::NORMAL);
};
return ScheduleFetch(std::move(schedule_get_latest_version),
std::move(request), std::move(callback));
}
client::CancellableFuture<CatalogVersionResponse>
CatalogClientImpl::GetLatestVersion(CatalogVersionRequest request) {
auto promise = std::make_shared<std::promise<CatalogVersionResponse>>();
auto cancel_token = GetLatestVersion(
std::move(request), [promise](CatalogVersionResponse response) {
promise->set_value(std::move(response));
});
return client::CancellableFuture<CatalogVersionResponse>(
std::move(cancel_token), std::move(promise));
}
CatalogVersionResponse CatalogClientImpl::GetLatestVersion(
CatalogVersionRequest request, client::CancellationContext context) {
auto catalog = catalog_;
auto settings = settings_;
auto lookup_client = lookup_client_;
repository::CatalogRepository repository(catalog, settings, lookup_client);
return repository.GetLatestVersion(request, std::move(context));
}
client::CancellationToken CatalogClientImpl::ListVersions(
VersionsRequest request, VersionsResponseCallback callback) {
auto catalog = catalog_;
auto settings = settings_;
auto lookup_client = lookup_client_;
auto versions_list_task =
[=](client::CancellationContext context) -> VersionsResponse {
repository::CatalogRepository repository(catalog, settings, lookup_client);
return repository.GetVersionsList(request, std::move(context));
};
return task_sink_.AddTask(std::move(versions_list_task), std::move(callback),
thread::NORMAL);
}
client::CancellableFuture<VersionsResponse> CatalogClientImpl::ListVersions(
VersionsRequest request) {
auto promise = std::make_shared<std::promise<VersionsResponse>>();
auto cancel_token =
ListVersions(std::move(request), [promise](VersionsResponse response) {
promise->set_value(std::move(response));
});
return client::CancellableFuture<VersionsResponse>(std::move(cancel_token),
std::move(promise));
}
client::CancellationToken CatalogClientImpl::GetCompatibleVersions(
CompatibleVersionsRequest request, CompatibleVersionsCallback callback) {
auto catalog = catalog_;
auto settings = settings_;
auto lookup_client = lookup_client_;
auto get_dependency_task =
[=](client::CancellationContext context) -> CompatibleVersionsResponse {
repository::CatalogRepository repository(catalog, settings, lookup_client);
return repository.GetCompatibleVersions(request, std::move(context));
};
return task_sink_.AddTask(std::move(get_dependency_task), std::move(callback),
thread::NORMAL);
}
client::CancellableFuture<CompatibleVersionsResponse>
CatalogClientImpl::GetCompatibleVersions(CompatibleVersionsRequest request) {
auto promise = std::make_shared<std::promise<CompatibleVersionsResponse>>();
auto cancel_token = GetCompatibleVersions(
std::move(request), [promise](CompatibleVersionsResponse response) {
promise->set_value(std::move(response));
});
return client::CancellableFuture<CompatibleVersionsResponse>(
std::move(cancel_token), std::move(promise));
}
} // namespace read
} // namespace dataservice
} // namespace olp