/usr/include/xtuple/common/applock.h is in libxtuplecommon-dev 4.10.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | /*
* This file is part of the xTuple ERP: PostBooks Edition, a free and
* open source Enterprise Resource Planning software suite,
* Copyright (c) 1999-2014 by OpenMFG LLC, d/b/a xTuple.
* It is licensed to you under the Common Public Attribution License
* version 1.0, the full text of which (including xTuple-specific Exhibits)
* is available at www.xtuple.com/CPAL. By using this software, you agree
* to be bound by its terms.
*/
#ifndef __APPLOCK_H__
#define __APPLOCK_H__
#include <QMetaType>
#include <QObject>
#include <QtScript>
class AppLockPrivate;
class QScriptEngine;
void setupAppLock(QScriptEngine *engine);
class AppLock : public QObject
{
Q_OBJECT
public:
enum AcquireMode { Silent, Interactive };
AppLock(QObject *parent = 0);
AppLock(QString table, int id, QObject *parent = 0);
~AppLock();
Q_INVOKABLE bool acquire(AcquireMode mode = Silent);
Q_INVOKABLE bool acquire(QString table, int id, AcquireMode mode = Silent);
Q_INVOKABLE bool holdsLock() const;
Q_INVOKABLE bool isLockedOut() const;
Q_INVOKABLE QString lastError() const;
Q_INVOKABLE bool release();
Q_INVOKABLE QString toString() const;
private:
AppLockPrivate *_p;
};
Q_DECLARE_METATYPE(AppLock *)
Q_DECLARE_METATYPE(enum AppLock::AcquireMode)
void setupAppLockProto(QScriptEngine *engine);
QScriptValue constructAppLock(QScriptContext *context, QScriptEngine *engine);
class AppLockProto : public QObject, public QScriptable
{
Q_OBJECT
public:
AppLockProto(QObject *parent);
Q_INVOKABLE bool acquire(AppLock::AcquireMode mode);
Q_INVOKABLE bool acquire(QString table, int id, AppLock::AcquireMode mode);
Q_INVOKABLE bool holdsLock() const;
Q_INVOKABLE bool isLockedOut() const;
Q_INVOKABLE QString lastError() const;
Q_INVOKABLE bool release();
Q_INVOKABLE QString toString() const;
};
#endif
|