1 /*
2  * Copyright (c) 2015-2020, The University of Oxford
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * 1. Redistributions of source code must retain the above copyright notice,
8  *    this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright notice,
10  *    this list of conditions and the following disclaimer in the documentation
11  *    and/or other materials provided with the distribution.
12  * 3. Neither the name of the University of Oxford nor the names of its
13  *    contributors may be used to endorse or promote products derived from this
14  *    software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include "telescope/private_TelescopeLoaderFeedAngle.h"
30 #include "utility/oskar_dir.h"
31 
32 using std::map;
33 using std::string;
34 
35 static const char* feed_angle_file = "feed_angle.txt";
36 static const char* feed_angle_file_x = "feed_angle_x.txt";
37 static const char* feed_angle_file_y = "feed_angle_y.txt";
38 
load(oskar_Station * station,const string & cwd,int,int,map<string,string> &,int * status)39 void TelescopeLoaderFeedAngle::load(oskar_Station* station,
40         const string& cwd, int /*num_subdirs*/, int /*depth*/,
41         map<string, string>& /*filemap*/, int* status)
42 {
43     // Check for presence of feed angle files.
44     if (oskar_dir_file_exists(cwd.c_str(), feed_angle_file))
45     {
46         string f = get_path(cwd, feed_angle_file);
47         oskar_station_load_feed_angle(station, 0, f.c_str(), status);
48         oskar_station_load_feed_angle(station, 1, f.c_str(), status);
49     }
50     if (oskar_dir_file_exists(cwd.c_str(), feed_angle_file_x))
51     {
52         oskar_station_load_feed_angle(station, 0,
53                 get_path(cwd, feed_angle_file_x).c_str(), status);
54     }
55     if (oskar_dir_file_exists(cwd.c_str(), feed_angle_file_y))
56     {
57         oskar_station_load_feed_angle(station, 1,
58                 get_path(cwd, feed_angle_file_y).c_str(), status);
59     }
60 }
61 
name() const62 string TelescopeLoaderFeedAngle::name() const
63 {
64     return string("element feed angle file loader");
65 }
66