Class CategoryServiceImpl
- java.lang.Object
-
- com.commercetools.sync.services.impl.CategoryServiceImpl
-
- All Implemented Interfaces:
CategoryService
public final class CategoryServiceImpl extends java.lang.Object implements CategoryService
Implementation of CategoryService interface.
-
-
Field Summary
Fields Modifier and Type Field Description protected com.github.benmanes.caffeine.cache.Cache<java.lang.String,java.lang.String>
keyToIdCache
protected static int
MAXIMUM_ALLOWED_UPDATE_ACTIONS
-
Constructor Summary
Constructors Constructor Description CategoryServiceImpl(CategorySyncOptions syncOptions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>>
cacheKeysToIds(java.util.Set<java.lang.String> categoryKeys)
Filters out the keys which are already cached and fetches only the not-cached category keys from the CTP project defined in an injectedProjectApiRoot
and stores a mapping for every category to id in the cached map of keys -> ids and returns this cached map.java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>>
cacheKeysToIdsUsingGraphQl(java.util.Set<java.lang.String> keysToCache, GraphQlQueryResource queryResource)
java.util.concurrent.CompletionStage<java.util.Optional<com.commercetools.api.models.category.Category>>
createCategory(com.commercetools.api.models.category.CategoryDraft categoryDraft)
Given a resource draft of typeCategoryDraft
, this method attempts to create a resourceCategory
based on it in the CTP project defined by the sync options.java.util.concurrent.CompletionStage<java.util.Optional<java.lang.String>>
fetchCachedCategoryId(java.lang.String key)
Given akey
, this method first checks if cached map of category keys -> ids contains the key.java.util.concurrent.CompletionStage<java.util.Optional<com.commercetools.api.models.category.Category>>
fetchCategory(java.lang.String key)
Given a category key, this method fetches a category that matches this given key in the CTP project defined in a potentially injectedProjectApiRoot
.java.util.concurrent.CompletionStage<java.util.Set<com.commercetools.api.models.category.Category>>
fetchMatchingCategoriesByKeys(java.util.Set<java.lang.String> keys)
Given aSet
of category keys, this method fetches a set of all the categories, matching this given set of keys in the CTP project, defined in an injectedProjectApiRoot
.protected java.util.Set<java.lang.String>
getKeysNotCached(java.util.Set<java.lang.String> keys)
Given a set of keys this method collects all keys which aren't already contained in the cachekeyToIdCache
java.util.concurrent.CompletionStage<com.commercetools.api.models.category.Category>
updateCategory(com.commercetools.api.models.category.Category category, java.util.List<com.commercetools.api.models.category.CategoryUpdateAction> updateActions)
Given aCategory
and aList
<CategoryUpdateAction
>, this method issues an update request with these update actions on thisCategory
in the CTP project defined in a potentially injectedProjectApiRoot
.
-
-
-
Field Detail
-
keyToIdCache
protected final com.github.benmanes.caffeine.cache.Cache<java.lang.String,java.lang.String> keyToIdCache
-
MAXIMUM_ALLOWED_UPDATE_ACTIONS
protected static final int MAXIMUM_ALLOWED_UPDATE_ACTIONS
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CategoryServiceImpl
public CategoryServiceImpl(@Nonnull CategorySyncOptions syncOptions)
-
-
Method Detail
-
cacheKeysToIds
@Nonnull public java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>> cacheKeysToIds(@Nonnull java.util.Set<java.lang.String> categoryKeys)
Description copied from interface:CategoryService
Filters out the keys which are already cached and fetches only the not-cached category keys from the CTP project defined in an injectedProjectApiRoot
and stores a mapping for every category to id in the cached map of keys -> ids and returns this cached map.- Specified by:
cacheKeysToIds
in interfaceCategoryService
- Parameters:
categoryKeys
- - a set category keys to fetch and cache the ids for- Returns:
CompletionStage
<Map
> in which the result of it's completion contains a map of requested category keys -> ids
-
fetchMatchingCategoriesByKeys
@Nonnull public java.util.concurrent.CompletionStage<java.util.Set<com.commercetools.api.models.category.Category>> fetchMatchingCategoriesByKeys(@Nonnull java.util.Set<java.lang.String> keys)
Description copied from interface:CategoryService
Given aSet
of category keys, this method fetches a set of all the categories, matching this given set of keys in the CTP project, defined in an injectedProjectApiRoot
. A mapping of the key to the id of the fetched categories is persisted in an in-memory map.- Specified by:
fetchMatchingCategoriesByKeys
in interfaceCategoryService
- Parameters:
keys
- set of category keys to fetch matching categories by.- Returns:
CompletionStage
<Map
> in which the result of it's completion contains aSet
of all matching categories.
-
fetchCategory
@Nonnull public java.util.concurrent.CompletionStage<java.util.Optional<com.commercetools.api.models.category.Category>> fetchCategory(@Nullable java.lang.String key)
Description copied from interface:CategoryService
Given a category key, this method fetches a category that matches this given key in the CTP project defined in a potentially injectedProjectApiRoot
. If there is no matching category an emptyOptional
will be returned in the returned future. A mapping of the key to the id of the fetched category is persisted in an in -memory map.- Specified by:
fetchCategory
in interfaceCategoryService
- Parameters:
key
- the key of the category to fetch.- Returns:
CompletionStage
<Optional
> in which the result of it's completion contains anOptional
that contains the matchingCategory
if exists, otherwise empty.
-
fetchCachedCategoryId
@Nonnull public java.util.concurrent.CompletionStage<java.util.Optional<java.lang.String>> fetchCachedCategoryId(@Nonnull java.lang.String key)
Description copied from interface:CategoryService
Given akey
, this method first checks if cached map of category keys -> ids contains the key. If it does, then an optional containing the mapped id is returned. If the cache doesn't contain the key; this method attempts to fetch the id of the key from the CTP project, caches it and returns aCompletionStage
<Optional
<String
>> in which the result of it's completion could contain anOptional
with the id inside of it or an emptyOptional
if noCategory
was found in the CTP project with this key.- Specified by:
fetchCachedCategoryId
in interfaceCategoryService
- Parameters:
key
- the key by which aCategory
id should be fetched from the CTP project.- Returns:
CompletionStage
<Optional
<String
>> in which the result of it's completion could contain anOptional
with the id inside of it or an emptyOptional
if noCategory
was found in the CTP project with this key.
-
createCategory
@Nonnull public java.util.concurrent.CompletionStage<java.util.Optional<com.commercetools.api.models.category.Category>> createCategory(@Nonnull com.commercetools.api.models.category.CategoryDraft categoryDraft)
Description copied from interface:CategoryService
Given a resource draft of typeCategoryDraft
, this method attempts to create a resourceCategory
based on it in the CTP project defined by the sync options.A completion stage containing an empty option and the error callback will be triggered in those cases:
- the draft has a blank key
- the create request fails on CTP
On the other hand, if the resource gets created successfully on CTP, then the created resource's id and key are cached and the method returns a
CompletionStage
in which the result of it's completion contains an instanceOptional
of the resource which was created.- Specified by:
createCategory
in interfaceCategoryService
- Parameters:
categoryDraft
- the resource draft to create a resource based off of.- Returns:
- a
CompletionStage
containing an optional with the created resource if successful otherwise an empty optional.
-
updateCategory
@Nonnull public java.util.concurrent.CompletionStage<com.commercetools.api.models.category.Category> updateCategory(@Nonnull com.commercetools.api.models.category.Category category, @Nonnull java.util.List<com.commercetools.api.models.category.CategoryUpdateAction> updateActions)
Description copied from interface:CategoryService
Given aCategory
and aList
<CategoryUpdateAction
>, this method issues an update request with these update actions on thisCategory
in the CTP project defined in a potentially injectedProjectApiRoot
. This method returnsCompletionStage
<Category
> in which the result of it's completion contains an instance of theCategory
which was updated in the CTP project.- Specified by:
updateCategory
in interfaceCategoryService
- Parameters:
category
- theCategory
to update.updateActions
- the update actions to update theCategory
with.- Returns:
CompletionStage
<Category
> containing as a result of it's completion an instance of theCategory
which was updated in the CTP project or aCompletionException
.
-
getKeysNotCached
@Nonnull protected java.util.Set<java.lang.String> getKeysNotCached(@Nonnull java.util.Set<java.lang.String> keys)
Given a set of keys this method collects all keys which aren't already contained in the cachekeyToIdCache
- Parameters:
keys
-Set
of keys- Returns:
- a
Set
of keys which aren't already contained in the cache or empty
-
cacheKeysToIdsUsingGraphQl
@Nonnull public java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>> cacheKeysToIdsUsingGraphQl(@Nonnull java.util.Set<java.lang.String> keysToCache, @Nonnull GraphQlQueryResource queryResource)
-
-