123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /*
- * $Id$
- *
- * Copyright (C) 2001-2003 FhG FOKUS
- * Copyright (C) 2006-2007 iptelorg GmbH
- *
- * This file is part of ser, a free SIP server.
- *
- * ser 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
- *
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact iptel.org by e-mail at the following addresses:
- * [email protected]
- *
- * ser 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 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
- */
- /** \ingroup DB_API
- * @{
- */
- #include "db_res.h"
- #include "../../dprint.h"
- #include "../../mem/mem.h"
- #include <string.h>
- db_res_t* db_res(db_cmd_t* cmd)
- {
- db_res_t* newp;
- int ret;
- newp = (db_res_t*)pkg_malloc(sizeof(db_res_t));
- if (newp == NULL) goto err;
- memset(newp, '\0', sizeof(db_res_t));
- if (db_gen_init(&newp->gen) < 0) goto err;
- newp->cmd = cmd;
- newp->field_count = cmd->result_count;
- ret = db_drv_call(&cmd->ctx->con[db_payload_idx]->uri->scheme,
- "db_res", newp, db_payload_idx);
- if (ret < 0) goto err;
- newp->cur_rec = db_rec(newp, cmd->result);
- if (newp->cur_rec == NULL) goto err;
- return newp;
- err:
- ERR("db_res: Cannot create db_res structure\n");
- if (newp) {
- if (newp->cur_rec) db_rec_free(newp->cur_rec);
- db_gen_free(&newp->gen);
- pkg_free(newp);
- }
- return NULL;
- }
- void db_res_free(db_res_t* r)
- {
- if (r == NULL) return;
- db_gen_free(&r->gen);
- if (r->cur_rec) db_rec_free(r->cur_rec);
- pkg_free(r);
- }
- db_rec_t* db_first(db_res_t* res)
- {
- if (res->cmd->first[0](res) != 0) {
- return NULL;
- }
- return res->cur_rec;
- }
- db_rec_t* db_next(db_res_t* res)
- {
- if (res->cmd->next[0](res) != 0) {
- return NULL;
- }
- return res->cur_rec;
- }
- /** @} */
|