Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
chxavfilesystemwatcher.cpp
Package: 142_61_thumb_advanced.rar [view]
Upload User: dangjiwu
Upload Date: 2013-07-19
Package Size: 42019k
Code Size: 2k
Category:
Symbian
Development Platform:
Visual C++
- /************************************************************************
- * chxavfilesystemwatcher.cpp
- * --------------------------
- *
- * Synopsis:
- * Manages active object and RFs to watch for file system events for a
- * given path.
- *
- * Notifications are forwarded to a single observer/client.
- *
- *
- * Target:
- * Symbian OS
- *
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- ************************************************************************/
- // Symbian includes...
- #include <f32file.h>
- // Includes from this project...
- #include "chxavmisc.h"
- #include "hxsym_debug.h"
- #include "chxavfilesystemwatcher.h"
- CHXAvFileSystemWatcher::CHXAvFileSystemWatcher(RFs& fs)
- : m_fs(fs)
- , m_notifyType(ENotifyEntry)
- {
- }
- ///////////////////////////////////
- // dtor
- CHXAvFileSystemWatcher::~CHXAvFileSystemWatcher()
- {
- StopWatching();
- }
- ////////////////////////////////////////////////////////
- //
- void CHXAvFileSystemWatcher::ConstructL()
- {
- BaseConstructL();
- m_spWatchPath = KNullDesC().AllocL();
- }
- ////////////////////////////////////////////////////////
- // path can have wildcard to watch directories across
- // drives, e.g.:
- //
- // *:realnetworksdata
- // c:realnetworksdata
- //
- // **** you cannot watch from the root, e.g., 'c:'
- //
- void CHXAvFileSystemWatcher::SetWatchPathL(const TDesC& path)
- {
- // cleanup old stuff in case we are chaging the path
- StopWatching();
- m_spWatchPath = path.AllocL();
- DPRINTF(SYMP_FILE, ("CHXAvFileSystemWatcher::SetWatchPathL(): watching '%s'n", dbg::CharPtr(path)()));
- }
- ////////////////////////////////////////////////////////
- //
- void CHXAvFileSystemWatcher::DoIssueRequest(const CHXAvActiveCmplPtr& spActive)
- {
- if( m_spWatchPath->Length() > 0)
- {
- m_fs.NotifyChange(m_notifyType, spActive->Status(), *m_spWatchPath);
- }
- else
- {
- // no watch path; watch everything
- m_fs.NotifyChange(m_notifyType, spActive->Status());
- }
- }
- ////////////////////////////////////////////////////////
- //
- void CHXAvFileSystemWatcher::DoCancelRequest(const CHXAvActiveCmplPtr& spActive)
- {
- m_fs.NotifyChangeCancel(spActive->Status());
- }