author | František Kučera <franta-hg@frantovo.cz> |
Wed, 30 Oct 2024 22:08:49 +0100 | |
changeset 2 | 64777e5b619f |
parent 1 | 4502b1c7346d |
permissions | -rw-r--r-- |
franta-hg@1 | 1 |
/** |
franta-hg@1 | 2 |
* cpp-finally |
franta-hg@1 | 3 |
* Copyright © 2024 František Kučera (Frantovo.cz, GlobalCode.info) |
franta-hg@1 | 4 |
* |
franta-hg@1 | 5 |
* This program is free software: you can redistribute it and/or modify |
franta-hg@1 | 6 |
* it under the terms of the GNU General Public License as published by |
franta-hg@1 | 7 |
* the Free Software Foundation, version 3 of the License. |
franta-hg@1 | 8 |
* |
franta-hg@1 | 9 |
* This program is distributed in the hope that it will be useful, |
franta-hg@1 | 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
franta-hg@1 | 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
franta-hg@1 | 12 |
* GNU General Public License for more details. |
franta-hg@1 | 13 |
* |
franta-hg@1 | 14 |
* You should have received a copy of the GNU General Public License |
franta-hg@1 | 15 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
franta-hg@1 | 16 |
*/ |
franta-hg@1 | 17 |
|
franta-hg@0 | 18 |
#include <iostream> |
franta-hg@0 | 19 |
#include <exception> |
franta-hg@0 | 20 |
#include <vector> |
franta-hg@0 | 21 |
|
franta-hg@0 | 22 |
void fxThrowing(bool fail, void* data) { |
franta-hg@0 | 23 |
std::cout << " doing something with data " << data << std::endl; |
franta-hg@0 | 24 |
if (fail) throw std::logic_error("error from fxThrowing()"); |
franta-hg@0 | 25 |
} |
franta-hg@0 | 26 |
|
franta-hg@0 | 27 |
void fxAllocating(bool fail) { |
franta-hg@0 | 28 |
std::vector<char> buf(486); |
franta-hg@0 | 29 |
fxThrowing(fail, buf.data()); |
franta-hg@0 | 30 |
} |
franta-hg@0 | 31 |
|
franta-hg@0 | 32 |
int main(int argc, char** argv) { |
franta-hg@0 | 33 |
bool fail = argc == 2 && std::string("fail") == argv[1]; |
franta-hg@0 | 34 |
const char* name = "good-vector"; |
franta-hg@0 | 35 |
std::cout << name << " (fail=" << fail << ")\n"; |
franta-hg@0 | 36 |
try { |
franta-hg@0 | 37 |
fxAllocating(fail); |
franta-hg@0 | 38 |
} catch (const std::exception& e) { |
franta-hg@0 | 39 |
std::cout << " caught exception: " << e.what() << std::endl; |
franta-hg@0 | 40 |
} |
franta-hg@0 | 41 |
} |