error_stack.cxx
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "error_stack.h"
00018 #include <stack>
00019 #include <vector>
00020 #include <string>
00021 #include <cstring>
00022
00023 namespace KDL {
00024
00025
00026
00027 typedef std::stack<std::string> ErrorStack;
00028
00029 ErrorStack errorstack;
00030
00031
00032
00033 void IOTrace(const std::string& description) {
00034 errorstack.push(description);
00035 }
00036
00037
00038 void IOTracePop() {
00039 errorstack.pop();
00040 }
00041
00042 void IOTraceOutput(std::ostream& os) {
00043 while (!errorstack.empty()) {
00044 os << errorstack.top().c_str() << std::endl;
00045 errorstack.pop();
00046 }
00047 }
00048
00049
00050 void IOTracePopStr(char* buffer,int size) {
00051 if (errorstack.empty()) {
00052 *buffer = 0;
00053 return;
00054 }
00055 strncpy(buffer,errorstack.top().c_str(),size);
00056 errorstack.pop();
00057 }
00058
00059 }