summaryrefslogtreecommitdiff
path: root/libopie2
authormickeyl <mickeyl>2005-05-31 14:34:02 (UTC)
committer mickeyl <mickeyl>2005-05-31 14:34:02 (UTC)
commit6d2273fb22e10474ae26dd249fa2836e100ffdaf (patch) (side-by-side diff)
tree52ff0e10b629dab847077a8b3afcd3f8c0d1b830 /libopie2
parent930f91069c505082a33e43ce5fdca019531a4b5e (diff)
downloadopie-6d2273fb22e10474ae26dd249fa2836e100ffdaf.zip
opie-6d2273fb22e10474ae26dd249fa2836e100ffdaf.tar.gz
opie-6d2273fb22e10474ae26dd249fa2836e100ffdaf.tar.bz2
misc. opcmciasystem improvements
start implementing recursve dirlocks in ODirNotification
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/linux/ofilenotify.cpp59
-rw-r--r--libopie2/opiecore/linux/opcmciasystem.cpp125
-rw-r--r--libopie2/opiecore/linux/opcmciasystem.h39
3 files changed, 141 insertions, 82 deletions
diff --git a/libopie2/opiecore/linux/ofilenotify.cpp b/libopie2/opiecore/linux/ofilenotify.cpp
index 36ec6bf..3096f7e 100644
--- a/libopie2/opiecore/linux/ofilenotify.cpp
+++ b/libopie2/opiecore/linux/ofilenotify.cpp
@@ -349,30 +349,41 @@ int ODirNotification::watch( const QString& path, bool sshot, OFileNotificationT
- if ( recurse == 0 )
+ OFileNotification* fn = new OFileNotification( this, "ODirNotification delegate" );
+ int result = fn->startWatching( path, sshot, type );
+ if ( result != -1 )
{
- OFileNotification* fn = new OFileNotification( this, "ODirNotification delegate" );
- int result = fn->startWatching( path, sshot, type );
- if ( result != -1 )
+ connect( fn, SIGNAL( triggered( const QString&, unsigned int, const QString& ) ), this, SIGNAL( triggered( const QString&, unsigned int, const QString& ) ) );
+ connect( fn, SIGNAL( accessed( const QString& ) ), this, SIGNAL( accessed( const QString& ) ) );
+ connect( fn, SIGNAL( modified( const QString& ) ), this, SIGNAL( modified( const QString& ) ) );
+ connect( fn, SIGNAL( attributed( const QString& ) ), this, SIGNAL( attributed( const QString& ) ) );
+ connect( fn, SIGNAL( closed( const QString&, bool ) ), this, SIGNAL( closed( const QString&, bool ) ) );
+ connect( fn, SIGNAL( opened( const QString& ) ), this, SIGNAL( opened( const QString& ) ) );
+ connect( fn, SIGNAL( movedTo( const QString&, const QString& ) ), this, SIGNAL( movedTo( const QString&, const QString& ) ) );
+ connect( fn, SIGNAL( movedFrom( const QString&, const QString& ) ), this, SIGNAL( movedFrom( const QString&, const QString& ) ) );
+ connect( fn, SIGNAL( deletedSubdir( const QString&, const QString& ) ), this, SIGNAL( deletedSubdir( const QString&, const QString& ) ) );
+ connect( fn, SIGNAL( deletedFile( const QString&, const QString& ) ), this, SIGNAL( deletedFile( const QString&, const QString& ) ) );;
+ connect( fn, SIGNAL( createdSubdir( const QString&, const QString& ) ), this, SIGNAL( createdSubdir( const QString&, const QString& ) ) );
+ connect( fn, SIGNAL( createdFile( const QString&, const QString& ) ), this, SIGNAL( createdFile( const QString&, const QString& ) ) );
+ connect( fn, SIGNAL( deleted( const QString& ) ), this, SIGNAL( deleted( const QString& ) ) );
+ connect( fn, SIGNAL( unmounted( const QString& ) ), this, SIGNAL( unmounted( const QString& ) ) );
+
+ if ( recurse )
{
- connect( fn, SIGNAL( triggered( const QString&, unsigned int, const QString& ) ), this, SIGNAL( triggered( const QString&, unsigned int, const QString& ) ) );
- connect( fn, SIGNAL( accessed( const QString& ) ), this, SIGNAL( accessed( const QString& ) ) );
- connect( fn, SIGNAL( modified( const QString& ) ), this, SIGNAL( modified( const QString& ) ) );
- connect( fn, SIGNAL( attributed( const QString& ) ), this, SIGNAL( attributed( const QString& ) ) );
- connect( fn, SIGNAL( closed( const QString&, bool ) ), this, SIGNAL( closed( const QString&, bool ) ) );
- connect( fn, SIGNAL( opened( const QString& ) ), this, SIGNAL( opened( const QString& ) ) );
- connect( fn, SIGNAL( movedTo( const QString&, const QString& ) ), this, SIGNAL( movedTo( const QString&, const QString& ) ) );
- connect( fn, SIGNAL( movedFrom( const QString&, const QString& ) ), this, SIGNAL( movedFrom( const QString&, const QString& ) ) );
- connect( fn, SIGNAL( deletedSubdir( const QString&, const QString& ) ), this, SIGNAL( deletedSubdir( const QString&, const QString& ) ) );
- connect( fn, SIGNAL( deletedFile( const QString&, const QString& ) ), this, SIGNAL( deletedFile( const QString&, const QString& ) ) );;
- connect( fn, SIGNAL( createdSubdir( const QString&, const QString& ) ), this, SIGNAL( createdSubdir( const QString&, const QString& ) ) );
- connect( fn, SIGNAL( createdFile( const QString&, const QString& ) ), this, SIGNAL( createdFile( const QString&, const QString& ) ) );
- connect( fn, SIGNAL( deleted( const QString& ) ), this, SIGNAL( deleted( const QString& ) ) );
- connect( fn, SIGNAL( unmounted( const QString& ) ), this, SIGNAL( unmounted( const QString& ) ) );
+ QDir directory( path );
+ QStringList subdirs = directory.entryList( QDir::Dirs );
+
+ for ( QStringList::Iterator it = subdirs.begin(); it != subdirs.end(); ++it )
+ {
+ if ( (*it) == "." || (*it) == ".." ) continue;
+ QString subpath = QString( "%1/%2" ).arg( path ).arg( *it );
+ int subresult = watch( subpath, sshot, type, recurse-1 );
+ if ( subresult == -1 )
+ {
+ qDebug( "ODirNotification::watch(): subresult for '%s' was -1. Interrupting", (const char*) (*it) );
+ return -1;
+ }
+ }
}
- return result;
- }
- else
- {
-
- return 1;
+//connect( fn, SIGNAL( triggered( const QString&, unsigned int, const QString& ) ), this, SIGNAL( triggered( const QString&, unsigned int, const QString& ) ) );
}
+ else return -1;
}
diff --git a/libopie2/opiecore/linux/opcmciasystem.cpp b/libopie2/opiecore/linux/opcmciasystem.cpp
index 0f7ff46..929e289 100644
--- a/libopie2/opiecore/linux/opcmciasystem.cpp
+++ b/libopie2/opiecore/linux/opcmciasystem.cpp
@@ -174,5 +174,3 @@ OPcmciaSocket::OPcmciaSocket( int major, int socket, QObject* parent, const char
qDebug( "OPcmciaSocket::OPcmciaSocket()" );
-
init();
- buildInformation();
}
@@ -213,31 +211,2 @@ OPcmciaSocket::~OPcmciaSocket()
-/* internal */ void OPcmciaSocket::buildInformation()
-{
- cistpl_vers_1_t *vers = &_ioctlarg.tuple_parse.parse.version_1;
- cistpl_manfid_t *manfid = &_ioctlarg.tuple_parse.parse.manfid;
- cistpl_funcid_t *funcid = &_ioctlarg.tuple_parse.parse.funcid;
- config_info_t config;
-
- if ( getTuple( CISTPL_VERS_1 ) )
- {
- for ( int i = 0; i < CISTPL_VERS_1_MAX_PROD_STRINGS; ++i )
- {
- qDebug( " PRODID = '%s'", vers->str+vers->ofs[i] );
- _productId += vers->str+vers->ofs[i];
- }
- }
- /*
- for (i = 0; i < 4; i++)
- printf("PRODID_%d=\"%s\"\n", i+1,
- (i < vers->ns) ? vers->str+vers->ofs[i] : "");
- *manfid = (cistpl_manfid_t) { 0, 0 };
- get_tuple(fd, CISTPL_MANFID, &arg);
- printf("MANFID=%04x,%04x\n", manfid->manf, manfid->card);
- *funcid = (cistpl_funcid_t) { 0xff, 0xff };
- get_tuple(fd, CISTPL_FUNCID, &arg);
- printf("FUNCID=%d\n", funcid->func);
- config.Function = config.ConfigBase = 0;
- */
-}
-
/* internal */ void OPcmciaSocket::cleanup()
@@ -247,3 +216,3 @@ OPcmciaSocket::~OPcmciaSocket()
-/* internal */ bool OPcmciaSocket::getTuple( cisdata_t tuple )
+/* internal */ bool OPcmciaSocket::getTuple( cisdata_t tuple ) const
{
@@ -268,3 +237,3 @@ OPcmciaSocket::~OPcmciaSocket()
- result = ::ioctl(_fd, DS_PARSE_TUPLE, &_ioctlarg);
+ result = ::ioctl( _fd, DS_PARSE_TUPLE, &_ioctlarg );
if ( result != 0 )
@@ -279,8 +248,2 @@ OPcmciaSocket::~OPcmciaSocket()
-/* internal */ bool OPcmciaSocket::command( const QString& cmd )
-{
- QString cmdline = QString().sprintf( "cardctl %s %d &", (const char*) cmd, _socket );
- ::system( (const char*) cmdline );
-}
-
int OPcmciaSocket::number() const
@@ -297,2 +260,21 @@ QString OPcmciaSocket::identity() const
+const OPcmciaSocket::OPcmciaSocketCardStatus OPcmciaSocket::status() const
+{
+ cs_status_t cs_status;
+ cs_status.Function = 0;
+ int result = ::ioctl( _fd, DS_GET_STATUS, &cs_status );
+ if ( result != 0 )
+ {
+ qWarning( "OPcmciaSocket::status() - DS_GET_STATUS failed (%s)", strerror( errno ) );
+ return Unknown;
+ }
+ else
+ {
+ qDebug( " card status = 0x%08x", cs_status.CardState );
+ qDebug( " socket status = 0x%08x", cs_status.SocketState );
+ return (OPcmciaSocket::OPcmciaSocketCardStatus) (cs_status.CardState + cs_status.SocketState);
+ }
+}
+
+
bool OPcmciaSocket::isUnsupported() const
@@ -305,3 +287,3 @@ bool OPcmciaSocket::isEmpty() const
{
- return ( strcmp( name(), "empty" ) == 0 );
+ return ! status() && ( Occupied || OccupiedCardBus );
}
@@ -311,36 +293,56 @@ bool OPcmciaSocket::isSuspended() const
{
- //FIXME
- return false;
+ return status() && Suspended;
}
+
bool OPcmciaSocket::eject()
{
- return command( "eject" );
+ return ::ioctl( _fd, DS_EJECT_CARD );
}
+
bool OPcmciaSocket::insert()
{
- return command( "insert" );
+ return ::ioctl( _fd, DS_INSERT_CARD );
}
+
bool OPcmciaSocket::suspend()
{
- return command( "suspend" );
+ return ::ioctl( _fd, DS_SUSPEND_CARD );
}
+
bool OPcmciaSocket::resume()
{
- return command( "resume");
+ return ::ioctl( _fd, DS_RESUME_CARD );
}
+
bool OPcmciaSocket::reset()
{
- return command( "reset");
+ return ::ioctl( _fd, DS_RESET_CARD );
}
-const QStringList& OPcmciaSocket::productIdentity() const
+
+QStringList OPcmciaSocket::productIdentity() const
{
- return _productId;
+ QStringList list;
+ cistpl_vers_1_t *vers = &_ioctlarg.tuple_parse.parse.version_1;
+ if ( getTuple( CISTPL_VERS_1 ) )
+ {
+ for ( int i = 0; i < CISTPL_VERS_1_MAX_PROD_STRINGS; ++i )
+ {
+ qDebug( " PRODID = '%s'", vers->str+vers->ofs[i] );
+ list += vers->str+vers->ofs[i];
+ }
+ }
+ else
+ {
+ list += "<unknown>";
+ }
+ return list;
}
+
#if 0
@@ -352 +354,26 @@ const QPair& OPcmciaSocket::manufacturerIdentity() const
+
+QString OPcmciaSocket::function() const
+{
+ cistpl_funcid_t *funcid = &_ioctlarg.tuple_parse.parse.funcid;
+ if ( getTuple( CISTPL_FUNCID ) )
+ {
+ switch ( funcid->func )
+ {
+ case 0: return "Multifunction"; break;
+ case 1: return "Memory"; break;
+ case 2: return "Serial"; break;
+ case 3: return "Parallel"; break;
+ case 4: return "Fixed Disk"; break;
+ case 5: return "Video"; break;
+ case 6: return "Network"; break;
+ case 7: return "AIMS"; break;
+ case 8: return "SCSI"; break;
+ default: return "<unknown>"; break;
+ }
+ }
+ else
+ {
+ return "<unknown>";
+ }
+}
diff --git a/libopie2/opiecore/linux/opcmciasystem.h b/libopie2/opiecore/linux/opcmciasystem.h
index ef34964..ac6c1de 100644
--- a/libopie2/opiecore/linux/opcmciasystem.h
+++ b/libopie2/opiecore/linux/opcmciasystem.h
@@ -111,2 +111,20 @@ class OPcmciaSocket : public QObject
Q_OBJECT
+ public:
+
+ enum OPcmciaSocketCardStatus
+ {
+ Unknown = 0,
+ Occupied = CS_EVENT_CARD_DETECT,
+ OccupiedCardBus = CS_EVENT_CB_DETECT,
+ WriteProtected = CS_EVENT_WRITE_PROTECT,
+ BatteryLow = CS_EVENT_BATTERY_LOW,
+ BatteryDead = CS_EVENT_BATTERY_DEAD,
+ Ready = CS_EVENT_READY_CHANGE,
+ Suspended = CS_EVENT_PM_SUSPEND,
+ Attention = CS_EVENT_REQUEST_ATTENTION,
+ InsertionInProgress = CS_EVENT_CARD_INSERTION,
+ RemovalInProgress = CS_EVENT_CARD_REMOVAL,
+ ThreeVolts = CS_EVENT_3VCARD,
+ SupportsVoltage = CS_EVENT_XVCARD,
+ };
@@ -127,3 +145,3 @@ class OPcmciaSocket : public QObject
/**
- * @returns the identification string of the card in this socket, or "<Empty Socket>"
+ * @returns the card managers idea of the cards' identy, or "<Empty Socket>"
*/
@@ -131,2 +149,6 @@ class OPcmciaSocket : public QObject
/**
+ * @returns the socket status
+ */
+ const OPcmciaSocketCardStatus status() const;
+ /**
* @returns true, if the card is unsupported by the cardmgr
@@ -170,3 +192,3 @@ class OPcmciaSocket : public QObject
*/
- const QStringList& productIdentity() const;
+ QStringList productIdentity() const;
/**
@@ -177,5 +199,6 @@ class OPcmciaSocket : public QObject
#endif
-
- private:
- QStringList _productId;
+ /**
+ * @returns the function string
+ */
+ QString function() const;
@@ -183,6 +206,4 @@ class OPcmciaSocket : public QObject
void init();
- void buildInformation();
void cleanup();
- bool command( const QString& cmd );
- bool getTuple( cisdata_t tuple );
+ bool getTuple( cisdata_t tuple ) const;
int _major;
@@ -190,3 +211,3 @@ class OPcmciaSocket : public QObject
int _fd;
- ds_ioctl_arg_t _ioctlarg;
+ mutable ds_ioctl_arg_t _ioctlarg;