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 "xmlsecurity/xmlsec-wrapper.h"
27 :
28 : using namespace ::com::sun::star::xml::crypto;
29 :
30 :
31 : extern "C"
32 0 : void errorCallback(const char * /*file*/,
33 : int /*line*/,
34 : const char * /*func*/,
35 : const char * /*errorObject*/,
36 : const char * /*errorSubject*/,
37 : int /*reason*/,
38 : const char * /*msg*/)
39 : {
40 : #if OSL_DEBUG_LEVEL > 1
41 : // const char * afunc = func ? func : "";
42 : // const char * errObj = errorObject ? errorObject : "";
43 : // const char * errSub = errorSubject ? errorSubject : "";
44 : // const char * amsg = msg ? msg : "";
45 : // fprintf(stdout, "xmlsec error: %s, %s, %s, %i %s \n", afunc, errObj, errSub, reason, amsg);
46 : #endif
47 0 : }
48 :
49 0 : void setErrorRecorder()
50 : {
51 0 : xmlSecErrorsSetCallback(errorCallback);
52 0 : }
53 :
54 0 : void clearErrorRecorder()
55 : {
56 0 : xmlSecErrorsSetCallback(NULL);
57 0 : }
58 :
59 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|