mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-29 23:39:26 -05:00
85 lines
3.9 KiB
C++
85 lines
3.9 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2019 *
|
|
* *
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of this *
|
|
* software and associated documentation files (the "Software"), to deal in the Software *
|
|
* without restriction, including without limitation the rights to use, copy, modify, *
|
|
* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to *
|
|
* permit persons to whom the Software is furnished to do so, subject to the following *
|
|
* conditions: *
|
|
* *
|
|
* The above copyright notice and this permission notice shall be included in all copies *
|
|
* or substantial portions of the Software. *
|
|
* *
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, *
|
|
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A *
|
|
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT *
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF *
|
|
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE *
|
|
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
|
|
****************************************************************************************/
|
|
|
|
#ifndef __OPENSPACE_MODULE_FIELDLINESSEQUENCE___WEBFIELDLINESMANAGER___H__
|
|
#define __OPENSPACE_MODULE_FIELDLINESSEQUENCE___WEBFIELDLINESMANAGER___H__
|
|
|
|
#include <modules/fieldlinessequence/util/webfieldlineswindow.h>
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
namespace openspace {
|
|
|
|
class WebFieldlinesManager{
|
|
public:
|
|
// Constructor
|
|
WebFieldlinesManager() = default;
|
|
|
|
// download files specified in _filestodownload
|
|
//void downloadFieldlines();
|
|
|
|
|
|
// To replace the constructor, takes the identifier of the field line, is used for storing the field lines mainly
|
|
// Also takes a second parameter containing the name of the field line model used.
|
|
// These may in the future be the same.
|
|
void initializeWebFieldlinesManager(std::string identifier, std::string fieldLineModelType, size_t& _nStates, std::vector<std::string>& _sourceFiles, std::vector<double>& _startTimes);
|
|
|
|
std::string initializeSyncDirectory(std::string identifier);
|
|
|
|
|
|
// Temporary function - this should be moved to the worker. It's to download
|
|
// the start lines if the directory is empty or launching for the first time
|
|
void preDownload();
|
|
|
|
// Returns the sync directory
|
|
std::string getDirectory();
|
|
|
|
// Function to run in FieldLinesSequence's update loop
|
|
void update();
|
|
|
|
// Returns wether the worker has finished downloading a window.
|
|
bool checkIfWindowIsReadyToLoad();
|
|
|
|
bool hasUpdated = false;
|
|
|
|
private:
|
|
|
|
|
|
std::string _syncDir;
|
|
|
|
// What model is this field line derived from, may come to be the same as the identifier
|
|
std::string _flsType;
|
|
|
|
// The datastructure for managing the interval of fieldline sets to be downloaded
|
|
WebFieldlinesWindow _webFieldlinesWindow;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
} // namespace openspace
|
|
|
|
#endif // __OPENSPACE_MODULE_FIELDLINESSEQUENCE___WEBFIELDLINESMANAGER___H__
|