mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-08 22:29:33 +00:00
125 lines
3.6 KiB
Java
125 lines
3.6 KiB
Java
/*
|
|
* Autopsy Forensic Browser
|
|
*
|
|
* Copyright 2018 Basis Technology Corp.
|
|
* Contact: carrier <at> sleuthkit <dot> org
|
|
*
|
|
* 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 org.sleuthkit.autopsy.experimental.autoingest;
|
|
|
|
import org.sleuthkit.autopsy.experimental.autoingest.AutoIngestMonitor.JobsSnapshot;
|
|
|
|
/**
|
|
* Class which contains events to identify what should be refreshed in the
|
|
* AutoIngestJobsNode
|
|
*/
|
|
class AutoIngestNodeRefreshEvents {
|
|
|
|
/**
|
|
* The base class for all refresh events.
|
|
*/
|
|
static class AutoIngestRefreshEvent {
|
|
|
|
private final JobsSnapshot jobsSnapshot;
|
|
|
|
AutoIngestRefreshEvent(JobsSnapshot jobs) {
|
|
this.jobsSnapshot = jobs;
|
|
}
|
|
|
|
/**
|
|
* Get the state of the jobs lists when the event was fired.
|
|
*
|
|
* @return
|
|
*/
|
|
JobsSnapshot getJobsSnapshot() {
|
|
return this.jobsSnapshot;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* An event to denote that the children of the AutoIngestJobsNode should be
|
|
* refreshed but no specific nodes need their properties refreshed.
|
|
*/
|
|
static final class RefreshChildrenEvent extends AutoIngestRefreshEvent {
|
|
|
|
/**
|
|
* Constructs a RefreshChildrenEvent.
|
|
*/
|
|
RefreshChildrenEvent(JobsSnapshot jobs) {
|
|
super(jobs);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* An event to denote that all nodes which represent jobs which are part of
|
|
* the specified case should be refreshed.
|
|
*/
|
|
static final class RefreshCaseEvent extends AutoIngestRefreshEvent {
|
|
|
|
private final String caseName;
|
|
|
|
/**
|
|
* Contructs a RefreshCaseEvent
|
|
*
|
|
* @param jobs The current state of the jobs lists.
|
|
* @param name The name of the case whose nodes should be refreshed.
|
|
*/
|
|
RefreshCaseEvent(JobsSnapshot jobs, String name) {
|
|
super(jobs);
|
|
caseName = name;
|
|
}
|
|
|
|
/**
|
|
* Get the case name which should have all it's jobs have their node
|
|
* refreshed.
|
|
*
|
|
* @return caseName - the case which contains the jobs which should have
|
|
* their nodes refreshed
|
|
*/
|
|
String getCaseToRefresh() {
|
|
return caseName;
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* An event to denote that a node for a specific job should be refreshed.
|
|
*/
|
|
static final class RefreshJobEvent extends AutoIngestRefreshEvent {
|
|
|
|
private final AutoIngestJob autoIngestJob;
|
|
|
|
/**
|
|
* Constructs a RefreshJobEvent.
|
|
*
|
|
* @param jobs The curent state of the jobs lists.
|
|
* @param job The job which should be refreshed.
|
|
*/
|
|
RefreshJobEvent(JobsSnapshot jobs, AutoIngestJob job) {
|
|
super(jobs);
|
|
autoIngestJob = job;
|
|
}
|
|
|
|
/**
|
|
* Get the AutoIngestJob which should have it's node refreshed.
|
|
*
|
|
* @return autoIngestJob - the AutoIngestJob which should have it's node
|
|
* refreshed
|
|
*/
|
|
AutoIngestJob getJobToRefresh() {
|
|
return autoIngestJob;
|
|
}
|
|
}
|
|
}
|