aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/c/tf_status_helper.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-07-29 14:53:45 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-07-29 16:03:48 -0700
commit788f359b7218ad46696c15459c89688ffe70955e (patch)
treeb1d3becb5cccdd977e6438d6b2cfe079aaa4ad15 /tensorflow/c/tf_status_helper.cc
parent76c39bc1e7b06bf427a478d5c453777cf7882389 (diff)
Move C API files (and related files used by SWIG wrappers)
to new tensorflow/c directory. Change: 128855990
Diffstat (limited to 'tensorflow/c/tf_status_helper.cc')
-rw-r--r--tensorflow/c/tf_status_helper.cc82
1 files changed, 82 insertions, 0 deletions
diff --git a/tensorflow/c/tf_status_helper.cc b/tensorflow/c/tf_status_helper.cc
new file mode 100644
index 0000000000..747fd672f0
--- /dev/null
+++ b/tensorflow/c/tf_status_helper.cc
@@ -0,0 +1,82 @@
+/* Copyright 2016 The TensorFlow Authors. All Rights Reserved.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+==============================================================================*/
+
+#include "tensorflow/c/tf_status_helper.h"
+
+namespace tensorflow {
+
+void Set_TF_Status_from_Status(TF_Status* tf_status, const Status& status) {
+ tensorflow::error::Code code = status.code();
+ const char* message(status.error_message().c_str());
+
+ switch (code) {
+ case tensorflow::error::OK:
+ assert(TF_GetCode(tf_status) == TF_OK);
+ break;
+ case tensorflow::error::CANCELLED:
+ TF_SetStatus(tf_status, TF_CANCELLED, message);
+ break;
+ case tensorflow::error::UNKNOWN:
+ TF_SetStatus(tf_status, TF_UNKNOWN, message);
+ break;
+ case tensorflow::error::INVALID_ARGUMENT:
+ TF_SetStatus(tf_status, TF_INVALID_ARGUMENT, message);
+ break;
+ case tensorflow::error::DEADLINE_EXCEEDED:
+ TF_SetStatus(tf_status, TF_DEADLINE_EXCEEDED, message);
+ break;
+ case tensorflow::error::NOT_FOUND:
+ TF_SetStatus(tf_status, TF_NOT_FOUND, message);
+ break;
+ case tensorflow::error::ALREADY_EXISTS:
+ TF_SetStatus(tf_status, TF_ALREADY_EXISTS, message);
+ break;
+ case tensorflow::error::PERMISSION_DENIED:
+ TF_SetStatus(tf_status, TF_PERMISSION_DENIED, message);
+ break;
+ case tensorflow::error::UNAUTHENTICATED:
+ TF_SetStatus(tf_status, TF_UNAUTHENTICATED, message);
+ break;
+ case tensorflow::error::RESOURCE_EXHAUSTED:
+ TF_SetStatus(tf_status, TF_RESOURCE_EXHAUSTED, message);
+ break;
+ case tensorflow::error::FAILED_PRECONDITION:
+ TF_SetStatus(tf_status, TF_FAILED_PRECONDITION, message);
+ break;
+ case tensorflow::error::ABORTED:
+ TF_SetStatus(tf_status, TF_ABORTED, message);
+ break;
+ case tensorflow::error::OUT_OF_RANGE:
+ TF_SetStatus(tf_status, TF_OUT_OF_RANGE, message);
+ break;
+ case tensorflow::error::UNIMPLEMENTED:
+ TF_SetStatus(tf_status, TF_UNIMPLEMENTED, message);
+ break;
+ case tensorflow::error::INTERNAL:
+ TF_SetStatus(tf_status, TF_INTERNAL, message);
+ break;
+ case tensorflow::error::UNAVAILABLE:
+ TF_SetStatus(tf_status, TF_UNAVAILABLE, message);
+ break;
+ case tensorflow::error::DATA_LOSS:
+ TF_SetStatus(tf_status, TF_DATA_LOSS, message);
+ break;
+ default:
+ assert(0);
+ break;
+ }
+}
+
+} // namespace tensorflow