/src/libtomahawk/aclsystem.h
http://github.com/tomahawk-player/tomahawk · C Header · 64 lines · 33 code · 14 blank · 17 comment · 0 complexity · 94adbe9f7be41a3646f9530f1f6a00a4 MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
- *
- * Tomahawk 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 3 of the License, or
- * (at your option) any later version.
- *
- * Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef TOMAHAWK_ACLSYSTEM_H
- #define TOMAHAWK_ACLSYSTEM_H
- #include <QObject>
- #include <QString>
- #include <QHash>
- #include <QTimer>
- #include <QMutex>
- #include "dllmacro.h"
- class DLLEXPORT ACLSystem : public QObject
- {
- Q_OBJECT
- public:
- static ACLSystem* instance();
- enum ACL {
- Allow = 0,
- Deny = 1,
- NotFound = 2
- };
-
- ACLSystem( QObject *parent = 0 );
- ~ACLSystem();
-
- ACL isAuthorizedUser( const QString &dbid );
- void authorizeUser( const QString &dbid, ACL globalType );
-
- ACL isAuthorizedPath( const QString &dbid, const QString &path );
- void authorizePath( const QString &dbid, const QString &path, ACL type );
-
- private slots:
- void saveTimerFired();
- private:
- QHash< QString, QHash< QString, ACL > > m_cache;
- QTimer m_saveTimer;
- QMutex m_cacheMutex;
-
- static ACLSystem* s_instance;
- };
- #endif // TOMAHAWK_ACLSYSTEM_H