good-finally.cpp
author František Kučera <franta-hg@frantovo.cz>
Wed, 30 Oct 2024 02:51:12 +0100
changeset 1 4502b1c7346d
parent 0 e4f2d6d0e869
permissions -rw-r--r--
licence: GPLv3
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
franta-hg@0
    21
void fxThrowing(bool fail, void* data) {
franta-hg@0
    22
	std::cout << "  doing something with data " << data << std::endl;
franta-hg@0
    23
	if (fail) throw std::logic_error("error from fxThrowing()");
franta-hg@0
    24
}
franta-hg@0
    25
franta-hg@0
    26
void fxAllocating(bool fail) {
franta-hg@0
    27
	void* data = malloc(486);
franta-hg@0
    28
	std::cout << "  allocated memory at: " << data << std::endl;
franta-hg@0
    29
franta-hg@0
    30
	std::exception_ptr e;
franta-hg@0
    31
	try {
franta-hg@0
    32
		fxThrowing(fail, data);
franta-hg@0
    33
	} catch (...) {
franta-hg@0
    34
		e = std::current_exception();
franta-hg@0
    35
	}
franta-hg@0
    36
franta-hg@0
    37
	// finally:
franta-hg@0
    38
	free(data);
franta-hg@0
    39
	std::cout << "  freed memory at: " << data << std::endl;
franta-hg@0
    40
franta-hg@0
    41
	if (e) std::rethrow_exception(e);
franta-hg@0
    42
}
franta-hg@0
    43
franta-hg@0
    44
int main(int argc, char** argv) {
franta-hg@0
    45
	bool fail = argc == 2 && std::string("fail") == argv[1];
franta-hg@0
    46
	const char* name = "good-finally";
franta-hg@0
    47
	std::cout << name << " (fail=" << fail << ")\n";
franta-hg@0
    48
	try {
franta-hg@0
    49
		fxAllocating(fail);
franta-hg@0
    50
	} catch (const std::exception& e) {
franta-hg@0
    51
		std::cout << "  caught exception: " << e.what() << std::endl;
franta-hg@0
    52
	}
franta-hg@0
    53
}