Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : /*
22 : * Implementation of the I/O interfaces based on stream and URI binding
23 : */
24 : #include "errorcallback.hxx"
25 :
26 : #include <sal/types.h>
27 : //For reasons that escape me, this is what xmlsec does when size_t is not 4
28 : #if SAL_TYPES_SIZEOFPOINTER != 4
29 : # define XMLSEC_NO_SIZE_T
30 : #endif
31 : #include "xmlsec/xmlsec.h"
32 : #include "xmlsec/errors.h"
33 :
34 : using namespace ::com::sun::star::xml::crypto;
35 :
36 :
37 : extern "C"
38 0 : void errorCallback(const char * /*file*/,
39 : int /*line*/,
40 : const char * /*func*/,
41 : const char * /*errorObject*/,
42 : const char * /*errorSubject*/,
43 : int /*reason*/,
44 : const char * /*msg*/)
45 : {
46 : #if OSL_DEBUG_LEVEL > 1
47 : // const char * afunc = func ? func : "";
48 : // const char * errObj = errorObject ? errorObject : "";
49 : // const char * errSub = errorSubject ? errorSubject : "";
50 : // const char * amsg = msg ? msg : "";
51 : // fprintf(stdout, "xmlsec error: %s, %s, %s, %i %s \n", afunc, errObj, errSub, reason, amsg);
52 : #endif
53 0 : }
54 :
55 0 : void setErrorRecorder()
56 : {
57 0 : xmlSecErrorsSetCallback(errorCallback);
58 0 : }
59 :
60 0 : void clearErrorRecorder()
61 : {
62 0 : xmlSecErrorsSetCallback(NULL);
63 0 : }
64 :
65 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|