X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fstd.c;h=13f9b03195f549eafa40e02072605242dc6f7294;hb=f1ba6b4b2c9a8ecf90bb31efb218752aa7e49d1a;hp=70632319ef149fcde245b3a386a0126424c86927;hpb=bee2b0168c087676c1b365861d8c2d4714afa9b9;p=libsigrok.git diff --git a/src/std.c b/src/std.c index 70632319..13f9b031 100644 --- a/src/std.c +++ b/src/std.c @@ -14,14 +14,16 @@ * 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 St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -/** @file - * Standard API helper functions. - * @internal - */ +/** + * @file + * + * Standard API helper functions. + * + * @internal + */ #include #include @@ -91,13 +93,11 @@ SR_PRIV int std_cleanup(const struct sr_dev_driver *di) */ SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi) { - const char *prefix = sdi->driver->name; + const char *prefix = (sdi->driver) ? sdi->driver->name : "unknown"; int ret; struct sr_datafeed_packet packet; struct sr_datafeed_header header; - sr_dbg("%s: Starting acquisition.", prefix); - /* Send header packet to the session bus. */ sr_dbg("%s: Sending SR_DF_HEADER packet.", prefix); packet.type = SR_DF_HEADER; @@ -123,7 +123,7 @@ SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi) */ SR_PRIV int std_session_send_df_end(const struct sr_dev_inst *sdi) { - const char *prefix = sdi->driver->name; + const char *prefix = (sdi->driver) ? sdi->driver->name : "unknown"; int ret; struct sr_datafeed_packet packet; @@ -152,23 +152,20 @@ SR_PRIV int std_session_send_df_end(const struct sr_dev_inst *sdi) * callback in drivers that use a serial port. The port is opened * with the SERIAL_RDWR flag. * - * If the open succeeded, the status field of the given sdi is set - * to SR_ST_ACTIVE. - * * @retval SR_OK Success. + * @retval SR_ERR_ARG Invalid arguments. * @retval SR_ERR Serial port open failed. */ SR_PRIV int std_serial_dev_open(struct sr_dev_inst *sdi) { struct sr_serial_dev_inst *serial; - serial = sdi->conn; - if (serial_open(serial, SERIAL_RDWR) != SR_OK) - return SR_ERR; + if (!sdi || !sdi->conn) + return SR_ERR_ARG; - sdi->status = SR_ST_ACTIVE; + serial = sdi->conn; - return SR_OK; + return serial_open(serial, SERIAL_RDWR); } /** @@ -177,22 +174,20 @@ SR_PRIV int std_serial_dev_open(struct sr_dev_inst *sdi) * This function can be used to implement the dev_close() driver API * callback in drivers that use a serial port. * - * After closing the port, the status field of the given sdi is set - * to SR_ST_INACTIVE. - * * @retval SR_OK Success. + * @retval SR_ERR_ARG Invalid arguments. + * @retval SR_ERR Serial port close failed. */ SR_PRIV int std_serial_dev_close(struct sr_dev_inst *sdi) { struct sr_serial_dev_inst *serial; + if (!sdi || !sdi->conn) + return SR_ERR_ARG; + serial = sdi->conn; - if (serial && sdi->status == SR_ST_ACTIVE) { - serial_close(serial); - sdi->status = SR_ST_INACTIVE; - } - return SR_OK; + return serial_close(serial); } /** @@ -203,37 +198,24 @@ SR_PRIV int std_serial_dev_close(struct sr_dev_inst *sdi) * * @param sdi The device instance for which acquisition should stop. * Must not be NULL. - * @param cb_data Opaque 'cb_data' pointer. Must not be NULL. - * @param dev_close_fn Function pointer to the driver's dev_close(). - * Must not be NULL. - * @param serial The serial device instance (struct serial_dev_inst *). - * Must not be NULL. * * @retval SR_OK Success. * @retval SR_ERR_ARG Invalid arguments. * @retval SR_ERR_DEV_CLOSED Device is closed. * @retval SR_ERR Other errors. */ -SR_PRIV int std_serial_dev_acquisition_stop(struct sr_dev_inst *sdi, - dev_close_callback dev_close_fn, - struct sr_serial_dev_inst *serial) +SR_PRIV int std_serial_dev_acquisition_stop(struct sr_dev_inst *sdi) { + struct sr_serial_dev_inst *serial = sdi->conn; const char *prefix = sdi->driver->name; int ret; - if (sdi->status != SR_ST_ACTIVE) { - sr_err("%s: Device inactive, can't stop acquisition.", prefix); - return SR_ERR_DEV_CLOSED; - } - - sr_dbg("%s: Stopping acquisition.", prefix); - if ((ret = serial_source_remove(sdi->session, serial)) < 0) { sr_err("%s: Failed to remove source: %d.", prefix, ret); return ret; } - if ((ret = dev_close_fn(sdi)) < 0) { + if ((ret = sr_dev_close(sdi)) < 0) { sr_err("%s: Failed to close device: %d.", prefix, ret); return ret; }