00001 /* 00002 * This file is part of the rc_genicam_api package. 00003 * 00004 * Copyright (c) 2017 Roboception GmbH 00005 * All rights reserved 00006 * 00007 * Author: Heiko Hirschmueller 00008 * 00009 * Redistribution and use in source and binary forms, with or without 00010 * modification, are permitted provided that the following conditions are met: 00011 * 00012 * 1. Redistributions of source code must retain the above copyright notice, 00013 * this list of conditions and the following disclaimer. 00014 * 00015 * 2. Redistributions in binary form must reproduce the above copyright notice, 00016 * this list of conditions and the following disclaimer in the documentation 00017 * and/or other materials provided with the distribution. 00018 * 00019 * 3. Neither the name of the copyright holder nor the names of its contributors 00020 * may be used to endorse or promote products derived from this software without 00021 * specific prior written permission. 00022 * 00023 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00024 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00025 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00026 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 00027 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00028 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00029 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00030 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00031 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00032 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00033 * POSSIBILITY OF SUCH DAMAGE. 00034 */ 00035 00036 #ifndef RC_GENICAM_API_SYSTEM 00037 #define RC_GENICAM_API_SYSTEM 00038 00039 #include <GenApi/GenApi.h> 00040 00041 #include <memory> 00042 #include <vector> 00043 00044 namespace rcg 00045 { 00046 00047 class GenTLWrapper; 00048 class Interface; 00049 class CPort; 00050 00057 class System : public std::enable_shared_from_this<System> 00058 { 00059 public: 00060 00061 ~System(); 00062 00076 static std::vector<std::shared_ptr<System> > getSystems(); 00077 00083 static void clearSystems(); 00084 00091 const std::string &getFilename() const; 00092 00099 void open(); 00100 00106 void close(); 00107 00116 std::vector<std::shared_ptr<Interface> > getInterfaces(); 00117 00124 std::string getID() const; 00125 00132 std::string getVendor() const; 00133 00140 std::string getModel() const; 00141 00148 std::string getVersion() const; 00149 00156 std::string getTLType() const; 00157 00164 std::string getPathname() const; 00165 00172 bool isCharEncodingASCII() const; 00173 00180 int getMajorVersion() const; 00181 00188 int getMinorVersion() const; 00189 00199 std::shared_ptr<GenApi::CNodeMapRef> getNodeMap(); 00200 00207 void *getHandle() const; 00208 00209 private: 00210 00211 System(const std::string &_filename); 00212 System(class System &); // forbidden 00213 System &operator=(const System &); // forbidden 00214 00215 std::string filename; 00216 std::shared_ptr<const GenTLWrapper> gentl; 00217 00218 int n_open; 00219 void *tl; 00220 00221 std::shared_ptr<CPort> cport; 00222 std::shared_ptr<GenApi::CNodeMapRef> nodemap; 00223 00224 std::vector<std::weak_ptr<Interface> > ilist; 00225 }; 00226 00227 } 00228 00229 #endif