Context.hxx 2.93 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Copyright 2003-2020 The Music Player Daemon Project
 * http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef MPD_SMBCLIENT_CONTEXT_HXX
#define MPD_SMBCLIENT_CONTEXT_HXX

23 24
#include "thread/Mutex.hxx"

25 26 27 28 29 30 31 32
#include <libsmbclient.h>

#include <utility>

/**
 * Wrapper for `SMBCCTX*`.
 */
class SmbclientContext {
33 34 35 36 37 38 39 40
	/**
	 * This mutex protects the libsmbclient functions
	 * smbc_new_context() and smbc_free_context() which need to be
	 * serialized.  We need to do this because we can't use
	 * smbc_thread_posix(), which is not exported by libsmbclient.
	 */
	static Mutex global_mutex;

41 42 43 44 45 46 47 48 49
	SMBCCTX *ctx = nullptr;

	explicit SmbclientContext(SMBCCTX *_ctx) noexcept
		:ctx(_ctx) {}

public:
	SmbclientContext() = default;

	~SmbclientContext() noexcept {
50 51
		if (ctx != nullptr) {
			const std::lock_guard<Mutex> protect(global_mutex);
52
			smbc_free_context(ctx, 1);
53
		}
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
	}

	SmbclientContext(SmbclientContext &&src) noexcept
		:ctx(std::exchange(src.ctx, nullptr)) {}

	SmbclientContext &operator=(SmbclientContext &&src) noexcept {
		using std::swap;
		swap(ctx, src.ctx);
		return *this;
	}

	/**
	 * Throws on error.
	 */
	static SmbclientContext New();
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108

	SMBCFILE *Open(const char *fname, int flags, mode_t mode) noexcept {
		return smbc_getFunctionOpen(ctx)(ctx, fname, flags, mode);
	}

	SMBCFILE *OpenReadOnly(const char *fname) noexcept {
		return Open(fname, O_RDONLY, 0);
	}

	ssize_t Read(SMBCFILE *file, void *buf, size_t count) noexcept {
		return smbc_getFunctionRead(ctx)(ctx, file, buf, count);
	}

	off_t Seek(SMBCFILE *file, off_t offset, int whence=SEEK_SET) noexcept {
		return smbc_getFunctionLseek(ctx)(ctx, file, offset, whence);
	}

	int Stat(const char *fname, struct stat &st) noexcept {
		return smbc_getFunctionStat(ctx)(ctx, fname, &st);
	}

	int Stat(SMBCFILE *file, struct stat &st) noexcept {
		return smbc_getFunctionFstat(ctx)(ctx, file, &st);
	}

	void Close(SMBCFILE *file) noexcept {
		smbc_getFunctionClose(ctx)(ctx, file);
	}

	SMBCFILE *OpenDirectory(const char *fname) noexcept {
		return smbc_getFunctionOpendir(ctx)(ctx, fname);
	}

	void CloseDirectory(SMBCFILE *dir) noexcept {
		smbc_getFunctionClosedir(ctx)(ctx, dir);
	}

	const struct smbc_dirent *ReadDirectory(SMBCFILE *dir) noexcept {
		return smbc_getFunctionReaddir(ctx)(ctx, dir);
	}
109 110 111
};

#endif