All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.aroma.data.performance.MeasuredUserRepository Maven / Gradle / Ivy

/*
 * Copyright 2017 RedRoma, Inc.
 *
 * 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.
 */

 
package tech.aroma.data.performance;


import java.util.List;
import javax.inject.Inject;

import decorice.DecoratedBy;
import org.apache.thrift.TException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import tech.aroma.data.UserRepository;
import tech.aroma.data.performance.Operation.VoidOperation;
import tech.aroma.thrift.User;
import tech.sirwellington.alchemy.annotations.designs.patterns.DecoratorPattern;

import static tech.sirwellington.alchemy.annotations.designs.patterns.DecoratorPattern.Role.DECORATOR;
import static tech.sirwellington.alchemy.arguments.Arguments.*;
import static tech.sirwellington.alchemy.arguments.assertions.Assertions.notNull;

/**
 *
 * @author SirWellington
 */
@DecoratorPattern(role = DECORATOR)
public final class MeasuredUserRepository implements UserRepository
{
    private final static Logger LOG = LoggerFactory.getLogger(MeasuredUserRepository.class);

    private final UserRepository delegate;

    @Inject
    public MeasuredUserRepository(@DecoratedBy(MeasuredUserRepository.class) UserRepository delegate)
    {
        checkThat(delegate).is(notNull());
        
        this.delegate = delegate;
    }

    @Override
    public void saveUser(User user) throws TException
    {
        VoidOperation operation = () -> delegate.saveUser(user);
        
        Operations.logLatency(operation, "saveUser");
    }

    @Override
    public User getUser(String userId) throws TException
    {
        Operation operation = () -> delegate.getUser(userId);
        
        return Operations.logLatency(operation, "getUser");
    }

    @Override
    public void deleteUser(String userId) throws TException
    {
        VoidOperation operation = () -> delegate.deleteUser(userId);
        
        Operations.logLatency(operation, "deleteUser");
    }

    @Override
    public boolean containsUser(String userId) throws TException
    {
        Operation operation = () -> delegate.containsUser(userId);
        return Operations.logLatency(operation, "containsUser");
    }

    @Override
    public User getUserByEmail(String emailAddress) throws TException
    {
        Operation operation = () -> delegate.getUserByEmail(emailAddress);
        return Operations.logLatency(operation, "getUserByEmail");
    }

    @Override
    public User findByGithubProfile(String githubProfile) throws TException
    {
        Operation operation = () -> delegate.findByGithubProfile(githubProfile);
        return Operations.logLatency(operation, "findByGithubProfile");
    }

    @Override
    public List getRecentlyCreatedUsers() throws TException
    {
        Operation> opeartion = () -> delegate.getRecentlyCreatedUsers();
        return Operations.logLatency(opeartion, "getRecentlyCreatedUsers");
    }
    
    
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy