blob: ee9204d9da00903e943235989818fab8fa5d4f11 [file] [log] [blame]
Tony Mak8cd7ba62019-10-15 15:29:22 +01001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "utils/base/status.h"
18
19namespace libtextclassifier3 {
20
21const Status& Status::OK = *new Status(StatusCode::OK, "");
22const Status& Status::UNKNOWN = *new Status(StatusCode::UNKNOWN, "");
23
24Status::Status() : code_(StatusCode::OK) {}
25Status::Status(StatusCode error, const std::string& message)
26 : code_(error), message_(message) {}
27
Tony Mak8cd7ba62019-10-15 15:29:22 +010028logging::LoggingStringStream& operator<<(logging::LoggingStringStream& stream,
29 const Status& status) {
30 stream << status.error_code();
31 return stream;
32}
33
34} // namespace libtextclassifier3