com.zuoxiaolong.niubi.job.service.impl.StandbyNodeServiceImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.zuoxiaolong.niubi.job.service.impl.StandbyNodeServiceImpl.java

Source

/*
 * Copyright 2002-2015 the original author or authors.
 *
 * 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 com.zuoxiaolong.niubi.job.service.impl;

import com.zuoxiaolong.niubi.job.api.data.StandbyNodeData;
import com.zuoxiaolong.niubi.job.core.helper.LoggerHelper;
import com.zuoxiaolong.niubi.job.core.helper.ReflectHelper;
import com.zuoxiaolong.niubi.job.service.StandbyNodeService;
import com.zuoxiaolong.niubi.job.service.view.StandbyNodeView;
import org.springframework.stereotype.Service;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Xiaolong Zuo
 * @since 0.9.3
 */
@Service
public class StandbyNodeServiceImpl extends AbstractService implements StandbyNodeService {

    @Override
    public List<StandbyNodeView> getAllNodes() {
        List<StandbyNodeData> standbyNodeDataList;
        List<StandbyNodeView> standbyNodeViewList = new ArrayList<>();
        try {
            standbyNodeDataList = standbyApiFactory.nodeApi().getAllNodes();
        } catch (Exception e) {
            LoggerHelper.warn("select all standby nodes failed, has been ignored [" + e.getClass().getName() + ", "
                    + e.getMessage() + "]");
            return standbyNodeViewList;
        }
        for (StandbyNodeData standbyNodeData : standbyNodeDataList) {
            StandbyNodeView standbyNodeView = new StandbyNodeView();
            standbyNodeView.setId(standbyNodeData.getId());
            if (standbyNodeData.getData() != null) {
                ReflectHelper.copyFieldValues(standbyNodeData.getData(), standbyNodeView);
            }
            standbyNodeViewList.add(standbyNodeView);
        }
        return standbyNodeViewList;
    }

}