Compare commits

...

5 commits

Author SHA1 Message Date
9b7c35a816 replace getopt with boost::program_options 2016-01-23 09:37:05 +01:00
8200103514 get&set 2016-01-23 09:22:46 +01:00
d3b89e3b11 clean up 2016-01-23 04:25:55 +01:00
693d8d42ff Program.cpp update 2016-01-22 23:51:17 +01:00
922ac9f88e updates 2016-01-21 05:20:21 +01:00
22 changed files with 588 additions and 518 deletions

View file

@ -15,7 +15,7 @@ $(BUILDDIR):
$(TARGET): $(OBJECTS) $(TARGET): $(OBJECTS)
$(CC) $^ -o $(BUILDDIR)/$@ -lboost_filesystem -lboost_system $(CC) $^ -o $(BUILDDIR)/$@ -lboost_filesystem -lboost_system -lboost_program_options -lpthread
$(OBJECTS): $(BUILDDIR)/%.o : $(SOURCEDIR)/%.cpp $(OBJECTS): $(BUILDDIR)/%.o : $(SOURCEDIR)/%.cpp

View file

@ -14,38 +14,40 @@
#define USAGE "usage: %s [-bdhjrvswx] [-i interface] [-u [password:]username]\n\ #define USAGE "usage: %s [-bdhjrvswx] [-i interface] [-u [password:]username]\n\
[-p password] <command>\n\n" [-p password] <command>\n\n"
#define HELP "\ #define HELP "\
Option Summary:\n\ Option Summary:\n\
-h --help This help text\n\ -h --help This help text\n\
-v --version Display version of this tool\n\ -V --version Display version of this tool\n\
-d --debug [n] Show debugging messages\n\ -d --debug [n] Show debugging messages\n\
-r switch ports to emulate switch while sniffing\n\ -v --verbose [n] Show debugging messages\n\
-b --header Show header\n\ -r --reverse switch ports to emulate switch while sniffing\n\
-x --hex Display Packets as Hex String\n\ -b --header Show header\n\
-j --json Display Packets as JSON\n\ -x --hex Display Packets as Hex String\n\
-i --interface <iface> only use one Interface\n\ -j --json Display Packets as JSON\n\
-u --user <[password:]username>\n\ -i --interface <iface> only use one Interface\n\
-p --password <password>\n\ -u --user <[password:]username>\n\
Login with Username and Password\n\ -p --password <password>\n\
-f --file <path> choose a settings file\n\n\ Login with Username and Password\n\
-t --timeout <n> Timeout in milliseconds. Default: 180\n\ -f --file <path> choose a settings file\n\n\
-I --interactive Not yet implemented\n\ -t --timeout <n> Timeout in milliseconds. Default: 180\n\
-O --stdout Not yet implemented\n\ -I --interactive Not yet implemented\n\
-w --wait Not yet implemented: blocking until operation is completed\n\ -O --stdout Not yet implemented\n\
-s --permanent Not yet implemented: make changes immediately permanent\n\n\ -w --wait Not yet implemented: blocking until operation is completed\n\
Command Summary:\n\ -s --permanent Not yet implemented: make changes immediately permanent\n\n\
help This help text\n\ Command Summary:\n\
list list all connected switches\n\ list list all connected switches\n\
sniff [type:<type>] [<filter>]\n\ sniff [type:<type>] [<filter>]\n\
capture and display all incoming or outgoing packets\n\ capture and display all incoming or outgoing packets\n\
depending on the --reverse option\n\ depending on the --reverse option\n\
encode use encoding algorithm on hex data separated by colon\n\ encode use encoding algorithm on hex data separated by colon\n\
get Not yet implemented\n\ get <property1> [<property1> [...]]\n\
set Not yet implemented\n\ Not yet implemented\n\
get|save Not yet implemented: save config to file\n\ set <property1>=<value> [<property2>=<value> [...]]\n\
set|restore Not yet implemented: restore onfig from file\n\ Not yet implemented\n\
flash Not yet implemented: replace firmware\n\ get|save Not yet implemented: save config to file\n\
reboot Not yet implemented\n\ set|restore Not yet implemented: restore onfig from file\n\
reset Not yet implemented\n\n\ flash Not yet implemented: replace firmware\n\
reboot Not yet implemented\n\
reset Not yet implemented\n\n\
### for questions please contact <smrtlink@jdi.li> ###\n\n" ### for questions please contact <smrtlink@jdi.li> ###\n\n"
//TODO //TODO
/* /*
@ -54,13 +56,6 @@
* *
*/ */
#define FLAG_HEX 1
#define FLAG_REVERSE 2
#define FLAG_HEADER 4
#define FLAG_PERMANENT 8
#define FLAG_WAIT 16
#define FLAG_DEBUG 32
extern Options options; extern Options options;
#endif /* OPTIONS_H_ */ #endif /* OPTIONS_H_ */

View file

@ -1,66 +0,0 @@
/*
* Options.h
*
* Created on: 11.09.2015
* Author: jdi
*/
#ifndef OPTIONS_H_
#define OPTIONS_H_
#include "Types.h"
#define VERSION "smrtlink (v1 Linux)\n"
#define USAGE "usage: %s [-bdhjrvswx] [-i interface] [-u [password:]username]\n\
[-p password] <command>\n\n"
#define HELP "\
Option Summary:\n\
-h --help This help text\n\
-v --version Display version of this tool\n\
-d --debug [n] Show debugging messages\n\
-r switch ports to emulate switch while sniffing\n\
-b --header Show header\n\
-x --hex Display Packets as Hex String\n\
-j --json Display Packets as JSON\n\
-i --interface <iface> only use one Interface\n\
-u --user <[password:]username>\n\
-p --password <password>\n\
Login with Username and Password\n\
-f --file <path> choose a settings file\n\n\
-t --timeout <n> Timeout in milliseconds. Default: 180\n\
-I --interactive Not yet implemented\n\
-O --stdout Not yet implemented\n\
-w --wait Not yet implemented: blocking until operation is completed\n\
-s --permanent Not yet implemented: make changes immediately permanent\n\n\
Command Summary:\n\
help This help text\n\
list list all connected switches\n\
sniff [type:<type>] [<filter>]\n\
capture and display all incoming or outgoing packets\n\
depending on the --reverse option\n\
encode use encoding algorithm on hex data separated by colon\n\
get Not yet implemented\n\
set Not yet implemented\n\
get|save Not yet implemented: save config to file\n\
set|restore Not yet implemented: restore onfig from file\n\
flash Not yet implemented: replace firmware\n\
reboot Not yet implemented\n\
reset Not yet implemented\n\n\
### for questions please contact <smrtlink@jdi.li> ###\n\n"
//TODO
/*
* Stdin
* socketmode
*
*/
#define FLAG_HEX 1
#define FLAG_REVERSE 2
#define FLAG_HEADER 4
#define FLAG_PERMANENT 8
#define FLAG_WAIT 16
#define FLAG_DEBUG 32
extern Options options;
#endif /* OPTIONS_H_ */

