• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
2 
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 
7     http://www.apache.org/licenses/LICENSE-2.0
8 
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 #include "tensorflow/contrib/lite/error_reporter.h"
16 #include <cstdarg>
17 #include <cstdio>
18 
19 namespace tflite {
20 
~ErrorReporter()21 ErrorReporter::~ErrorReporter() {}
22 
Report(const char * format,...)23 int ErrorReporter::Report(const char* format, ...) {
24   va_list args;
25   va_start(args, format);
26   int code = Report(format, args);
27   va_end(args);
28   return code;
29 }
30 
31 // TODO(aselle): Make the name of ReportError on context the same, so
32 // we can use the ensure functions w/o a context and w/ a reporter.
ReportError(void *,const char * format,...)33 int ErrorReporter::ReportError(void*, const char* format, ...) {
34   va_list args;
35   va_start(args, format);
36   int code = Report(format, args);
37   va_end(args);
38   return code;
39 }
40 
Report(const char * format,va_list args)41 int StderrReporter::Report(const char* format, va_list args) {
42   const int result = vfprintf(stderr, format, args);
43   fputc('\n', stderr);
44   return result;
45 }
46 
DefaultErrorReporter()47 ErrorReporter* DefaultErrorReporter() {
48   static StderrReporter* error_reporter = new StderrReporter;
49   return error_reporter;
50 }
51 
52 }  // namespace tflite
53