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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/*
* 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 Library 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.
*
* ola-rdm-discover.cpp
* Print the list of UIDs and force RDM discovery
* Copyright (C) 2010 Simon Newton
*/
#include <errno.h>
#include <ola/Logging.h>
#include <ola/OlaCallbackClient.h>
#include <ola/OlaClientWrapper.h>
#include <ola/base/Flags.h>
#include <ola/base/Init.h>
#include <ola/base/SysExits.h>
#include <ola/io/SelectServer.h>
#include <ola/rdm/UID.h>
#include <iostream>
#include <iomanip>
#include <string>
#include <vector>
using std::cout;
using std::cerr;
using std::endl;
using std::setw;
using std::string;
using std::vector;
using ola::OlaCallbackClient;
using ola::OlaCallbackClientWrapper;
using ola::io::SelectServer;
using ola::rdm::UID;
using ola::rdm::UIDSet;
DEFINE_s_uint32(universe, u, 1, "The universe to do RDM discovery on");
DEFINE_s_default_bool(full, f, false,
"Force full RDM Discovery for this universe");
DEFINE_s_default_bool(incremental, i, false,
"Force incremental RDM Discovery for this universe");
DEFINE_default_bool(include_broadcast, false,
"Include broadcast UID for this universe");
DEFINE_default_bool(include_vendorcast, false,
"Include vendorcast UID for this universe");
SelectServer *ss;
/*
* This is called when we receive uids for a universe
* @param universes a vector of OlaUniverses
*/
void UIDList(const ola::rdm::UIDSet &uids,
const string &error) {
UIDSet vendorcast;
if (error.empty()) {
UIDSet::Iterator iter = uids.Begin();
for (; iter != uids.End(); ++iter) {
cout << *iter << endl;
vendorcast.AddUID(UID::VendorcastAddress(*iter));
}
if (FLAGS_include_vendorcast) {
iter = vendorcast.Begin();
for (; iter != vendorcast.End(); ++iter) {
cout << *iter << endl;
}
}
if (FLAGS_include_broadcast) {
cout << UID::AllDevices().ToString() << endl;
}
} else {
cerr << error << endl;
}
ss->Terminate();
}
/*
* Send a fetch uid list request
* @param client the ola client
*/
bool FetchUIDs(OlaCallbackClient *client) {
if (FLAGS_full) {
return client->RunDiscovery(
FLAGS_universe,
true,
ola::NewSingleCallback(&UIDList));
} else if (FLAGS_incremental) {
return client->RunDiscovery(
FLAGS_universe,
false,
ola::NewSingleCallback(&UIDList));
} else {
return client->FetchUIDList(
FLAGS_universe,
ola::NewSingleCallback(&UIDList));
}
}
/*
* Main
*/
int main(int argc, char *argv[]) {
ola::AppInit(
&argc,
argv,
"--universe <universe> [--full|--incremental]",
"Fetch the UID list for a universe.");
OlaCallbackClientWrapper ola_client;
if (!FLAGS_universe.present()) {
ola::DisplayUsageAndExit();
}
if (FLAGS_full && FLAGS_incremental) {
cerr << "Only one of -i and -f can be specified" << endl;
exit(ola::EXIT_USAGE);
}
if (!ola_client.Setup()) {
OLA_FATAL << "Setup failed";
exit(ola::EXIT_UNAVAILABLE);
}
OlaCallbackClient *client = ola_client.GetClient();
ss = ola_client.GetSelectServer();
if (FetchUIDs(client)) {
ss->Run();
}
return ola::EXIT_OK;
}
|