1/* Copyright 2016 The TensorFlow Authors. All Rights Reserved.
2
3Licensed under the Apache License, Version 2.0 (the "License");
4you may not use this file except in compliance with the License.
5You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9Unless required by applicable law or agreed to in writing, software
10distributed under the License is distributed on an "AS IS" BASIS,
11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12See the License for the specific language governing permissions and
13limitations under the License.
14==============================================================================*/
15
16#ifndef TENSORFLOW_C_TF_STATUS_HELPER_H_
17#define TENSORFLOW_C_TF_STATUS_HELPER_H_
18
19#include "tensorflow/c/tf_status.h"
20#include "tensorflow/core/platform/status.h"
21
22namespace tsl {
23// Set the attribute of "tf_status" from the attributes of "status".
24void Set_TF_Status_from_Status(TF_Status* tf_status, const tsl::Status& status);
25
26// Returns a "status" from "tf_status".
27tensorflow::Status StatusFromTF_Status(const TF_Status* tf_status);
28} // namespace tsl
29
30namespace tensorflow {
31using tsl::Set_TF_Status_from_Status; // NOLINT
32using tsl::StatusFromTF_Status; // NOLINT
33
34namespace internal {
35struct TF_StatusDeleter {
36 void operator()(TF_Status* tf_status) const { TF_DeleteStatus(tf_status); }
37};
38} // namespace internal
39
40using TF_StatusPtr = std::unique_ptr<TF_Status, internal::TF_StatusDeleter>;
41
42} // namespace tensorflow
43
44#endif // TENSORFLOW_C_TF_STATUS_HELPER_H_
45