Autopsy
4.19.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Inherits org.sleuthkit.autopsy.datasourcesummary.ui.BaseDataSourceSummaryPanel.
Classes | |
class | GeolocationViewModel |
Public Member Functions | |
GeolocationPanel () | |
GeolocationPanel (GeolocationSummaryGetter whereUsedData) | |
void | close () |
Protected Member Functions | |
void | fetchInformation (DataSource dataSource) |
void | fetchInformation (List< DataFetchComponents< DataSource,?>> dataFetchComponents, DataSource dataSource) |
MenuItem | getArtifactNavigateItem (BlackboardArtifact artifact) |
synchronized DataSource | getDataSource () |
MenuItem | getFileNavigateItem (String path) |
MenuItem | getFileNavigateItem (AbstractFile file) |
void | notifyParentClose () |
void | onNewDataSource (DataSource dataSource) |
void | onNewDataSource (List< DataFetchComponents< DataSource,?>> dataFetchComponents, List<?extends LoadableComponent<?>> loadableComponents, DataSource dataSource) |
void | submit (List<?extends SwingWorker<?,?>> workers) |
Static Protected Member Functions | |
static< T > T | getFetchResult (DataFetcher< DataSource, T > dataFetcher, String sheetName, DataSource ds) |
Private Member Functions | |
void | commonViewInGeolocationBtnActionPerformed (java.awt.event.ActionEvent evt) |
GeolocationViewModel | convertToViewModel (CityData cityData) |
void | disableNavButtons () |
List< Pair< String, Integer > > | formatList (CityCountsList countsList) |
Pair< String, Integer > | formatRecord (CityRecordCount cityCount) |
void | handleData (DataFetchResult< GeolocationViewModel > result) |
void | initComponents () |
void | openGeolocationWindow (DataSource dataSource, Integer daysLimit) |
void | recentViewInGeolocationBtnActionPerformed (java.awt.event.ActionEvent evt) |
void | showCityContent (DataFetchResult< List< Pair< String, Integer >>> result, JTablePanel< Pair< String, Integer >> table, JButton goToGeolocation) |
Static Private Member Functions | |
static String | getCityName (CityRecord record) |
Private Attributes | |
javax.swing.JButton | commonViewInGeolocationBtn |
final List< DataFetchComponents< DataSource,?> > | dataFetchComponents |
final DataFetcher< DataSource, GeolocationViewModel > | geolocationFetcher |
final IngestRunningLabel | ingestRunningLabel = new IngestRunningLabel() |
final Logger | logger = Logger.getLogger(GeolocationPanel.class.getName()) |
final JTablePanel< Pair< String, Integer > > | mostCommonTable |
final JTablePanel< Pair< String, Integer > > | mostRecentTable |
javax.swing.JButton | recentViewInGeolocationBtn |
final List< JTablePanel<?> > | tables = Arrays.asList(mostCommonTable, mostRecentTable) |
final GeolocationSummaryGetter | whereUsedData |
Static Private Attributes | |
static final ColumnModel< Pair< String, Integer >, DefaultCellModel<?> > | CITY_COL |
static final ColumnModel< Pair< String, Integer >, DefaultCellModel<?> > | COUNT_COL |
static final int | DAYS_COUNT = 30 |
static final List< ColumnModel< Pair< String, Integer >, DefaultCellModel<?> > > | DEFAULT_TEMPLATE |
static final int | MAX_COUNT = 10 |
static final long | serialVersionUID = 1L |
A tab shown in data source summary displaying information about a data source's geolocation data.
Definition at line 66 of file GeolocationPanel.java.
org.sleuthkit.autopsy.datasourcesummary.ui.GeolocationPanel.GeolocationPanel | ( | ) |
Main constructor.
Definition at line 155 of file GeolocationPanel.java.
org.sleuthkit.autopsy.datasourcesummary.ui.GeolocationPanel.GeolocationPanel | ( | GeolocationSummaryGetter | whereUsedData | ) |
Main constructor.
whereUsedData | The GeolocationSummaryGetter instance to use. |
Definition at line 164 of file GeolocationPanel.java.
References org.sleuthkit.autopsy.datasourcesummary.ui.GeolocationSummaryGetter.getCityCounts().
void org.sleuthkit.autopsy.datasourcesummary.ui.GeolocationPanel.close | ( | ) |
Definition at line 355 of file GeolocationPanel.java.
References org.sleuthkit.autopsy.datasourcesummary.uiutils.IngestRunningLabel.unregister().
|
private |
Definition at line 483 of file GeolocationPanel.java.
|
private |
Converts CityData from GeolocationSummaryGetter into data that can be directly put into table in this panel.
cityData | The city data. |
Definition at line 274 of file GeolocationPanel.java.
References org.sleuthkit.autopsy.datasourcesummary.datamodel.GeolocationSummary.CityData.getMostCommon(), and org.sleuthkit.autopsy.datasourcesummary.datamodel.GeolocationSummary.CityData.getMostRecent().
|
private |
Disables navigation buttons.
Definition at line 337 of file GeolocationPanel.java.
|
protected |
Definition at line 343 of file GeolocationPanel.java.
|
protectedinherited |
Utility method to be called when solely updating information (not showing a loading screen) that creates swing workers from the data source argument and data fetch components and then submits them to run.
dataFetchComponents | The components to be run. |
dataSource | The data source argument. |
Definition at line 426 of file BaseDataSourceSummaryPanel.java.
|
private |
Formats a list of records to be displayed in a table (specifically, includes the count of points where no closest city could be determined as 'unknown').
countsList | The CityCountsList object representing the data to be displayed in the table. |
Definition at line 246 of file GeolocationPanel.java.
References org.sleuthkit.autopsy.datasourcesummary.datamodel.GeolocationSummary.CityCountsList.getCounts(), and org.sleuthkit.autopsy.datasourcesummary.datamodel.GeolocationSummary.CityCountsList.getOtherCount().
|
private |
Formats one record to be displayed as a row in the table (specifically, formats the city name).
cityCount | The CityRecordCount representing a row. |
Definition at line 226 of file GeolocationPanel.java.
References org.sleuthkit.autopsy.datasourcesummary.datamodel.GeolocationSummary.CityRecordCount.getCityRecord(), and org.sleuthkit.autopsy.datasourcesummary.datamodel.GeolocationSummary.CityRecordCount.getCount().
|
protectedinherited |
Given the relevant artifact, navigates to the artifact in the tree and closes data source summary dialog if open.
artifact | The artifact. |
Definition at line 255 of file BaseDataSourceSummaryPanel.java.
|
staticprivate |
Retrieves the city name to display from the record.
record | The record for the city to display. |
Definition at line 198 of file GeolocationPanel.java.
References org.sleuthkit.autopsy.datasourcesummary.datamodel.CityRecord.getCityName(), org.sleuthkit.autopsy.datasourcesummary.datamodel.CityRecord.getCountry(), and org.sleuthkit.autopsy.datasourcesummary.datamodel.CityRecord.getState().
|
protectedinherited |
Definition at line 386 of file BaseDataSourceSummaryPanel.java.
|
staticprotectedinherited |
Runs a data fetcher and returns the result handling any possible errors with a log message.
dataFetcher | The means of fetching the data. |
sheetName | The name of the sheet. |
ds | The data source. |
Definition at line 460 of file BaseDataSourceSummaryPanel.java.
|
protectedinherited |
Creates a menu item to navigate to a file.
path | The path to the file. |
Definition at line 303 of file BaseDataSourceSummaryPanel.java.
|
protectedinherited |
Given the relevant file, navigates to the file in the tree and closes data source summary dialog if open.
file | The file. |
Definition at line 331 of file BaseDataSourceSummaryPanel.java.
|
private |
Means of rendering data to be shown in the tables.
result | The result of fetching data for a data source and processing into view model data. |
Definition at line 186 of file GeolocationPanel.java.
References org.sleuthkit.autopsy.datasourcesummary.uiutils.DataFetchResult< R >.getSubResult().
|
private |
This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.
Definition at line 367 of file GeolocationPanel.java.
|
protectedinherited |
Sends event that parent should close.
Definition at line 368 of file BaseDataSourceSummaryPanel.java.
|
protected |
Definition at line 349 of file GeolocationPanel.java.
|
protectedinherited |
Utility method that shows a loading screen with loadable components, create swing workers from the datafetch components and data source argument and submits them to be executed.
dataFetchComponents | The components to register. |
loadableComponents | The components to set to a loading screen. |
dataSource | The data source argument. |
Definition at line 484 of file BaseDataSourceSummaryPanel.java.
|
private |
Action to open the geolocation window.
dataSource | The data source for which the window should filter. |
daysLimit | The limit for how recently the waypoints should be (for most recent table) or null for most recent filter to not be set (for most common table). |
Definition at line 305 of file GeolocationPanel.java.
References org.sleuthkit.autopsy.datasourcesummary.ui.GeolocationSummaryGetter.getGeoTypes(), org.sleuthkit.autopsy.geolocation.OpenGeolocationAction.performAction(), and org.sleuthkit.autopsy.geolocation.GeolocationTopComponent.setFilterState().
|
private |
Definition at line 479 of file GeolocationPanel.java.
|
private |
Shows data in a particular table.
result | The result to be displayed in the table. |
table | The table where the data will be displayed. |
goToGeolocation | The corresponding geolocation navigation button. |
Definition at line 289 of file GeolocationPanel.java.
References org.sleuthkit.autopsy.datasourcesummary.uiutils.DataFetchResult< R >.ResultType.SUCCESS.
|
protectedinherited |
Submits the following swing workers for execution in sequential order. If there are any previous workers, those workers are cancelled.
workers | The workers to submit for execution. |
Definition at line 396 of file BaseDataSourceSummaryPanel.java.
|
staticprivate |
Definition at line 113 of file GeolocationPanel.java.
|
private |
Definition at line 489 of file GeolocationPanel.java.
|
staticprivate |
Definition at line 120 of file GeolocationPanel.java.
|
private |
Definition at line 144 of file GeolocationPanel.java.
|
staticprivate |
Definition at line 109 of file GeolocationPanel.java.
|
staticprivate |
Definition at line 126 of file GeolocationPanel.java.
|
private |
Definition at line 150 of file GeolocationPanel.java.
|
private |
Definition at line 146 of file GeolocationPanel.java.
|
private |
Definition at line 141 of file GeolocationPanel.java.
|
staticprivate |
Definition at line 110 of file GeolocationPanel.java.
|
private |
Definition at line 132 of file GeolocationPanel.java.
|
private |
Definition at line 135 of file GeolocationPanel.java.
|
private |
Definition at line 490 of file GeolocationPanel.java.
|
staticprivate |
Definition at line 108 of file GeolocationPanel.java.
|
private |
Definition at line 139 of file GeolocationPanel.java.
|
private |
Definition at line 148 of file GeolocationPanel.java.
Copyright © 2012-2021 Basis Technology. Generated on: Thu Sep 30 2021
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.