summaryrefslogtreecommitdiffstats
path: root/third_party/content_analysis_sdk/agent/src/agent_utils_win.cc
blob: 5a5f411d84d7a85e3fb794a310b481cb5a3c51b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2022 The Chromium Authors.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <windows.h>

#include "content_analysis/sdk/result_codes.h"

namespace content_analysis {
namespace sdk {

#define ERR_TO_RC(ERR, RC) case ERR: return ResultCode::RC;

ResultCode ErrorToResultCode(DWORD err) {
  switch (err) {
  ERR_TO_RC(ERROR_SUCCESS, OK);
  ERR_TO_RC(ERROR_ACCESS_DENIED, ERR_AGENT_ALREADY_EXISTS);
  ERR_TO_RC(ERROR_BROKEN_PIPE, ERR_BROKEN_PIPE);
  ERR_TO_RC(ERROR_INVALID_NAME, ERR_INVALID_CHANNEL_NAME);
  ERR_TO_RC(ERROR_MORE_DATA, ERR_MORE_DATA);
  ERR_TO_RC(ERROR_IO_PENDING, ERR_IO_PENDING);
  default:
    return ResultCode::ERR_UNEXPECTED;
  }
}

}  // namespace sdk
}  // namespace content_analysis