2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <boost/bind.hpp>
25 #include <pv/prop/enum.h>
27 using namespace boost;
34 HwCap::HwCap(struct sr_dev_inst *sdi) :
39 if ((sr_info_get(sdi->driver, SR_DI_HWCAPS, (const void **)&hwcaps,
40 sdi) != SR_OK) || !hwcaps)
41 /* Driver supports no device instance options. */
44 for (int cap = 0; hwcaps[cap]; cap++) {
45 const struct sr_hwcap_option *const hwo =
46 sr_devopt_get(hwcaps[cap]);
53 case SR_HWCAP_PATTERN_MODE:
54 bind_stropt(hwo, SR_DI_PATTERNS,
55 SR_HWCAP_PATTERN_MODE);
58 case SR_HWCAP_BUFFERSIZE:
59 bind_buffer_size(hwo);
62 case SR_HWCAP_TIMEBASE:
66 case SR_HWCAP_TRIGGER_SOURCE:
67 bind_stropt(hwo, SR_DI_TRIGGER_SOURCES,
68 SR_HWCAP_TRIGGER_SOURCE);
72 bind_stropt(hwo, SR_DI_FILTERS, SR_HWCAP_FILTER);
79 case SR_HWCAP_COUPLING:
80 bind_stropt(hwo, SR_DI_COUPLING, SR_HWCAP_FILTER);
86 void HwCap::expose_enum(const struct sr_hwcap_option *hwo,
87 const vector< pair<const void*, QString> > &values, int opt)
89 _properties.push_back(shared_ptr<Property>(
90 new Enum(QString(hwo->shortname), values,
91 function<const void* ()>(),
92 bind(sr_dev_config_set, _sdi, opt, _1))));
95 void HwCap::bind_stropt(const struct sr_hwcap_option *hwo, int id, int opt)
98 if (sr_info_get(_sdi->driver, id,
99 (const void **)&stropts, _sdi) != SR_OK)
102 vector< pair<const void*, QString> > values;
103 for (int i = 0; stropts[i]; i++)
104 values.push_back(make_pair(stropts[i], stropts[i]));
106 expose_enum(hwo, values, opt);
109 void HwCap::bind_buffer_size(const struct sr_hwcap_option *hwo)
111 const uint64_t *sizes;
112 if (sr_info_get(_sdi->driver, SR_DI_BUFFERSIZES,
113 (const void **)&sizes, _sdi) != SR_OK)
116 vector< pair<const void*, QString> > values;
117 for (int i = 0; sizes[i]; i++)
118 values.push_back(make_pair(sizes + i,
119 QString("%1").arg(sizes[i])));
121 expose_enum(hwo, values, SR_HWCAP_BUFFERSIZE);
124 void HwCap::bind_time_base(const struct sr_hwcap_option *hwo)
126 struct sr_rational *timebases;
127 if (sr_info_get(_sdi->driver, SR_DI_TIMEBASES,
128 (const void **)&timebases, _sdi) != SR_OK)
131 vector< pair<const void*, QString> > values;
132 for (int i = 0; timebases[i].p && timebases[i].q; i++)
133 values.push_back(make_pair(timebases + i,
134 QString(sr_period_string(
135 timebases[i].p * timebases[i].q))));
137 expose_enum(hwo, values, SR_HWCAP_TIMEBASE);
140 void HwCap::bind_vdiv(const struct sr_hwcap_option *hwo)
142 struct sr_rational *vdivs;
143 if (sr_info_get(_sdi->driver, SR_DI_VDIVS,
144 (const void **)&vdivs, _sdi) != SR_OK)
147 vector< pair<const void*, QString> > values;
148 for (int i = 0; vdivs[i].p && vdivs[i].q; i++)
149 values.push_back(make_pair(vdivs + i,
150 QString(sr_voltage_string(vdivs + i))));
152 expose_enum(hwo, values, SR_HWCAP_VDIV);