Kaydet (Commit) 9d772773 authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Noel Grandin

loplugin:unusedmethods ucb

Change-Id: Idc0ca78da8ebbdfe8489eee92a1167eb1bd9722f
Reviewed-on: https://gerrit.libreoffice.org/16794Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst fc0079ee
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <cassert> #include <cassert>
#include <string> #include <string>
#include <iostream> #include <iostream>
#include <fstream>
#include <set> #include <set>
#include "plugin.hxx" #include "plugin.hxx"
#include "compat.hxx" #include "compat.hxx"
...@@ -18,13 +19,12 @@ ...@@ -18,13 +19,12 @@
Dump a list of calls to methods, and a list of method definitions. Dump a list of calls to methods, and a list of method definitions.
Then we will post-process the 2 lists and find the set of unused methods. Then we will post-process the 2 lists and find the set of unused methods.
Be warned that it produces around 3G of log file. Be warned that it produces around 2.4G of log file.
The process goes something like this: The process goes something like this:
$ make check $ make check
$ make FORCE_COMPILE_ALL=1 COMPILER_PLUGIN_TOOL='unusedmethods' check > log.txt $ make FORCE_COMPILE_ALL=1 COMPILER_PLUGIN_TOOL='unusedmethods' check
$ grep -P '(call:)|(definition:)' log.txt | sort -u > log2.txt $ ./compilerplugins/clang/unusedmethods.py unusedmethods.log > result.txt
$ ./compilerplugins/clang/unusedmethods.py log2.txt > result.txt
and then and then
$ for dir in *; do make FORCE_COMPILE_ALL=1 UPDATE_FILES=$dir COMPILER_PLUGIN_TOOL='unusedmethodsremove' $dir; done $ for dir in *; do make FORCE_COMPILE_ALL=1 UPDATE_FILES=$dir COMPILER_PLUGIN_TOOL='unusedmethodsremove' $dir; done
...@@ -44,13 +44,33 @@ TODO track instantiations of template class constructor methods ...@@ -44,13 +44,33 @@ TODO track instantiations of template class constructor methods
namespace { namespace {
// try to limit the volumninous output a little
static std::set<std::string> callSet;
static std::set<std::string> definitionSet;
class UnusedMethods: class UnusedMethods:
public RecursiveASTVisitor<UnusedMethods>, public loplugin::Plugin public RecursiveASTVisitor<UnusedMethods>, public loplugin::Plugin
{ {
public: public:
explicit UnusedMethods(InstantiationData const & data): Plugin(data) {} explicit UnusedMethods(InstantiationData const & data): Plugin(data) {}
virtual void run() override { TraverseDecl(compiler.getASTContext().getTranslationUnitDecl()); } virtual void run() override
{
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
// dump all our output in one write call - this is to try and limit IO "crosstalk" between multiple processes
// writing to the same logfile
std::string output;
for (const std::string & s : callSet)
output += "call:\t" + s + "\t\n";
for (const std::string & s : definitionSet)
output += "definition:\t" + s + "\t\n";
ofstream myfile;
myfile.open("/home/noel/libo4/unusedmethods.log", ios::app | ios::out);
myfile << output;
myfile.close();
}
bool VisitCallExpr(CallExpr* ); bool VisitCallExpr(CallExpr* );
bool VisitCXXMethodDecl( const CXXMethodDecl* decl ); bool VisitCXXMethodDecl( const CXXMethodDecl* decl );
...@@ -80,13 +100,11 @@ static std::string niceName(const CXXMethodDecl* functionDecl) ...@@ -80,13 +100,11 @@ static std::string niceName(const CXXMethodDecl* functionDecl)
return s; return s;
} }
// try to limit the volumninous output a little
static std::set<std::string> alreadySeenCallSet;
static void logCallToRootMethods(const CXXMethodDecl* decl) static void logCallToRootMethods(const CXXMethodDecl* decl)
{ {
// For virtual/overriding methods, we need to pretend we called the root method(s), // For virtual/overriding methods, we need to pretend we called the root method(s),
// so that they get marked as used. // so that they get marked as used.
decl = decl->getCanonicalDecl();
bool bPrinted = false; bool bPrinted = false;
for(CXXMethodDecl::method_iterator it = decl->begin_overridden_methods(); for(CXXMethodDecl::method_iterator it = decl->begin_overridden_methods();
it != decl->end_overridden_methods(); ++it) it != decl->end_overridden_methods(); ++it)
...@@ -97,8 +115,7 @@ static void logCallToRootMethods(const CXXMethodDecl* decl) ...@@ -97,8 +115,7 @@ static void logCallToRootMethods(const CXXMethodDecl* decl)
if (!bPrinted) if (!bPrinted)
{ {
std::string s = niceName(decl); std::string s = niceName(decl);
if (alreadySeenCallSet.insert(s).second) callSet.insert(s);
cout << "call:\t" << niceName(decl) << endl;
} }
} }
...@@ -173,7 +190,7 @@ bool UnusedMethods::VisitCXXMethodDecl( const CXXMethodDecl* functionDecl ) ...@@ -173,7 +190,7 @@ bool UnusedMethods::VisitCXXMethodDecl( const CXXMethodDecl* functionDecl )
return true; return true;
} }
cout << "definition:\t" << niceName(functionDecl) << endl; definitionSet.insert(niceName(functionDecl));
return true; return true;
} }
......
...@@ -33,15 +33,19 @@ exclusionSet = set([ ...@@ -33,15 +33,19 @@ exclusionSet = set([
]) ])
# The parsing here is designed to also grab output which is mixed into the output from gbuild.
# I have not yet found a way of suppressing the gbuild output.
with open(sys.argv[1]) as txt: with open(sys.argv[1]) as txt:
for line in txt: for line in txt:
if line.startswith("definition:\t"): if line.find("definition:\t") != -1:
idx1 = line.find("\t") idx1 = line.find("definition:\t")
clazzName = line[idx1+1 : len(line)-1] idx2 = line.find("\t", idx1+12)
clazzName = line[idx1+12 : idx2]
definitionSet.add(clazzName) definitionSet.add(clazzName)
elif line.startswith("call:\t"): elif line.find("call:\t") != -1:
idx1 = line.find("\t") idx1 = line.find("call:\t")
clazzName = line[idx1+1 : len(line)-1] idx2 = line.find("\t", idx1+6)
clazzName = line[idx1+6 : idx2]
callSet.add(clazzName) callSet.add(clazzName)
for clazz in sorted(definitionSet - callSet - exclusionSet): for clazz in sorted(definitionSet - callSet - exclusionSet):
......
...@@ -109,8 +109,6 @@ private: ...@@ -109,8 +109,6 @@ private:
OUString cancelCheckOut( const com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment > & xEnv ) OUString cancelCheckOut( const com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment > & xEnv )
throw( com::sun::star::uno::Exception ); throw( com::sun::star::uno::Exception );
void destroy( ) throw( com::sun::star::uno::Exception );
static void copyData( com::sun::star::uno::Reference< com::sun::star::io::XInputStream > xIn, static void copyData( com::sun::star::uno::Reference< com::sun::star::io::XInputStream > xIn,
com::sun::star::uno::Reference< com::sun::star::io::XOutputStream > xOut ); com::sun::star::uno::Reference< com::sun::star::io::XOutputStream > xOut );
......
...@@ -1364,9 +1364,4 @@ BaseContent::cPCL() ...@@ -1364,9 +1364,4 @@ BaseContent::cPCL()
} }
OUString BaseContent::getKey()
{
return m_aUncPath;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -264,7 +264,6 @@ namespace fileaccess { ...@@ -264,7 +264,6 @@ namespace fileaccess {
ContentEventNotifier* cCEL() SAL_OVERRIDE; ContentEventNotifier* cCEL() SAL_OVERRIDE;
PropertySetInfoChangeNotifier* cPSL() SAL_OVERRIDE; PropertySetInfoChangeNotifier* cPSL() SAL_OVERRIDE;
PropertyChangeNotifier* cPCL() SAL_OVERRIDE; PropertyChangeNotifier* cPCL() SAL_OVERRIDE;
OUString getKey() SAL_OVERRIDE;
private: private:
// Data members // Data members
......
...@@ -43,14 +43,6 @@ inline const sal_Int16& SAL_CALL shell::MyProperty::getAttributes() const ...@@ -43,14 +43,6 @@ inline const sal_Int16& SAL_CALL shell::MyProperty::getAttributes() const
{ {
return Attributes; return Attributes;
} }
inline void SAL_CALL shell::MyProperty::setHandle( const sal_Int32& __Handle ) const
{
const_cast<MyProperty*>(this)->Handle = __Handle;
}
inline void SAL_CALL shell::MyProperty::setType( const com::sun::star::uno::Type& __Typ ) const
{
const_cast<MyProperty*>(this)->Typ = __Typ;
}
inline void SAL_CALL shell::MyProperty::setValue( const com::sun::star::uno::Any& __Value ) const inline void SAL_CALL shell::MyProperty::setValue( const com::sun::star::uno::Any& __Value ) const
{ {
const_cast<MyProperty*>(this)->Value = __Value; const_cast<MyProperty*>(this)->Value = __Value;
...@@ -59,11 +51,6 @@ inline void SAL_CALL shell::MyProperty::setState( const com::sun::star::beans::P ...@@ -59,11 +51,6 @@ inline void SAL_CALL shell::MyProperty::setState( const com::sun::star::beans::P
{ {
const_cast<MyProperty*>(this)->State = __State; const_cast<MyProperty*>(this)->State = __State;
} }
inline void SAL_CALL shell::MyProperty::setAttributes( const sal_Int16& __Attributes ) const
{
const_cast<MyProperty*>(this)->Attributes = __Attributes;
}
#endif #endif
......
...@@ -113,7 +113,6 @@ namespace fileaccess { ...@@ -113,7 +113,6 @@ namespace fileaccess {
virtual ContentEventNotifier* cCEL() = 0; virtual ContentEventNotifier* cCEL() = 0;
virtual PropertySetInfoChangeNotifier* cPSL() = 0; virtual PropertySetInfoChangeNotifier* cPSL() = 0;
virtual PropertyChangeNotifier* cPCL() = 0; virtual PropertyChangeNotifier* cPCL() = 0;
virtual OUString getKey() = 0;
protected: protected:
~Notifier() {} ~Notifier() {}
......
...@@ -88,11 +88,6 @@ class XResultSet_impl : public Notifier, ...@@ -88,11 +88,6 @@ class XResultSet_impl : public Notifier,
return 0; return 0;
} }
virtual OUString getKey() SAL_OVERRIDE
{
return m_aBaseDirectory;
}
sal_Int32 SAL_CALL CtorSuccess() { return m_nErrorCode;} sal_Int32 SAL_CALL CtorSuccess() { return m_nErrorCode;}
sal_Int32 SAL_CALL getMinorError() { return m_nMinorErrorCode;} sal_Int32 SAL_CALL getMinorError() { return m_nMinorErrorCode;}
......
...@@ -112,15 +112,6 @@ namespace fileaccess ...@@ -112,15 +112,6 @@ namespace fileaccess
return m_nMinorCode; return m_nMinorCode;
} }
com::sun::star::uno::Reference< com::sun::star::ucb::XProgressHandler > SAL_CALL
getProgressHandler()
{
if( ! m_xProgressHandler.is() && m_xCommandEnvironment.is() )
m_xProgressHandler = m_xCommandEnvironment->getProgressHandler();
return m_xProgressHandler;
}
com::sun::star::uno::Reference< com::sun::star::task::XInteractionHandler > SAL_CALL com::sun::star::uno::Reference< com::sun::star::task::XInteractionHandler > SAL_CALL
getInteractionHandler() getInteractionHandler()
{ {
...@@ -167,8 +158,6 @@ namespace fileaccess ...@@ -167,8 +158,6 @@ namespace fileaccess
* The minor code refines the information given in ErrorCode. * The minor code refines the information given in ErrorCode.
*/ */
void SAL_CALL clearError();
void SAL_CALL installError( sal_Int32 CommandId, void SAL_CALL installError( sal_Int32 CommandId,
sal_Int32 ErrorCode, sal_Int32 ErrorCode,
sal_Int32 minorCode = TASKHANDLER_NO_ERROR ); sal_Int32 minorCode = TASKHANDLER_NO_ERROR );
......
...@@ -107,11 +107,8 @@ namespace fileaccess { ...@@ -107,11 +107,8 @@ namespace fileaccess {
inline const sal_Int16& SAL_CALL getAttributes() const; inline const sal_Int16& SAL_CALL getAttributes() const;
// The set* functions are declared const, because the key of "this" stays intact // The set* functions are declared const, because the key of "this" stays intact
inline void SAL_CALL setHandle( const sal_Int32& __Handle ) const;
inline void SAL_CALL setType( const com::sun::star::uno::Type& __Type ) const;
inline void SAL_CALL setValue( const com::sun::star::uno::Any& __Value ) const; inline void SAL_CALL setValue( const com::sun::star::uno::Any& __Value ) const;
inline void SAL_CALL setState( const com::sun::star::beans::PropertyState& __State ) const; inline void SAL_CALL setState( const com::sun::star::beans::PropertyState& __State ) const;
inline void SAL_CALL setAttributes( const sal_Int16& __Attributes ) const;
}; };
struct eMyProperty struct eMyProperty
...@@ -500,12 +497,6 @@ namespace fileaccess { ...@@ -500,12 +497,6 @@ namespace fileaccess {
const com::sun::star::uno::Sequence< com::sun::star::beans::Property >& seq ); const com::sun::star::uno::Sequence< com::sun::star::beans::Property >& seq );
void SAL_CALL
setFileProperties(
const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& values,
sal_Int32 numberOfValues );
// Helper function for public copy // Helper function for public copy
osl::FileBase::RC SAL_CALL osl::FileBase::RC SAL_CALL
......
...@@ -32,9 +32,6 @@ namespace ftp { ...@@ -32,9 +32,6 @@ namespace ftp {
class FTPStreamContainer class FTPStreamContainer
{ {
public:
virtual size_t write(void *buffer,size_t size,size_t nmemb) = 0;
protected: protected:
~FTPStreamContainer() {} ~FTPStreamContainer() {}
}; };
......
...@@ -104,14 +104,6 @@ namespace ftp { ...@@ -104,14 +104,6 @@ namespace ftp {
m_nMode = INETCOREFTP_FILEMODE_UNKNOWN; m_nMode = INETCOREFTP_FILEMODE_UNKNOWN;
m_nSize = sal_uInt32(-1); m_nSize = sal_uInt32(-1);
} }
bool isDir() const {
return (m_nMode & INETCOREFTP_FILEMODE_ISDIR) != 0;
}
bool isFile() const {
return (m_nMode & INETCOREFTP_FILEMODE_ISDIR) == 0;
}
}; };
......
...@@ -32,25 +32,18 @@ ...@@ -32,25 +32,18 @@
namespace ftp { namespace ftp {
class FTPInputStream; class FTPInputStream;
class FTPOutputStreamContainer class FTPOutputStreamContainer
: public FTPStreamContainer : public FTPStreamContainer
{ {
public: public:
explicit FTPOutputStreamContainer(const com::sun::star::uno::Reference< explicit FTPOutputStreamContainer(const com::sun::star::uno::Reference<
com::sun::star::io::XOutputStream>& out); com::sun::star::io::XOutputStream>& out);
virtual ~FTPOutputStreamContainer() {} virtual ~FTPOutputStreamContainer() {}
virtual size_t write(void *buffer,size_t size,size_t nmemb) SAL_OVERRIDE;
private: private:
com::sun::star::uno::Reference< com::sun::star::uno::Reference<
com::sun::star::io::XOutputStream> m_out; com::sun::star::io::XOutputStream> m_out;
}; };
...@@ -60,22 +53,17 @@ namespace ftp { ...@@ -60,22 +53,17 @@ namespace ftp {
: public FTPStreamContainer : public FTPStreamContainer
{ {
public: public:
explicit FTPInputStreamContainer(FTPInputStream* out); explicit FTPInputStreamContainer(FTPInputStream* out);
virtual ~FTPInputStreamContainer() {} virtual ~FTPInputStreamContainer() {}
virtual size_t write(void *buffer,size_t size,size_t nmemb) SAL_OVERRIDE;
com::sun::star::uno::Reference< com::sun::star::uno::Reference<
com::sun::star::io::XInputStream> operator()(); com::sun::star::io::XInputStream> operator()();
private: private:
FTPInputStream* m_out; FTPInputStream* m_out;
}; };
} }
......
...@@ -113,10 +113,6 @@ private: ...@@ -113,10 +113,6 @@ private:
bool feedSink( com::sun::star::uno::Reference< com::sun::star::uno::XInterface> aSink, bool feedSink( com::sun::star::uno::Reference< com::sun::star::uno::XInterface> aSink,
const com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment >& xEnv ); const com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment >& xEnv );
com::sun::star::uno::Reference< com::sun::star::io::XInputStream >
createInputStream(const com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment >& xEnv )
throw( com::sun::star::uno::Exception );
bool exchangeIdentity(const com::sun::star::uno::Reference< com::sun::star::ucb::XContentIdentifier >& xNewId); bool exchangeIdentity(const com::sun::star::uno::Reference< com::sun::star::ucb::XContentIdentifier >& xNewId);
public: public:
......
...@@ -54,9 +54,6 @@ public: ...@@ -54,9 +54,6 @@ public:
const OUString & getUri() const const OUString & getUri() const
{ init(); return m_aUri; } { init(); return m_aUri; }
void setUri( const OUString & rUri )
{ m_aPath.clear(); m_aUri = rUri; m_bValid = false; }
const OUString & getParentUri() const const OUString & getParentUri() const
{ init(); return m_aParentUri; } { init(); return m_aParentUri; }
...@@ -66,9 +63,6 @@ public: ...@@ -66,9 +63,6 @@ public:
const OUString & getPath() const const OUString & getPath() const
{ init(); return m_aPath; } { init(); return m_aPath; }
const OUString & getName() const
{ init(); return m_aName; }
inline bool isRootFolder() const; inline bool isRootFolder() const;
}; };
......
...@@ -69,15 +69,9 @@ public: ...@@ -69,15 +69,9 @@ public:
const OUString & getParentUri() const const OUString & getParentUri() const
{ init(); return m_aParentUri; } { init(); return m_aParentUri; }
const OUString & getPath() const
{ init(); return m_aPath; }
const OUString & getDocumentId() const const OUString & getDocumentId() const
{ init(); return m_aDocId; } { init(); return m_aDocId; }
const OUString & getInternalPath() const
{ init(); return m_aInternalPath; }
const OUString & getName() const const OUString & getName() const
{ init(); return m_aName; } { init(); return m_aName; }
...@@ -87,8 +81,6 @@ public: ...@@ -87,8 +81,6 @@ public:
inline bool isRoot() const; inline bool isRoot() const;
inline bool isDocument() const; inline bool isDocument() const;
inline bool isFolder() const;
}; };
inline void Uri::setUri( const OUString & rUri ) inline void Uri::setUri( const OUString & rUri )
...@@ -116,12 +108,6 @@ inline bool Uri::isDocument() const ...@@ -116,12 +108,6 @@ inline bool Uri::isDocument() const
&& ( m_aPath.copy( m_aDocId.getLength() + 1 ).getLength() < 2 ) ); && ( m_aPath.copy( m_aDocId.getLength() + 1 ).getLength() < 2 ) );
} }
inline bool Uri::isFolder() const
{
init();
return m_aPath.isEmpty() || m_aPath.endsWith( "/" );
}
} // namespace tdoc_ucp } // namespace tdoc_ucp
#endif // INCLUDED_UCB_SOURCE_UCP_TDOC_TDOC_URI_HXX #endif // INCLUDED_UCB_SOURCE_UCP_TDOC_TDOC_URI_HXX
......
...@@ -75,12 +75,6 @@ public: ...@@ -75,12 +75,6 @@ public:
// DAV methods // DAV methods
virtual void OPTIONS( const OUString & inPath,
DAVCapabilities & outCapabilities,
const DAVRequestEnvironment & rEnv )
throw( std::exception ) = 0;
// allprop & named // allprop & named
virtual void PROPFIND( const OUString & inPath, virtual void PROPFIND( const OUString & inPath,
const Depth inDepth, const Depth inDepth,
...@@ -184,12 +178,6 @@ public: ...@@ -184,12 +178,6 @@ public:
const DAVRequestEnvironment & rEnv ) const DAVRequestEnvironment & rEnv )
throw ( std::exception ) = 0; throw ( std::exception ) = 0;
// refresh existing lock.
virtual sal_Int64 LOCK( const OUString & inPath,
sal_Int64 nTimeout,
const DAVRequestEnvironment & rEnv )
throw ( std::exception ) = 0;
virtual void UNLOCK( const OUString & inPath, virtual void UNLOCK( const OUString & inPath,
const DAVRequestEnvironment & rEnv ) const DAVRequestEnvironment & rEnv )
throw ( std::exception ) = 0; throw ( std::exception ) = 0;
......
...@@ -824,30 +824,6 @@ bool NeonSession::UsesProxy() ...@@ -824,30 +824,6 @@ bool NeonSession::UsesProxy()
return !m_aProxyName.isEmpty() ; return !m_aProxyName.isEmpty() ;
} }
void NeonSession::OPTIONS( const OUString & inPath,
DAVCapabilities & outCapabilities,
const DAVRequestEnvironment & rEnv )
throw( std::exception )
{
osl::Guard< osl::Mutex > theGuard( m_aMutex );
Init( rEnv );
HttpServerCapabilities servercaps;
memset( &servercaps, 0, sizeof( servercaps ) );
int theRetVal = ne_options( m_pHttpSession,
OUStringToOString(
inPath, RTL_TEXTENCODING_UTF8 ).getStr(),
&servercaps );
HandleError( theRetVal, inPath, rEnv );
outCapabilities.class1 = !!servercaps.dav_class1;
outCapabilities.class2 = !!servercaps.dav_class2;
outCapabilities.executable = !!servercaps.dav_executable;
}
void NeonSession::PROPFIND( const OUString & inPath, void NeonSession::PROPFIND( const OUString & inPath,
const Depth inDepth, const Depth inDepth,
const std::vector< OUString > & inPropNames, const std::vector< OUString > & inPropNames,
...@@ -1424,42 +1400,6 @@ void NeonSession::LOCK( const OUString & inPath, ...@@ -1424,42 +1400,6 @@ void NeonSession::LOCK( const OUString & inPath,
HandleError( theRetVal, inPath, rEnv ); HandleError( theRetVal, inPath, rEnv );
} }
// Refresh existing lock
sal_Int64 NeonSession::LOCK( const OUString & inPath,
sal_Int64 nTimeout,
const DAVRequestEnvironment & rEnv )
throw ( std::exception )
{
osl::Guard< osl::Mutex > theGuard( m_aMutex );
// Try to get the neon lock from lock store
NeonLock * theLock
= m_aNeonLockStore.findByUri( makeAbsoluteURL( inPath ) );
if ( !theLock )
throw DAVException( DAVException::DAV_NOT_LOCKED );
Init( rEnv );
// refresh existing lock.
theLock->timeout = static_cast< long >( nTimeout );
TimeValue startCall;
osl_getSystemTime( &startCall );
int theRetVal = ne_lock_refresh( m_pHttpSession, theLock );
if ( theRetVal == NE_OK )
{
m_aNeonLockStore.updateLock( theLock,
lastChanceToSendRefreshRequest(
startCall, theLock->timeout ) );
}
HandleError( theRetVal, inPath, rEnv );
return theLock->timeout;
}
// Refresh existing lock // Refresh existing lock
bool NeonSession::LOCK( NeonLock * pLock, bool NeonSession::LOCK( NeonLock * pLock,
sal_Int32 & rlastChanceToSendRefreshRequest ) sal_Int32 & rlastChanceToSendRefreshRequest )
......
...@@ -86,12 +86,6 @@ public: ...@@ -86,12 +86,6 @@ public:
const DAVRequestEnvironment & getRequestEnvironment() const const DAVRequestEnvironment & getRequestEnvironment() const
{ return m_aEnv; } { return m_aEnv; }
virtual void
OPTIONS( const OUString & inPath,
DAVCapabilities & outCapabilities,
const DAVRequestEnvironment & rEnv )
throw ( std::exception ) SAL_OVERRIDE;
// allprop & named // allprop & named
virtual void virtual void
PROPFIND( const OUString & inPath, PROPFIND( const OUString & inPath,
...@@ -206,12 +200,6 @@ public: ...@@ -206,12 +200,6 @@ public:
const DAVRequestEnvironment & rEnv ) const DAVRequestEnvironment & rEnv )
throw ( std::exception ) SAL_OVERRIDE; throw ( std::exception ) SAL_OVERRIDE;
// refresh existing lock.
virtual sal_Int64 LOCK( const OUString & inURL,
sal_Int64 nTimeout,
const DAVRequestEnvironment & rEnv )
throw ( std::exception ) SAL_OVERRIDE;
virtual void UNLOCK( const OUString & inURL, virtual void UNLOCK( const OUString & inURL,
const DAVRequestEnvironment & rEnv ) const DAVRequestEnvironment & rEnv )
throw ( std::exception ) SAL_OVERRIDE; throw ( std::exception ) SAL_OVERRIDE;
......
...@@ -92,8 +92,6 @@ class NeonUri ...@@ -92,8 +92,6 @@ class NeonUri
static OUString makeConnectionEndPointString( static OUString makeConnectionEndPointString(
const OUString & rHostName, const OUString & rHostName,
int nPort ); int nPort );
OUString makeConnectionEndPointString() const
{ return makeConnectionEndPointString( GetHost(), GetPort() ); }
}; };
} // namespace webdav_ucp } // namespace webdav_ucp
......
...@@ -129,13 +129,8 @@ public: ...@@ -129,13 +129,8 @@ public:
// Additional interfaces // Additional interfaces
// Non-interface methods. // Non-interface methods.
rtl::Reference< DAVSessionFactory > getDAVSessionFactory()
{ return m_xDAVSessionFactory; }
bool getProperty( const OUString & rPropName, bool getProperty( const OUString & rPropName,
::com::sun::star::beans::Property & rProp, ::com::sun::star::beans::Property & rProp,
bool bStrict = false ); bool bStrict = false );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment