| OLD | NEW |
| (Empty) |
| 1 // Copyright 2003-2009 Google Inc. | |
| 2 // | |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 // you may not use this file except in compliance with the License. | |
| 5 // You may obtain a copy of the License at | |
| 6 // | |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | |
| 8 // | |
| 9 // Unless required by applicable law or agreed to in writing, software | |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 12 // See the License for the specific language governing permissions and | |
| 13 // limitations under the License. | |
| 14 // ======================================================================== | |
| 15 | |
| 16 #include "omaha/base/error.h" | |
| 17 #include <winhttp.h> | |
| 18 #include "base/basictypes.h" | |
| 19 #include "omaha/base/crash_if_specific_error.h" | |
| 20 #include "omaha/base/debug.h" | |
| 21 | |
| 22 namespace omaha { | |
| 23 | |
| 24 int g_error_extra_code1 = 0; | |
| 25 | |
| 26 int error_extra_code1() { | |
| 27 return g_error_extra_code1; | |
| 28 } | |
| 29 | |
| 30 void set_error_extra_code1(int extra_code) { | |
| 31 g_error_extra_code1 = extra_code; | |
| 32 } | |
| 33 | |
| 34 HRESULT HRESULTFromLastError() { | |
| 35 DWORD error_code = ::GetLastError(); | |
| 36 ASSERT1(error_code != NO_ERROR); | |
| 37 HRESULT hr = error_code != NO_ERROR ? HRESULT_FROM_WIN32(error_code) : E_FAIL; | |
| 38 CRASH_IF_SPECIFIC_ERROR(hr); | |
| 39 return hr; | |
| 40 } | |
| 41 | |
| 42 HRESULT HRESULTFromHttpStatusCode(int status_code) { | |
| 43 COMPILE_ASSERT(GOOPDATE_E_NETWORK_FIRST + HTTP_STATUS_LAST < | |
| 44 GOOPDATE_E_NETWORK_LAST, | |
| 45 GOOPDATE_E_NETWORK_LAST_too_small); | |
| 46 HRESULT hr = S_OK; | |
| 47 if (HTTP_STATUS_FIRST <= status_code && status_code <= HTTP_STATUS_LAST) { | |
| 48 hr = GOOPDATE_E_NETWORK_FIRST + status_code; | |
| 49 } else { | |
| 50 hr = GOOPDATE_E_NETWORK_LAST; | |
| 51 } | |
| 52 ASSERT1(HRESULT_FACILITY(hr) == FACILITY_ITF); | |
| 53 return hr; | |
| 54 } | |
| 55 | |
| 56 } // namespace omaha | |
| 57 | |
| OLD | NEW |