1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/*PGR-GNU*****************************************************************
File: pgdata_getters.hpp
Copyright (c) 2023-2026 pgRouting developers
Mail: project@pgrouting.org
Copyright (c) 2024 Celia Virginia Vergara Castillo
- Return C++ container
Copyright (c) 2023 Celia Virginia Vergara Castillo
- cat into one file
Copyright (c) 2020 Mahmoud SAKR and Esteban ZIMANYI
mail: m_attia_sakrcw at yahoo.com, estebanzimanyicw at gmail.com
Copyright (c) 2016 Rohith Reddy
Copyright (c) 2016 Andrea Nardelli
mail: nrd.nardelli at gmail.com
Copyright (c) 2015 Celia Virginia Vergara Castillo
mail: vicky at erosion.dev
------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
********************************************************************PGR-GNU*/
#ifndef INCLUDE_CPP_COMMON_PGDATA_GETTERS_HPP_
#define INCLUDE_CPP_COMMON_PGDATA_GETTERS_HPP_
#pragma once
#include <cstddef>
#include <cstdint>
#include <string>
#include <set>
#include <vector>
#include "cpp_common/info_t.hpp"
#include "c_types/ii_t_rt.h"
#include "cpp_common/coordinate_t.hpp"
#include "cpp_common/delauny_t.hpp"
#include "c_types/edge_bool_t_rt.h"
#include "cpp_common/costFlow_t.hpp"
#include "cpp_common/edge_xy_t.hpp"
#include "cpp_common/edge_t.hpp"
#include "c_types/iid_t_rt.h"
#include "cpp_common/orders_t.hpp"
#include "cpp_common/restriction_t.hpp"
#include "cpp_common/point_on_edge_t.hpp"
#include "cpp_common/vehicle_t.hpp"
typedef struct ArrayType ArrayType;
namespace pgrouting {
namespace pgget {
/** @brief Enforces the input array to be @b NOT empty */
std::vector<int64_t> get_intArray(ArrayType*, bool);
/** @brief Reads a postgres array saving it as set */
std::set<int64_t> get_intSet(ArrayType*);
/** @brief Read rows of combinations */
std::vector<II_t_rt> get_combinations(const std::string&);
/** @brief Read rows of matrix */
std::vector<Coordinate_t> get_coordinates(const std::string&);
/** @brief Read rows of delauny triangles */
std::vector<Delauny_t> get_delauny(const std::string&);
/** @brief Read edges */
std::vector<Edge_t> get_edges(const std::string&, bool, bool);
/** @brief Read edges with x, y endpoints */
std::vector<Edge_xy_t> get_edges_xy(const std::string&, bool);
/** @brief Read edges for flow */
std::vector<Edge_t> get_flow_edges(const std::string&);
/** @brief Read edges for cost */
std::vector<CostFlow_t> get_costFlow_edges(const std::string&);
/** @brief Read basic edges */
std::vector<Edge_bool_t> get_basic_edges(const std::string&);
/** @brief Read rows of matrix */
std::vector<IID_t_rt> get_matrixRows(const std::string&);
/** @brief Reads the pick-Deliver orders */
std::vector<Orders_t> get_orders(const std::string&, bool);
/** @brief Read rows of points */
std::vector<Point_on_edge_t> get_points(const std::string&);
/** @brief Read rows of matrix */
std::vector<Restriction_t> get_restrictions(const std::string&);
/** @brief Reads the vehicles */
std::vector<Vehicle_t> get_vehicles(const std::string&, bool);
} // namespace pgget
} // namespace pgrouting
#endif // INCLUDE_CPP_COMMON_PGDATA_GETTERS_HPP_
|