aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/platform/protobuf_internal.h
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2016-10-17 09:25:53 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-10-17 10:36:12 -0700
commit437d6c1b2fe47958273f03347e6aca0c607f3439 (patch)
treeb7d6e5335a25484f6e4f06b88d93165dd4d28901 /tensorflow/core/platform/protobuf_internal.h
parent4bbcd740802123b1adab81d7cdb60622149a645d (diff)
TensorFlow: lib header cleanup
- Move protobuf.h functions that are not needed publicly into protobuf_internal, update callers. - Move inputbuffer.h internal, make higher-level file objects public. Change: 136365329
Diffstat (limited to 'tensorflow/core/platform/protobuf_internal.h')
-rw-r--r--tensorflow/core/platform/protobuf_internal.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/tensorflow/core/platform/protobuf_internal.h b/tensorflow/core/platform/protobuf_internal.h
new file mode 100644
index 0000000000..7d6e8f57a6
--- /dev/null
+++ b/tensorflow/core/platform/protobuf_internal.h
@@ -0,0 +1,72 @@
+/* Copyright 2015 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.
+==============================================================================*/
+
+#ifndef TENSORFLOW_PLATFORM_PROTOBUF_INTERNAL_H_
+#define TENSORFLOW_PLATFORM_PROTOBUF_INTERNAL_H_
+
+#include "google/protobuf/any.pb.h"
+#include "tensorflow/core/lib/core/errors.h"
+#include "tensorflow/core/platform/platform.h"
+#include "tensorflow/core/platform/protobuf.h"
+#include "tensorflow/core/platform/types.h"
+
+namespace tensorflow {
+
+// Returns the DebugString when available, or a stub message otherwise. Useful
+// for messages that are incompatible with proto_text (e.g. those using Any).
+#ifdef TENSORFLOW_LITE_PROTOS
+template <class T>
+string DebugStringIfAvailable(T proto) {
+ return "[DebugString not available with lite protos]";
+}
+#else
+template <class T>
+auto DebugStringIfAvailable(T proto) -> decltype(proto.DebugString()) {
+ return proto.DebugString();
+}
+#endif // defined(TENSORFLOW_LITE_PROTOS)
+
+// Utility for parsing an Any value with full or lite protos.
+template <class T>
+Status ParseAny(const google::protobuf::Any& any, T* message,
+ const string& type_name) {
+#ifdef TENSORFLOW_LITE_PROTOS
+ if (any.type_url() != strings::StrCat("type.googleapis.com/", type_name)) {
+ return errors::FailedPrecondition(
+ "Expected Any type_url for: ", type_name, ". Got: ",
+ string(any.type_url().data(), any.type_url().size()), ".");
+ }
+ if (!message->ParseFromString(any.value())) {
+ return errors::FailedPrecondition("Failed to unpack: ",
+ DebugStringIfAvailable(any));
+ }
+#else
+ CHECK_EQ(type_name, message->descriptor()->full_name());
+ if (!any.Is<T>()) {
+ return errors::FailedPrecondition(
+ "Expected Any type_url for: ", message->descriptor()->full_name(),
+ ". Got: ", string(any.type_url().data(), any.type_url().size()), ".");
+ }
+ if (!any.UnpackTo(message)) {
+ return errors::FailedPrecondition("Failed to unpack: ",
+ DebugStringIfAvailable(any));
+ }
+#endif
+ return Status::OK();
+}
+
+} // namespace tensorflow
+
+#endif // TENSORFLOW_PLATFORM_PROTOBUF_INTERNAL_H_