View file

@ -277,6 +277,14 @@ void Packet::pull(bytes &arr, int &index, int &ret) {
ret |= arr[index++] & 0xFF; ret |= arr[index++] & 0xFF;
} }
byte Packet::getOpCode() const {
return opCode;
}
void Packet::setOpCode(byte opCode) {
this->opCode = opCode;
}
void Packet::pull(bytes &arr, int &index, dataset &ret) { void Packet::pull(bytes &arr, int &index, dataset &ret) {
pull(arr, index, ret.type); pull(arr, index, ret.type);
pull(arr, index, ret.len); pull(arr, index, ret.len);

View file

@ -20,7 +20,7 @@ class Packet
public: public:
enum OpCode {DISCOVERY, GET, RETURN, SET, CONFIRM, NONE}; enum OpCode {DISCOVERY, GET, RETURN, SET, CONFIRM, NONE};
Packet(OpCode); Packet(OpCode);
void encode(bytes&); static void encode(bytes&);
bytes getBytes(); bytes getBytes();
void parse(bytes); void parse(bytes);
void printHeader(); void printHeader();
@ -41,6 +41,8 @@ public:
void setPayload(datasets payload); void setPayload(datasets payload);
short getTokenId() const; short getTokenId() const;
void setTokenId(short tokenId = 0); void setTokenId(short tokenId = 0);
byte getOpCode() const;
void setOpCode(byte opCode);
private: private:
bytes head = bytes(32); bytes head = bytes(32);

View file

@ -18,8 +18,8 @@
#include "table.h" #include "table.h"
int printHeader(Packet p) { int printHeader(Packet p) {
if (options.flags & FLAG_HEADER) { if (options.flags.HEADER) {
if (options.flags & FLAG_HEX) { if (options.flags.HEX) {
std::cout << "Received Header:\n\t" << p.getHead() << "\n"; std::cout << "Received Header:\n\t" << p.getHead() << "\n";
} else { } else {
p.printHeader(); p.printHeader();
@ -30,12 +30,12 @@ int printHeader(Packet p) {
} }
int printPacket(Packet p) { int printPacket(Packet p) {
if (options.flags & FLAG_HEX) { if (options.flags.HEX) {
std::cout << "Received Payload:\n\t" << p.getBody() << "\n"; std::cout << "Received Payload:\n\t" << p.getBody() << "\n";
} else { } else {
for (dataset d : p.getPayload()) { for (dataset d : p.getPayload()) {
auto lookup = auto lookup =
(options.flags & FLAG_REVERSE) ? snd_lookup : rcv_lookup; (options.flags.REVERSE) ? snd_lookup : rcv_lookup;
if (lookup.exists(d.type)) { if (lookup.exists(d.type)) {
table::set s = lookup[d.type]; table::set s = lookup[d.type];
if (d.len > 0) { if (d.len > 0) {
@ -88,38 +88,27 @@ int printPacket(Packet p) {
} }
int Program::list() { int Program::list() {
std::cout << "List:\n";
Packet p = Packet(Packet::DISCOVERY);
p.setHostMac(host.getMac());
p.setPayload( { });
bytes b = p.getBytes();
p.encode(b);
try { try {
sock->setHostIp(host.getIp()); std::cout << "List:\n";
sock->init(DST_PORT, SRC_PORT); discover([this](Packet a) {
sock->callback = printHeader(a);
[this](Packet a) { if (options.flags.HEX) {
printHeader(a); std::cout <<"Received Payload:\n"<<a.getBody()<<"\n";
if (options.flags & FLAG_HEX) { } else {
std::cout <<"Received Payload:\n"<<a.getBody()<<"\n"; datasets d =a.getPayload();
} else { Switch sw = Switch();
datasets d =a.getPayload(); sw.parse(d);
Switch sw = Switch(); File f;
sw.parse(d); f.write(sw.toString());
File f; sw.print();
f.write(sw.toString()); }
std::cout <<"\t"<<sw.settings.hostname<<" ("<< sw.device.type<<")\tMAC: "<<sw.device.mac<<"\tIP: "<<sw.settings.ip_addr<<"\n"; return 0;
} });
return 1;
};
sock->send(b);
io_service->run(); io_service->run();
} catch (std::exception& e) { } catch (std::exception& e) {
std::cerr << "Exception: " << e.what() << "\n"; std::cerr << "Exception: " << e.what() << "\n";
} }
return 1; return 0;
} }
int Program::sniff() { int Program::sniff() {
@ -141,91 +130,80 @@ int Program::sniff() {
std::cerr << "Exception: " << e.what() << "\n"; std::cerr << "Exception: " << e.what() << "\n";
} }
return 1; return 0;
} }
int Program::encode(std::string s) { int Program::encode(std::string s) {
bytes d(s); bytes d(s);
Packet p = Packet(Packet::DISCOVERY); Packet p = Packet(Packet::NONE);
p.encode(d); p.encode(d);
std::cout << d << std::endl; std::cout << d << std::endl;
return 0; return 0;
} }
int Program::setProperty() { int Program::setProperty(std::map<std::string,std::string> prop) {
return 0;
}
int Program::getProperty() {
std::cout << "List:\n";
Packet p = Packet(Packet::DISCOVERY);
p.setHostMac(host.getMac());
p.setPayload( { });
bytes b = p.getBytes();
p.encode(b);
auto s = sock;
try { try {
sock->setHostIp(host.getIp());
sock->init(DST_PORT, SRC_PORT); std::cout << "List:\n";
sock->callback = discover(
[this](Packet a) { [this](Packet a) {
auto s = sock;
datasets d =a.getPayload(); datasets d =a.getPayload();
Switch sw = Switch(); Switch sw = Switch();
sw.parse(d); sw.parse(d);
std::cout <<"\t"<<sw.settings.hostname<<" ("<< sw.device.type<<")\tMAC: "<<sw.device.mac<<"\tIP: "<<sw.settings.ip_addr<<"\n"; sw.print();
Packet p = Packet(Packet::GET);
p.setSwitchMac(a.getSwitchMac());
p.setHostMac(host.getMac());
datasets t = { {SND_PING, 0, {}}}; datasets t = { {SND_PING, 0, {}}};
p.setPayload(t); get(a, t, [this](Packet a) {
bytes c = p.getBytes(); datasets d =a.getPayload();
p.encode(c); Switch sw = Switch();
sw.parse(d);
sock->callback = datasets t = { {LOOP_PREVENTION, 1, {0}}};
[this](Packet a) { set(a,t,
auto s = sock;
datasets d =a.getPayload();
Switch sw = Switch();
sw.parse(d);
Packet p = Packet(Packet::SET);
p.setSwitchMac(a.getSwitchMac());
p.setTokenId(a.getTokenId());
p.setHostMac(host.getMac());
bytes n = options.user;
bytes w = options.password;
n.push_back('\0');
w.push_back('\0');
datasets t = {
{ LOGIN_USER, (short)(n.size()), n},
{ LOGIN_PASSWORD, (short)(w.size()), w},
{ REBOOT, 1, {0}}
};
p.setPayload(t);
bytes c = p.getBytes();
p.encode(c);
sock->callback = [this](Packet a) {
[this](Packet a) { std::cout << a.opCodeToString() << "\n";
std::cout << a.opCodeToString() << "\n"; printHeader(a);
printHeader(a); printPacket(a);
printPacket(a); return 0;
return 0; });
}; return 0;
sock->send(c); });
return 0;
};
sock->send(c);
return 0; return 0;
}; });
sock->send(b);
io_service->run(); io_service->run();
} catch (std::exception& e) { } catch (std::exception& e) {
std::cerr << "Exception: " << e.what() << "\n"; std::cerr << "Exception: " << e.what() << "\n";
} }
return 1; return 0;
}
int Program::getProperty(std::vector<std::string> prop) {
try {
std::cout << "List:\n";
discover([this](Packet a) {
datasets d =a.getPayload();
Switch sw = Switch();
sw.parse(d);
sw.print();
datasets t = { {SYSTEM_INFO, 0, {}}};
get(a, t, [this](Packet a) {
std::cout << a.opCodeToString() << "\n";
printHeader(a);
printPacket(a);
return 0;
});
return 0;
});
io_service->run();
} catch (std::exception& e) {
std::cerr << "Exception: " << e.what() << "\n";
}
return 0;
} }
int Program::save() { int Program::save() {
@ -233,40 +211,96 @@ int Program::save() {
sw.settings.hostname = "testname.lan"; sw.settings.hostname = "testname.lan";
File f; File f;
f.write(sw.toString()); f.write(sw.toString());
return 1; return 0;
} }
int Program::restore() { int Program::restore() {
File f; File f;
Switch sw; Switch sw;
sw.parse(f.read()); sw.parse(f.read());
std::cout << "Devices:\n\t" << sw.settings.hostname << " (" sw.print();
<< sw.device.type << ")\tMAC: " << sw.device.mac << "\tIP: " return 0;
<< sw.settings.ip_addr << "\n";
return 1;
} }
int Program::flash() { int Program::flash() {
return 0; return 1;
} }
int Program::reboot() { int Program::reboot() {
try {
discover([this](Packet a) {
datasets d =a.getPayload();
Switch sw = Switch();
sw.parse(d);
std::cout <<sw.settings.hostname<<"\t";
datasets t = { {SND_PING, 0, {}}};
get(a, t, [this](Packet a) {
datasets d =a.getPayload();
Switch sw = Switch();
sw.parse(d);
datasets t = { {REBOOT, 1, {0}}};
set(a,t,[this](Packet a) {
if( a.getOpCode()==Packet::CONFIRM)
std::cout<< "rebooting now.\n";
return 0;
});
return 0;
});
return 0;
});
io_service->run();
} catch (std::exception& e) {
std::cerr << "Exception: " << e.what() << "\n";
}
return 0; return 0;
} }
int Program::reset() { int Program::reset() {
return 1;
}
int Program::discover(std::function<int(Packet)> c) {
Packet p = Packet(Packet::DISCOVERY);
p.setHostMac(host.getMac());
p.setPayload( { });
sock->callback = c;
sock->send(p);
return 0; return 0;
} }
int Program::ping(std::function<int(Packet)>) { int Program::get(Packet l, datasets t, std::function<int(Packet)> c) {
Packet p = Packet(Packet::GET);
p.setSwitchMac(l.getSwitchMac());
p.setHostMac(host.getMac());
p.setPayload(t);
sock->callback = c;
sock->send(p);
return 0;
}
int Program::set(Packet l, datasets t, std::function<int(Packet)> c) {
Packet p = Packet(Packet::SET);
p.setSwitchMac(l.getSwitchMac());
p.setTokenId(l.getTokenId());
p.setHostMac(host.getMac());
bytes n = options.user;
bytes w = options.password;
n.push_back('\0');
w.push_back('\0');
datasets ld = { { LOGIN_USER, (short) (n.size()), n }, { LOGIN_PASSWORD,
(short) (w.size()), w } };
p.setPayload(ld + t);
sock->callback = c;
sock->send(p);
return 0; return 0;
} }
void Program::init() { void Program::init() {
if (options.interface.compare("") == 0) if (options.interface.compare("") == 0)
options.interface = host.getIface(); options.interface = host.getIface();
sock->setHostIp(host.getIp());
sock->init(DST_PORT, SRC_PORT);
} }

View file

@ -14,12 +14,15 @@
#include "Host.h" #include "Host.h"
#include "Socket.h" #include "Socket.h"
class Program { class Program {
private: private:
std::shared_ptr<boost::asio::io_service> io_service; std::shared_ptr<boost::asio::io_service> io_service;
std::shared_ptr<Socket> sock; std::shared_ptr<Socket> sock;
Host host = Host(); Host host = Host();
int ping(std::function<int(Packet)>); int get(Packet,datasets,std::function<int(Packet)>);
int set(Packet,datasets,std::function<int(Packet)>);
int discover(std::function<int(Packet)>);
public: public:
Program() { Program() {
io_service = std::make_shared<boost::asio::io_service>(); io_service = std::make_shared<boost::asio::io_service>();
@ -29,8 +32,8 @@ public:
int list(); int list();
int sniff(); int sniff();
int encode(std::string); int encode(std::string);
int setProperty(); int getProperty(std::vector<std::string>);
int getProperty(); int setProperty(std::map<std::string,std::string>);
int save(); int save();
int restore(); int restore();
int flash(); int flash();

View file

@ -21,13 +21,13 @@ void Socket::init(short dst_port, short src_port) {
if (initialized) if (initialized)
return; return;
if (options.flags & FLAG_REVERSE) { if (options.flags.REVERSE) {
short p = dst_port; short p = dst_port;
dst_port = src_port; dst_port = src_port;
src_port = p; src_port = p;
} }
if (options.flags & FLAG_DEBUG) if (options.debug_level>=1)
std::cout << "Local IP:\t" << local_ip << "\n"; std::cout << "Local IP:\t" << local_ip << "\n";
wildcard_endpoint_ = boost::asio::ip::udp::endpoint( wildcard_endpoint_ = boost::asio::ip::udp::endpoint(
@ -67,7 +67,9 @@ void Socket::setHostIp(ipAddr ip) {
local_ip = ip; local_ip = ip;
} }
void Socket::send(bytes data) { void Socket::send(Packet p) {
bytes data = p.getBytes();
p.encode(data);
unsigned char * a = &data[0]; unsigned char * a = &data[0];
send_socket_.async_send_to(boost::asio::buffer(a, data.size()), send_socket_.async_send_to(boost::asio::buffer(a, data.size()),
broadcast_endpoint_, broadcast_endpoint_,

View file

@ -23,7 +23,7 @@ public:
virtual ~Socket() { virtual ~Socket() {
} }
void init(short, short); void init(short, short);
void send(bytes); void send(Packet);
void listen(); void listen();
void setHostIp(ipAddr); void setHostIp(ipAddr);
std::function<int(Packet)> callback = [](Packet a) { std::function<int(Packet)> callback = [](Packet a) {

View file

@ -16,7 +16,7 @@ int Switch::parse(std::string str) {
if (json.Parse(str.c_str()).HasParseError()) if (json.Parse(str.c_str()).HasParseError())
return 1; return 1;
if (options.flags & FLAG_DEBUG) if (options.debug_level>=1)
std::cout << "\nParsing to document succeeded.\n"; std::cout << "\nParsing to document succeeded.\n";
if (json.IsObject()) { if (json.IsObject()) {

View file

@ -19,6 +19,12 @@ int Switch::parse(datasets arr) {
return 0; return 0;
} }
int Switch::print() {
std::cout << "\t" << settings.hostname << " (" << device.type << ")\tMAC: "
<< device.mac << "\tIP: " << settings.ip_addr << "\n";
return 0;
}
int Switch::parse(dataset d) { int Switch::parse(dataset d) {
switch (d.type) { switch (d.type) {
case RCV_TYPE: case RCV_TYPE:
@ -63,4 +69,3 @@ int Switch::parse(dataset d) {
} }
return 0; return 0;
} }

View file

@ -65,6 +65,7 @@ public:
int parse(datasets); int parse(datasets);
int parse(dataset); int parse(dataset);
int parse(std::string); int parse(std::string);
int print();
std::string toString(); std::string toString();
struct { struct {

View file

@ -21,105 +21,113 @@
class macAddr: public std::array<byte, 6> { class macAddr: public std::array<byte, 6> {
public: public:
friend std::ostream& operator<<(std::ostream& out, const macAddr& arr) { friend std::ostream& operator<<(std::ostream& out, const macAddr& arr) {
out << std::hex << std::setw(2) << std::setfill('0') out << std::hex << std::setw(2) << std::setfill('0')
<< (unsigned) arr[0]; << (unsigned) arr[0];
for (unsigned i = 1; i < 6; i++) { for (unsigned i = 1; i < 6; i++) {
out << ":" << std::setw(2) << std::setfill('0') out << ":" << std::setw(2) << std::setfill('0')
<< (unsigned) arr[i]; << (unsigned) arr[i];
} }
return out; return out;
} }
macAddr() { macAddr() {
*this= {0,0,0,0,0,0}; *this= {0,0,0,0,0,0};
} }
macAddr(std::initializer_list<byte> s) { macAddr(std::initializer_list<byte> s) {
int i = 0; int i = 0;
for (byte b : s) { for (byte b : s) {
if(i<6) (*this)[i++]=b; if(i<6) (*this)[i++]=b;
else break; else break;
} }
} }
macAddr(bytes bts) { macAddr(bytes bts) {
int i = 0; int i = 0;
for (byte b : bts) { for (byte b : bts) {
if(i<6) (*this)[i++]=b; if(i<6) (*this)[i++]=b;
else break; else break;
} }
} }
}; };
/* /*
class mac_addr : public std::array<unsigned char, 6> { class mac_addr : public std::array<unsigned char, 6> {
public: public:
typedef std::array<unsigned char, 6> super; typedef std::array<unsigned char, 6> super;
using super::super; using super::super;
mac_addr{00, 00, 00, 000};
};
*/
mac_addr{00, 00, 00, 000};
};
*/
class ipAddr: public std::array<byte, 4> { class ipAddr: public std::array<byte, 4> {
public: public:
ipAddr() { ipAddr() {
*this= {0,0,0,0,0,0}; *this= {0,0,0,0,0,0};
} }
ipAddr(std::initializer_list<byte> s) { ipAddr(std::initializer_list<byte> s) {
int i = 0; int i = 0;
for (byte b : s) { for (byte b : s) {
if(i<4) (*this)[i++]=b; if(i<4) (*this)[i++]=b;
else break; else break;
} }
} }
ipAddr(bytes bts) { ipAddr(bytes bts) {
int i = 0; int i = 0;
for (byte b : bts) { for (byte b : bts) {
if(i<4) (*this)[i++]=b; if(i<4) (*this)[i++]=b;
else break; else break;
} }
} }
friend std::ostream& operator<<(std::ostream& out, ipAddr& arr) { friend std::ostream& operator<<(std::ostream& out, ipAddr& arr) {
out << std::dec << (unsigned) arr[0]; out << std::dec << (unsigned) arr[0];
for (unsigned i = 1; i < 4; i++) { for (unsigned i = 1; i < 4; i++) {
out << "." << (unsigned) arr[i]; out << "." << (unsigned) arr[i];
} }
return out; return out;
} }
}; };
template<typename T> template<typename T>
std::vector<T> operator+(const std::vector<T> &A, const std::vector<T> &B) { std::vector<T> operator+(const std::vector<T> &A, const std::vector<T> &B) {
std::vector<T> AB; std::vector<T> AB;
AB.reserve(A.size() + B.size()); // preallocate memory AB.reserve(A.size() + B.size()); // preallocate memory
AB.insert(AB.end(), A.begin(), A.end()); // add A; AB.insert(AB.end(), A.begin(), A.end()); // add A;
AB.insert(AB.end(), B.begin(), B.end()); // add B; AB.insert(AB.end(), B.begin(), B.end()); // add B;
return AB; return AB;
} }
template<typename T> template<typename T>
std::vector<T> &operator+=(std::vector<T> &A, const std::vector<T> &B) { std::vector<T> &operator+=(std::vector<T> &A, const std::vector<T> &B) {
A.reserve(A.size() + B.size()); A.reserve(A.size() + B.size());
A.insert(A.end(), B.begin(), B.end()); A.insert(A.end(), B.begin(), B.end());
return A; return A;
} }
struct Options { struct Options {
unsigned flags = 0x00; struct {
std::string user; bool HEX;
std::string password; bool JSON;
std::string interface; bool PLAIN;
std::string file; bool REVERSE;
int debug_level=0; bool HEADER;
long timeout = 180U; bool PERMANENT;
bool WAIT;
} flags;
std::string user;
std::string password;
std::string interface;
std::string file;
int debug_level = 0;
int verbosity = 0;
long timeout = 180U;
}; };
#endif /* TYPES_H_ */ #endif /* TYPES_H_ */

View file

@ -27,6 +27,14 @@ public:
push_back(b); push_back(b);
} }
} }
datasets operator+(const datasets &B) {
datasets AB;
AB.reserve(this->size() + B.size());
AB.insert(AB.end(), this->begin(), this->end());
AB.insert(AB.end(), B.begin(), B.end());
return AB;
}
}; };
#endif /* DATASETS_H_ */ #endif /* DATASETS_H_ */

79
src/future.cpp Normal file
View file

@ -0,0 +1,79 @@
#include <iostream>
#include <chrono>
#include <thread>
#include <future>
#include <boost/asio.hpp>
void asyncRun() {
std::cout << "Async..." << std::flush;
boost::asio::io_service io_service;
std::shared_ptr < std::promise<int> > promise(new std::promise<int>());
std::future<int> future = promise->get_future();
io_service.post([promise]()
{
std::chrono::milliseconds dura( 2000 );
std::this_thread::sleep_for( dura );
promise->set_value(9);
});
std::thread t1([&io_service] {io_service.run();});
t1.detach();
std::cout << "Waiting..." << std::flush;
future.wait();
std::cout << "Done!\nResults are: " << future.get() << '\n';
}
void nonBlockingRun() {
std::cout << "Non Blocking..." << std::flush;
std::promise<int> promise;
std::future<int> future = promise.get_future();
std::thread t1([](std::promise<int> p)
{
std::chrono::milliseconds dura( 2000 );
std::this_thread::sleep_for( dura );
p.set_value(9);
}, std::move(promise));
t1.detach();
std::cout << "Waiting...\n" << std::flush;
std::future_status status;
do {
status = future.wait_for(std::chrono::seconds(0));
if (status == std::future_status::deferred) {
std::cout << "+";
} else if (status == std::future_status::timeout) {
std::cout << ".";
}
} while (status != std::future_status::ready);
std::cout << "Done!\nResults are: " << future.get() << '\n';
}
void blockingRun() {
std::cout << "Blocking..." << std::flush;
std::promise<int> promise;
std::future<int> future = promise.get_future();
std::thread t1([](std::promise<int> p)
{
std::chrono::milliseconds dura( 2000 );
std::this_thread::sleep_for( dura );
p.set_value(9);
}, std::move(promise));
t1.detach();
std::cout << "Waiting..." << std::flush;
future.wait();
std::cout << "Done!\nResults are: " << future.get() << '\n';
}
int main2() {
nonBlockingRun();
blockingRun();
asyncRun();
}

View file

@ -1,13 +1,13 @@
enum { enum {
#define LOOKUP_SET(id, num, type) RCV_ ## id = num, #define LOOKUP_SET(id, name, num, type) RCV_ ## id = num,
#include "lookup/rcv.lst" #include "lookup/rcv.lst"
#include "lookup/general.lst" #include "lookup/general.lst"
#undef LOOKUP_SET #undef LOOKUP_SET
#define LOOKUP_SET(id, num, type) SND_ ## id = num, #define LOOKUP_SET(id, name, num, type) SND_ ## id = num,
#include "lookup/snd.lst" #include "lookup/snd.lst"
#include "lookup/general.lst" #include "lookup/general.lst"
#undef LOOKUP_SET #undef LOOKUP_SET
#define LOOKUP_SET(id, num, type) id = num, #define LOOKUP_SET(id, name, num, type) id = num,
#include "lookup/rcv.lst" #include "lookup/rcv.lst"
#include "lookup/snd.lst" #include "lookup/snd.lst"
#include "lookup/general.lst" #include "lookup/general.lst"
@ -15,14 +15,14 @@ enum {
}; };
static table rcv_lookup { static table rcv_lookup {
#define LOOKUP_SET(id, num, type) { RCV_ ## id, table::type, #id }, #define LOOKUP_SET(id, name, num, type) { RCV_ ## id, table::type, #name, #id },
#include "lookup/rcv.lst" #include "lookup/rcv.lst"
#include "lookup/general.lst" #include "lookup/general.lst"
#undef LOOKUP_SET #undef LOOKUP_SET
}; };
static table snd_lookup { static table snd_lookup {
#define LOOKUP_SET(id, num, type) { SND_ ## id, table::type, #id }, #define LOOKUP_SET(id, name, num, type) { SND_ ## id, table::type, #name, #id },
#include "lookup/snd.lst" #include "lookup/snd.lst"
#include "lookup/general.lst" #include "lookup/general.lst"
#undef LOOKUP_SET #undef LOOKUP_SET

View file

@ -1,25 +1,25 @@
LOOKUP_SET(PORTS, 10, DEC) //+byte, maybe number of ports LOOKUP_SET(PORTS, ports, 10, DEC) //+byte, maybe number of ports
LOOKUP_SET(IGMP_SNOOPING, 4352, HEX) //??? LOOKUP_SET(IGMP_SNOOPING, igmp, 4352, HEX) //???
LOOKUP_SET(PORTS_SETTINGS, 4096, HEX) //+per port LOOKUP_SET(PORTS_SETTINGS, psetings, 4096, HEX) //+per port
LOOKUP_SET(PORT_TRUNK, 4608, HEX) //byte[5] last byte bitmask?? LOOKUP_SET(PORT_TRUNK, trunk, 4608, HEX) //byte[5] last byte bitmask??
LOOKUP_SET(MTU_VLAN, 8192, HEX) //byte[2] first byte bool,second byte port id LOOKUP_SET(MTU_VLAN, 8192,8192, HEX) //byte[2] first byte bool,second byte port id
LOOKUP_SET(PORT_VLAN_ENABLED, 8448, BOOL) //open page LOOKUP_SET(PORT_VLAN_ENABLED, 8448,8448, BOOL) //open page
LOOKUP_SET(PORT_VLAN, 8449, HEX) LOOKUP_SET(PORT_VLAN, 8449,8449, HEX)
LOOKUP_SET(PORT_VLAN_MAX, 8450, DEC) LOOKUP_SET(PORT_VLAN_MAX, 8450,8450, DEC)
LOOKUP_SET(VLAN_ENABLED, 8704, BOOL) //+bool byte LOOKUP_SET(VLAN_ENABLED, 8704, 8704, BOOL) //+bool byte
LOOKUP_SET(VLAN, 8705, HEX) //+one set per vlan LOOKUP_SET(VLAN, 8705,8705, HEX) //+one set per vlan
LOOKUP_SET(VLAN_PVID, 8706, HEX) //+per port LOOKUP_SET(VLAN_PVID, 8706,8706, HEX) //+per port
LOOKUP_SET(VLAN_FOOOO, 8707, DEC) //???? LOOKUP_SET(VLAN_FOOOO, 8707,8707, DEC) //????
LOOKUP_SET(QOS_BASIC_ENABLED, 12288, BOOL) //+bool = QoS Mod LOOKUP_SET(QOS_BASIC_ENABLED, 12288,12288, BOOL) //+bool = QoS Mod
LOOKUP_SET(QOS_BASIC, 12289, HEX) //+per port ??? LOOKUP_SET(QOS_BASIC, 12289,12289, HEX) //+per port ???
LOOKUP_SET(BW_CONTROL_INGRESS, 12544, HEX) //+per port ??? LOOKUP_SET(BW_CONTROL_INGRESS, 12544,12544, HEX) //+per port ???
LOOKUP_SET(BW_CONTROL_EGRESS, 12545, HEX) //+per port ??? LOOKUP_SET(BW_CONTROL_EGRESS, 12545,12545, HEX) //+per port ???
LOOKUP_SET(STORM_CONTROL, 12800, HEX) //+per port ??? LOOKUP_SET(STORM_CONTROL, 12800,12800, HEX) //+per port ???
LOOKUP_SET(PORT_MIRROR, 16640, HEX) //byte[10] second byte port id??? LOOKUP_SET(PORT_MIRROR, 16640,16640, HEX) //byte[10] second byte port id???
LOOKUP_SET(PORT_STATISTICS, 16384, HEX) //+per port ??? LOOKUP_SET(PORT_STATISTICS, 16384,16384, HEX) //+per port ???
LOOKUP_SET(CABLE_TEST, 16896, HEX) //+per port ??? LOOKUP_SET(CABLE_TEST, 16896,16896, HEX) //+per port ???
LOOKUP_SET(LOOP_PREVENTION, 17152, BOOL) //+bool byte LOOKUP_SET(LOOP_PREVENTION, 17152,17152, BOOL) //+bool byte

View file

@ -1,13 +1,13 @@
LOOKUP_SET(TYPE, 1, STRING) //+string LOOKUP_SET(TYPE,type, 1, STRING) //+string
LOOKUP_SET(HOSTNAME, 2, STRING) //+string LOOKUP_SET(HOSTNAME,host, 2, STRING) //+string
LOOKUP_SET(MAC, 3, HEX) //+byte[6] LOOKUP_SET(MAC,MAC, 3, HEX) //+byte[6]
LOOKUP_SET(IP_ADDR, 4, DEC) //+byte[4] LOOKUP_SET(IP_ADDR,ip, 4, DEC) //+byte[4]
LOOKUP_SET(IP_MASK, 5, DEC) //+byte[4] LOOKUP_SET(IP_MASK,mask, 5, DEC) //+byte[4]
LOOKUP_SET(GATEWAY, 6, DEC) //+byte[4] LOOKUP_SET(GATEWAY,gateway, 6, DEC) //+byte[4]
LOOKUP_SET(FIRMWARE_VERSION, 7, STRING) LOOKUP_SET(FIRMWARE_VERSION,FIRMWARE_VERSION, 7, STRING)
LOOKUP_SET(HARDWARE_VERSION, 8, STRING) LOOKUP_SET(HARDWARE_VERSION,HARDWARE_VERSION, 8, STRING)
LOOKUP_SET(DHCP_ENABLED, 9, BOOL) //+bool byte LOOKUP_SET(DHCP_ENABLED,dhcp, 9, BOOL) //+bool byte
LOOKUP_SET(PORT_VLAN_FOOOOO, 2101, HEX) LOOKUP_SET(PORT_VLAN_FOOOOO, 2101,2101, HEX)

View file

@ -1,17 +1,17 @@
LOOKUP_SET(SYSTEM_INFO, 2, HEX) //page sysinfo LOOKUP_SET(SYSTEM_INFO,SYSTEM_INFO, 2, HEX) //page sysinfo
LOOKUP_SET(IP_CONFIG, 9, HEX) //page sysinfo LOOKUP_SET(IP_CONFIG,IP_CONFIG, 9, HEX) //page sysinfo
LOOKUP_SET(LOGIN_USER, 512, STRING) //string LOOKUP_SET(LOGIN_USER,LOGIN_USER, 512, STRING) //string
LOOKUP_SET(NEW_USER, 513, STRING) //string LOOKUP_SET(NEW_USER,NEW_USER, 513, STRING) //string
LOOKUP_SET(LOGIN_PASSWORD, 514, STRING) //string LOOKUP_SET(LOGIN_PASSWORD,LOGIN_PASSWORD, 514, STRING) //string
LOOKUP_SET(NEW_PASSWORD, 515, STRING) //string LOOKUP_SET(NEW_PASSWORD,NEW_PASSWORD, 515, STRING) //string
LOOKUP_SET(REBOOT, 773, BOOL) //bool byte = save config LOOKUP_SET(REBOOT,REBOOT, 773, BOOL) //bool byte = save config
LOOKUP_SET(RESET, 1280, ACTION) // LOOKUP_SET(RESET,RESET, 1280, ACTION) //
LOOKUP_SET(FLASH, 1536, ACTION) //update firmware LOOKUP_SET(FLASH,FLASH, 1536, ACTION) //update firmware
LOOKUP_SET(VLAN_FOOOOOO, 2200, HEX) //vlan LOOKUP_SET(VLAN_FOOOOOO, 2200,2200, HEX) //vlan
LOOKUP_SET(SAVE, 2304, ACTION) //save LOOKUP_SET(SAVE,SAVE, 2304, ACTION) //save
LOOKUP_SET(PING, 2305, ACTION) //sent before SET ??? LOOKUP_SET(PING,PING, 2305, ACTION) //sent before SET ???

View file

@ -1,7 +1,7 @@
//============================================================================ //============================================================================
// Name : smrtlink.cpp // Name : smrtlink.cpp
// Author : jdi // Author : jdi
// Version : // Version : 1.1
// Copyright : GPL v2 // Copyright : GPL v2
// Description : SmrtLink in C++, Ansi-style // Description : SmrtLink in C++, Ansi-style
//============================================================================ //============================================================================
@ -13,7 +13,7 @@
#include <cstdlib> #include <cstdlib>
#include <cstdio> #include <cstdio>
#include <getopt.h> #include <boost/program_options.hpp>
#include <unistd.h> #include <unistd.h>
#include "Constant.h" #include "Constant.h"
@ -25,197 +25,164 @@
#define required_argument 1 #define required_argument 1
#define optional_argument 2 #define optional_argument 2
using namespace std;
namespace po = boost::program_options;
Options options; Options options;
constexpr unsigned int caseArg(const char* str, int h = 0) { constexpr unsigned int caseArg(const char* str, int h = 0) {
return !str[h] ? 5381 : (caseArg(str, h + 1) * 33) ^ str[h]; return !str[h] ? 5381 : (caseArg(str, h + 1) * 33) ^ str[h];
} }
int main(int argc, char *argv[]) { int main3(int argc, char *argv[]) {
int opt, index; int opt, index;
options.user = DEFAULT_USER; options.user = DEFAULT_USER;
options.password = DEFAULT_PASS; options.password = DEFAULT_PASS;
const struct option longopts[] = { { "version", no_argument, 0, 'v' }, { // Declare the supported options.
"help", no_argument, 0, 'h' }, { "reverse", no_argument, 0, 'r' }, { po::options_description desc("Option Summary");
"permanent", no_argument, 0, 's' }, { "debug", optional_argument, 0, desc.add_options()("help,h", "Display this help text")("version,V",
'd' }, { "password", required_argument, 0, 'p' }, { "user", "Display version of this tool")("reverse,r",
required_argument, 0, 'u' }, { "interface", required_argument, 0, 'i' }, { po::bool_switch(&options.flags.REVERSE)->default_value(false),
"header", required_argument, 0, 'b' }, { "hex", required_argument, "switch ports to emulate switch while sniffing")("permanent,s",
0, 'x' }, { "file", required_argument, 0, 'f' }, { "timeout", po::bool_switch(&options.flags.PERMANENT)->default_value(false),
required_argument, 0, 't' }, { "wait", "Not yet implemented: make changes immediately permanent")("hex,x",
required_argument, 0, 'w' }, { 0, 0, 0, 0 }, }; po::bool_switch(&options.flags.HEX)->default_value(false),
"Display Packets as Hex String")("json,j",
po::bool_switch(&options.flags.JSON)->default_value(false),
"Display Packets as JSON")("header,b",
po::bool_switch(&options.flags.HEADER)->default_value(false),
"Show header")("wait,w",
po::bool_switch(&options.flags.WAIT)->default_value(false),
"Not yet implemented: blocking until operation is completed")(
"debug,d",
po::value<int>()->implicit_value(1)->default_value(0)->value_name(
"n"), "Show debugging messages")("password,p",
po::value<string>(&options.password)->value_name("password"), "")(
"user,u", po::value<string>()->value_name("username"), "")(
"interface,i",
po::value<string>(&options.interface)->value_name("iface"),
"only use one Interface")("file,f",
po::value<string>(&options.file)->value_name("path"),
"choose a settings file")("timeout,t",
po::value<long>(&options.timeout)->default_value(180L)->value_name(
"n"), "Timeout in milliseconds")("verbose,v",
po::value<int>()->implicit_value(1)->default_value(0)->value_name(
"n"), "verbosity level");
Program p = Program(); po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
while ((opt = getopt_long(argc, argv, "bhrvswxp:u:i:f:t:d::", longopts, if (vm.count("help")) {
&index)) != -1) { cerr << VERSION;
switch (opt) { cerr << USAGE;
cerr << desc << "\n";
cerr << HELP;
exit(EXIT_SUCCESS);
return 1;
}
case 'h': if (vm.count("version")) {
fprintf(stderr, VERSION); cerr << VERSION;
fprintf(stderr, USAGE, argv[0]); exit(EXIT_SUCCESS);
fprintf(stderr, HELP); return 1;
exit(EXIT_SUCCESS); }
break;
case 'v': Program p = Program();
fprintf(stderr, VERSION);
exit(EXIT_SUCCESS);
break;
case 'r': /*//TODO stdin
options.flags |= FLAG_REVERSE; std::ostringstream bucket;
break; bucket << std::cin.rdbuf();
p.input = bucket.str();
*/
case 'b': if (optind >= argc) {
options.flags |= FLAG_HEADER; fprintf(stderr, "Command expected\n");
break; fprintf(stderr, USAGE, argv[0]);
exit(EXIT_FAILURE);
}
case 'x': p.init();
options.flags |= FLAG_HEX;
break;
case 's': if (optind < argc) {
options.flags |= FLAG_PERMANENT; std::string cmd = std::string(argv[optind++]);
break;
case 'w': switch (caseArg(cmd.c_str())) {
options.flags |= FLAG_WAIT; case caseArg("set"):
break; while (optind < argc) {
printf("+%s\n", argv[optind]);
optind++;
}
if (!p.setProperty({}))
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case caseArg("reboot"):
if (!p.reboot())
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case caseArg("reset"):
if (!p.reset())
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case caseArg("save"):
if (!p.save())
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case caseArg("restore"):
if (!p.restore())
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case caseArg("flash"):
if (!p.flash())
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case 'd': case caseArg("get"):
options.flags |= FLAG_DEBUG; if (!p.getProperty({}))
if (optarg != NULL) exit(EXIT_SUCCESS);
options.debug_level = atoi(optarg); break;
break;
case 't': case caseArg("list"):
options.timeout = atol(optarg); if (!p.list())
break; exit(EXIT_SUCCESS);
break;
case 'f': case caseArg("sniff"):
options.file = std::string(optarg); if (!p.sniff())
break; exit(EXIT_SUCCESS);
break;
case 'p': case caseArg("encode"):
options.password = std::string(optarg); if (optind < argc) {
break; std::string s(argv[optind]);
optind++;
if (p.encode(s))
exit(EXIT_SUCCESS);
} else {
fprintf(stderr, "Argument expected after encode\n");
exit(EXIT_FAILURE);
}
break;
case 'u': default:
options.user = std::string(optarg); printf("Unknown command: %s\n", cmd.c_str());
break; exit(EXIT_FAILURE);
}
case 'i': }
options.interface = std::string(optarg); exit(EXIT_FAILURE);
break;
default: /* '?' */
fprintf(stderr, "Unknown option\n");
fprintf(stderr, USAGE, argv[0]);
exit(EXIT_FAILURE);
}
}
/*//TODO stdin
std::ostringstream bucket;
bucket << std::cin.rdbuf();
p.input = bucket.str();
*/
if (optind >= argc) {
fprintf(stderr, "Command expected\n");
fprintf(stderr, USAGE, argv[0]);
exit(EXIT_FAILURE);
}
p.init();
if (optind < argc) {
std::string cmd = std::string(argv[optind++]);
switch (caseArg(cmd.c_str())) {
case caseArg("set"):
if (p.setProperty())
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case caseArg("reboot"):
if (p.reboot())
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case caseArg("reset"):
if (p.reset())
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case caseArg("save"):
if (p.save())
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case caseArg("restore"):
if (p.restore())
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case caseArg("flash"):
if (p.flash())
exit(EXIT_SUCCESS);
fprintf(stderr, "Not yet implemented.\n");
exit(EXIT_FAILURE);
break;
case caseArg("get"):
if (p.getProperty())
exit(EXIT_SUCCESS);
break;
case caseArg("list"):
if (p.list())
exit(EXIT_SUCCESS);
break;
case caseArg("sniff"):
if (p.sniff())
exit(EXIT_SUCCESS);
break;
case caseArg("encode"):
if (optind < argc) {
std::string s(argv[optind]);
optind++;
if (p.encode(s))
exit(EXIT_SUCCESS);
} else {
fprintf(stderr, "Argument expected after encode\n");
exit(EXIT_FAILURE);
}
break;
case caseArg("help"):
fprintf(stderr, VERSION);
fprintf(stderr, USAGE, argv[0]);
fprintf(stderr, HELP);
exit(EXIT_SUCCESS);
break;
default:
printf("Unknown command: %s\n", cmd.c_str());
while (optind < argc) {
printf("->%s\n", argv[optind]);
optind++;
}
exit(EXIT_FAILURE);
}
}
exit(EXIT_FAILURE);
} }

View file

@ -8,18 +8,35 @@
#include <string> #include <string>
#include "table.h" #include "table.h"
table::table(std::initializer_list<set> l) { table::table(std::initializer_list<set> l) {
int i = 0; int i = 0;
for (set s : l) { this->data.resize(l.size());
this->left[s.type] = s; for (set s : l) {
} this->data[i] = s;
this->left[s.type] = &this->data[i];
this->right[s.name] = &this->data[i];
i++;
}
} }
table::set table::operator[](short n){ const table::set table::operator[](std::string s){
return this->left[n]; return *this->right[s];
}
const table::set table::operator[](short n){
return *this->left[n];
}
bool table::exists(std::string s){
return !(right.find(s) == right.end());
} }
bool table::exists(short n){ bool table::exists(short n){
return !(left.find(n) == left.end()); return !(left.find(n) == left.end());
}
short table::type(std::string s){
return this->right[s]->type;
}
std::string table::id(short n){
return this->left[n]->id;
} }
std::string table::name(short n){ std::string table::name(short n){
return this->left[n].name; return this->left[n]->name;
} }

View file

@ -17,14 +17,21 @@ public:
struct set { struct set {
short type; short type;
F format; F format;
std::string name; std::string name;
std::string id;
}; };
table(std::initializer_list<set> l); table(std::initializer_list<set> l);
set operator[](short); const table::set operator[](std::string);
bool exists(short); const table::set operator[](short);
std::string name(short); bool exists(std::string);
bool exists(short);
short type(std::string);
std::string id(short);
std::string name(short);
private: private:
std::map<short, set> left; std::vector<set> data;
std::map<short, set*> left;
std::map<std::string, set*> right;
}; };
#endif /* LOOKUPTABLE_H_ */ #endif /* LOOKUPTABLE_H_ */