X-Git-Url: http://git.indexdata.com/?p=yazproxy-moved-to-github.git;a=blobdiff_plain;f=src%2Fyaz-usemarcon.cpp;h=6b45a032086a8c27068c4f1342b1c635bf647342;hp=1e0e69872346eed1f1197c1a9315584fbe2b09a7;hb=f8836a3a0048b44f4a29bbef477521ac2e758467;hpb=16fee003605b650c1a329694f060c27b5be5e95b diff --git a/src/yaz-usemarcon.cpp b/src/yaz-usemarcon.cpp index 1e0e698..6b45a03 100644 --- a/src/yaz-usemarcon.cpp +++ b/src/yaz-usemarcon.cpp @@ -1,7 +1,5 @@ -/* $Id: yaz-usemarcon.cpp,v 1.3 2006-03-30 10:31:37 adam Exp $ - Copyright (c) 1998-2006, Index Data. - -This file is part of the yazproxy. +/* This file is part of YAZ proxy + Copyright (C) 1998-2009 Index Data YAZ proxy 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 @@ -14,11 +12,11 @@ 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 YAZ proxy; see the file LICENSE. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. - */ +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ +#include #include "proxyp.h" Yaz_usemarcon::Yaz_usemarcon() @@ -45,14 +43,14 @@ int Yaz_usemarcon::convert(const char *stage1, const char *stage2, if (stage1 && *stage1) { char *converted; - int convlen; + size_t convlen; if (!m_stage1) { - m_stage1 = new CDetails(); + m_stage1 = new Usemarcon(); } m_stage1->SetIniFileName(stage1); m_stage1->SetMarcRecord((char*) input, input_len); - int res = m_stage1->Start(); + int res = m_stage1->Convert(); if (res == 0) { m_stage1->GetMarcRecord(converted, convlen); @@ -60,23 +58,30 @@ int Yaz_usemarcon::convert(const char *stage1, const char *stage2, { if (!m_stage2) { - m_stage2 = new CDetails(); + m_stage2 = new Usemarcon(); } m_stage2->SetIniFileName(stage2); m_stage2->SetMarcRecord(converted, convlen); - res = m_stage2->Start(); + res = m_stage2->Convert(); if (res == 0) { free(converted); m_stage2->GetMarcRecord(converted, convlen); } else + { + yaz_log(YLOG_LOG, "USEMARCON stage 2 error %d", res); return 0; + } } *output = converted; *output_len = convlen; return 1; } + else + { + yaz_log(YLOG_LOG, "USEMARCON stage 1 error %d", res); + } } #endif return 0; @@ -84,6 +89,7 @@ int Yaz_usemarcon::convert(const char *stage1, const char *stage2, /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab