X-Git-Url: http://git.indexdata.com/?p=yazproxy-moved-to-github.git;a=blobdiff_plain;f=src%2Fyaz-usemarcon.cpp;h=bfa70ef609564550928f6359d4d76fb55aea9f0e;hp=d769e25e9db1566bd533ca60bbb7695e92a4aeca;hb=dfdff5f2d2825a500d3d27200d2ec32ee063a975;hpb=af0d95244ac549130bd45c54620df98f636984db diff --git a/src/yaz-usemarcon.cpp b/src/yaz-usemarcon.cpp index d769e25..bfa70ef 100644 --- a/src/yaz-usemarcon.cpp +++ b/src/yaz-usemarcon.cpp @@ -1,7 +1,5 @@ -/* $Id: yaz-usemarcon.cpp,v 1.1 2004-12-03 14:28:18 adam Exp $ - Copyright (c) 1998-2004, Index Data. - -This file is part of the yaz-proxy. +/* 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() @@ -38,46 +36,62 @@ Yaz_usemarcon::~Yaz_usemarcon() } int Yaz_usemarcon::convert(const char *stage1, const char *stage2, - const char *input, int input_len, - char **output, int *output_len) + const char *input, int input_len, + char **output, int *output_len) { #if HAVE_USEMARCON if (stage1 && *stage1) { - char *converted; - int convlen; - if (!m_stage1) - { - m_stage1 = new CDetails(); - } - m_stage1->SetIniFileName(stage1); - m_stage1->SetMarcRecord((char*) input, input_len); - int res = m_stage1->Start(); - if (res == 0) - { - m_stage1->GetMarcRecord(converted, convlen); - if (stage2 && *stage2) - { - if (!m_stage2) - { - m_stage2 = new CDetails(); - } - m_stage2->SetIniFileName(stage2); - m_stage2->SetMarcRecord(converted, convlen); - res = m_stage2->Start(); - if (res == 0) - { - free(converted); - m_stage2->GetMarcRecord(converted, convlen); - } - else - return 0; - } - *output = converted; - *output_len = convlen; - return 1; - } + char *converted; + int convlen; + if (!m_stage1) + { + m_stage1 = new Usemarcon(); + } + m_stage1->SetIniFileName(stage1); + m_stage1->SetMarcRecord((char*) input, input_len); + int res = m_stage1->Convert(); + if (res == 0) + { + m_stage1->GetMarcRecord(converted, convlen); + if (stage2 && *stage2) + { + if (!m_stage2) + { + m_stage2 = new Usemarcon(); + } + m_stage2->SetIniFileName(stage2); + m_stage2->SetMarcRecord(converted, convlen); + 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; } +/* + * Local variables: + * c-basic-offset: 4 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +