blob: fac963add33f9e167e9dab7205ec0838db7e7fbe [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.nifi.controller.status.history;
import com.google.common.base.Preconditions;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.ZoneId;
import java.util.Date;
public class JsonNodeStatusHistoryDumpFactory implements StatusHistoryDumpFactory {
private StatusHistoryRepository statusHistoryRepository;
@Override
public StatusHistoryDump create(int days) {
Preconditions.checkArgument(days > 0, String.format("The number of days shall be greater than 0. The current value is %s.", days));
final LocalDateTime endOfToday = LocalDateTime.now().with(LocalTime.MAX);
final LocalDateTime startOfDaysBefore = endOfToday.minusDays(days).with(LocalTime.MIN);
final Date endOfTodayDate = Date.from(endOfToday.atZone(ZoneId.systemDefault()).toInstant());
final Date startOfDaysBeforeDate = Date.from(startOfDaysBefore.atZone(ZoneId.systemDefault()).toInstant());
final StatusHistory nodeStatusHistory = statusHistoryRepository.getNodeStatusHistory(startOfDaysBeforeDate, endOfTodayDate);
return new JsonNodeStatusHistoryDump(nodeStatusHistory);
}
public void setStatusHistoryRepository(StatusHistoryRepository statusHistoryRepository) {
this.statusHistoryRepository = statusHistoryRepository;
}
}