Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / ucb / source / ucp / webdav-curl / DAVException.hxx
blob759e43f25f8ef12c312fc77004624e693a575c31
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #pragma once
23 #include <rtl/ustring.hxx>
24 #include <utility>
26 namespace http_dav_ucp
30 // HTTP/WebDAV status codes
33 const sal_uInt16 SC_NONE = 0;
35 // 1xx (Informational - no errors)
36 const sal_uInt16 SC_CONTINUE = 100;
37 const sal_uInt16 SC_SWITCHING_PROTOCOLS = 101;
38 // DAV extensions
39 const sal_uInt16 SC_PROCESSING = 102;
41 //2xx (Successful - no errors)
42 const sal_uInt16 SC_OK = 200;
43 const sal_uInt16 SC_CREATED = 201;
44 const sal_uInt16 SC_ACCEPTED = 202;
45 const sal_uInt16 SC_NON_AUTHORITATIVE_INFORMATION = 203;
46 const sal_uInt16 SC_NO_CONTENT = 204;
47 const sal_uInt16 SC_RESET_CONTENT = 205;
48 const sal_uInt16 SC_PARTIAL_CONTENT = 206;
49 // DAV extensions
50 const sal_uInt16 SC_MULTISTATUS = 207;
52 //3xx (Redirection)
53 const sal_uInt16 SC_MULTIPLE_CHOICES = 300;
54 const sal_uInt16 SC_MOVED_PERMANENTLY = 301;
55 const sal_uInt16 SC_MOVED_TEMPORARILY = 302;
56 const sal_uInt16 SC_SEE_OTHER = 303;
57 const sal_uInt16 SC_NOT_MODIFIED = 304;
58 const sal_uInt16 SC_USE_PROXY = 305;
59 const sal_uInt16 SC_TEMPORARY_REDIRECT = 307;
61 //4xx (Client error)
62 const sal_uInt16 SC_BAD_REQUEST = 400;
63 const sal_uInt16 SC_UNAUTHORIZED = 401;
64 const sal_uInt16 SC_PAYMENT_REQUIRED = 402;
65 const sal_uInt16 SC_FORBIDDEN = 403;
66 const sal_uInt16 SC_NOT_FOUND = 404;
67 const sal_uInt16 SC_METHOD_NOT_ALLOWED = 405;
68 const sal_uInt16 SC_NOT_ACCEPTABLE = 406;
69 const sal_uInt16 SC_PROXY_AUTHENTICATION_REQUIRED = 407;
70 const sal_uInt16 SC_REQUEST_TIMEOUT = 408;
71 const sal_uInt16 SC_CONFLICT = 409;
72 const sal_uInt16 SC_GONE = 410;
73 const sal_uInt16 SC_LENGTH_REQUIRED = 411;
74 const sal_uInt16 SC_PRECONDITION_FAILED = 412;
75 const sal_uInt16 SC_REQUEST_ENTITY_TOO_LARGE = 413;
76 const sal_uInt16 SC_REQUEST_URI_TOO_LONG = 414;
77 const sal_uInt16 SC_UNSUPPORTED_MEDIA_TYPE = 415;
78 const sal_uInt16 SC_REQUESTED_RANGE_NOT_SATISFIABLE = 416;
79 const sal_uInt16 SC_EXPECTATION_FAILED = 417;
80 // DAV extensions
81 const sal_uInt16 SC_UNPROCESSABLE_ENTITY = 422;
82 const sal_uInt16 SC_LOCKED = 423;
83 const sal_uInt16 SC_FAILED_DEPENDENCY = 424;
85 //5xx (Server error, general <https://tools.ietf.org/html/rfc7231#section-6.6>)
86 const sal_uInt16 SC_INTERNAL_SERVER_ERROR = 500;
87 const sal_uInt16 SC_NOT_IMPLEMENTED = 501;
88 const sal_uInt16 SC_BAD_GATEWAY = 502;
89 const sal_uInt16 SC_SERVICE_UNAVAILABLE = 503;
90 const sal_uInt16 SC_GATEWAY_TIMEOUT = 504;
91 const sal_uInt16 SC_HTTP_VERSION_NOT_SUPPORTED = 505;
92 // DAV extensions (<https://tools.ietf.org/html/rfc4918#section-11>)
93 const sal_uInt16 SC_INSUFFICIENT_STORAGE = 507;
95 // unofficial status codes only used internally by LO
96 // used to cache the connection time out event
97 const sal_uInt16 USC_CONNECTION_TIMED_OUT = 908;
98 // name resolution failed
99 const sal_uInt16 USC_LOOKUP_FAILED = 909;
100 const sal_uInt16 USC_AUTH_FAILED = 910;
101 const sal_uInt16 USC_AUTHPROXY_FAILED = 911;
105 class DAVException : public std::exception
107 public:
108 enum ExceptionCode {
109 DAV_HTTP_ERROR = 0, // Generic error,
110 // mData = server error message,
111 // mStatusCode = HTTP status code
112 DAV_HTTP_LOOKUP, // Name lookup failed,
113 // mData = server[:port]
114 DAV_HTTP_NOAUTH, // No User authentication data provided - e.g., user aborts corresponding dialog
115 // mData = server[:port]
116 DAV_HTTP_AUTH, // User authentication failed on server,
117 // mData = server[:port]
118 DAV_HTTP_AUTHPROXY, // User authentication failed on proxy,
119 // mData = proxy server[:port]
120 DAV_HTTP_CONNECT, // Could not connect to server,
121 // mData = server[:port]
122 DAV_HTTP_TIMEOUT, // Connection timed out
123 // mData = server[:port]
124 DAV_HTTP_FAILED, // The precondition failed
125 // mData = server[:port]
126 DAV_HTTP_RETRY, // Retry request
127 // mData = server[:port]
128 DAV_HTTP_REDIRECT, // Request was redirected,
129 // mData = new URL
130 DAV_SESSION_CREATE, // session creation error,
131 // mData = server[:port]
132 DAV_INVALID_ARG, // invalid argument
133 DAV_UNSUPPORTED, // internal to CurlSession
135 DAV_LOCK_EXPIRED, // DAV lock expired
137 DAV_NOT_LOCKED, // not locked
139 DAV_LOCKED_SELF, // locked by this OOo session
141 DAV_LOCKED // locked by third party
144 private:
145 ExceptionCode mExceptionCode;
146 OUString mData;
147 sal_uInt16 mStatusCode;
149 public:
150 explicit DAVException( ExceptionCode inExceptionCode )
151 : mExceptionCode( inExceptionCode )
152 , mData()
153 , mStatusCode( SC_NONE )
155 DAVException( ExceptionCode inExceptionCode,
156 OUString aData )
157 : mExceptionCode( inExceptionCode )
158 , mData(std::move( aData ))
159 , mStatusCode( SC_NONE )
161 DAVException( ExceptionCode inExceptionCode,
162 OUString aData,
163 sal_uInt16 nStatusCode )
164 : mExceptionCode( inExceptionCode )
165 , mData(std::move( aData ))
166 , mStatusCode( nStatusCode )
169 const ExceptionCode & getError() const { return mExceptionCode; }
170 const OUString & getData() const { return mData; }
171 sal_uInt16 getStatus() const { return mStatusCode; }
174 } // namespace http_dav_ucp
176 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */