2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2006-12-20 13:20:46 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 02:46:28 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2006-12-20 13:20:46 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2006-12-20 13:20:46 +00:00
|
|
|
*
|
2008-04-11 02:46:28 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2006-12-20 13:20:46 +00:00
|
|
|
*
|
2008-04-11 02:46:28 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2006-12-20 13:20:46 +00:00
|
|
|
*
|
2008-04-11 02:46:28 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2006-12-20 13:20:46 +00:00
|
|
|
*
|
2008-04-11 02:46:28 +00:00
|
|
|
* OpenOffice.org 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 Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2006-12-20 13:20:46 +00:00
|
|
|
*
|
2008-04-11 02:46:28 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2006-12-20 13:20:46 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#include "dp_misc.h"
|
|
|
|
#include "rtl/strbuf.hxx"
|
|
|
|
#include "osl/time.h"
|
|
|
|
#include "osl/thread.h"
|
|
|
|
#include "cppuhelper/compbase1.hxx"
|
|
|
|
#include "comphelper/anytostring.hxx"
|
|
|
|
#include "comphelper/servicedecl.hxx"
|
|
|
|
#include "comphelper/unwrapargs.hxx"
|
|
|
|
#include "com/sun/star/deployment/DeploymentException.hpp"
|
|
|
|
#include "com/sun/star/ucb/XProgressHandler.hpp"
|
2012-05-29 17:17:28 +02:00
|
|
|
#include "com/sun/star/ucb/SimpleFileAccess.hpp"
|
|
|
|
#include "com/sun/star/ucb/XSimpleFileAccess2.hpp"
|
2006-12-20 13:20:46 +00:00
|
|
|
#include "com/sun/star/io/XSeekable.hpp"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
|
|
using namespace ::rtl;
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
|
|
|
|
namespace dp_log {
|
|
|
|
|
|
|
|
typedef ::cppu::WeakComponentImplHelper1<ucb::XProgressHandler> t_log_helper;
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
class ProgressLogImpl : public ::dp_misc::MutexHolder, public t_log_helper
|
|
|
|
{
|
|
|
|
Reference<io::XOutputStream> m_xLogFile;
|
|
|
|
sal_Int32 m_log_level;
|
|
|
|
void log_write( OString const & text );
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void SAL_CALL disposing();
|
|
|
|
virtual ~ProgressLogImpl();
|
|
|
|
|
|
|
|
public:
|
|
|
|
ProgressLogImpl( Sequence<Any> const & args,
|
|
|
|
Reference<XComponentContext> const & xContext );
|
|
|
|
|
|
|
|
// XProgressHandler
|
|
|
|
virtual void SAL_CALL push( Any const & Status ) throw (RuntimeException);
|
|
|
|
virtual void SAL_CALL update( Any const & Status ) throw (RuntimeException);
|
|
|
|
virtual void SAL_CALL pop() throw (RuntimeException);
|
|
|
|
};
|
|
|
|
|
|
|
|
//______________________________________________________________________________
|
|
|
|
ProgressLogImpl::~ProgressLogImpl()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//______________________________________________________________________________
|
|
|
|
void ProgressLogImpl::disposing()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
if (m_xLogFile.is()) {
|
|
|
|
m_xLogFile->closeOutput();
|
|
|
|
m_xLogFile.clear();
|
|
|
|
}
|
|
|
|
}
|
2011-12-06 00:19:44 +09:00
|
|
|
catch (const Exception & exc) {
|
2006-12-20 13:20:46 +00:00
|
|
|
(void) exc;
|
2011-03-12 12:08:22 +01:00
|
|
|
OSL_FAIL( OUStringToOString(
|
2006-12-20 13:20:46 +00:00
|
|
|
exc.Message, RTL_TEXTENCODING_UTF8 ).getStr() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//______________________________________________________________________________
|
|
|
|
ProgressLogImpl::ProgressLogImpl(
|
|
|
|
Sequence<Any> const & args,
|
|
|
|
Reference<XComponentContext> const & xContext )
|
|
|
|
: t_log_helper( getMutex() ),
|
|
|
|
m_log_level( 0 )
|
|
|
|
{
|
|
|
|
OUString log_file;
|
|
|
|
boost::optional< Reference<task::XInteractionHandler> > interactionHandler;
|
|
|
|
comphelper::unwrapArgs( args, log_file, interactionHandler );
|
|
|
|
|
2012-05-29 17:17:28 +02:00
|
|
|
Reference<ucb::XSimpleFileAccess2> xSimpleFileAccess( ucb::SimpleFileAccess::create(xContext) );
|
2006-12-20 13:20:46 +00:00
|
|
|
// optional ia handler:
|
|
|
|
if (interactionHandler)
|
|
|
|
xSimpleFileAccess->setInteractionHandler( *interactionHandler );
|
|
|
|
|
|
|
|
m_xLogFile.set(
|
|
|
|
xSimpleFileAccess->openFileWrite( log_file ), UNO_QUERY_THROW );
|
|
|
|
Reference<io::XSeekable> xSeekable( m_xLogFile, UNO_QUERY_THROW );
|
|
|
|
xSeekable->seek( xSeekable->getLength() );
|
|
|
|
|
|
|
|
// write log stamp
|
|
|
|
OStringBuffer buf;
|
|
|
|
buf.append(
|
|
|
|
RTL_CONSTASCII_STRINGPARAM("###### Progress log entry ") );
|
|
|
|
TimeValue m_start_time, tLocal;
|
|
|
|
oslDateTime date_time;
|
|
|
|
if (osl_getSystemTime( &m_start_time ) &&
|
|
|
|
osl_getLocalTimeFromSystemTime( &m_start_time, &tLocal ) &&
|
|
|
|
osl_getDateTimeFromTimeValue( &tLocal, &date_time ))
|
|
|
|
{
|
|
|
|
char ar[ 128 ];
|
|
|
|
snprintf(
|
|
|
|
ar, sizeof (ar),
|
|
|
|
"%04d-%02d-%02d %02d:%02d:%02d ",
|
|
|
|
date_time.Year, date_time.Month, date_time.Day,
|
|
|
|
date_time.Hours, date_time.Minutes, date_time.Seconds );
|
|
|
|
buf.append( ar );
|
|
|
|
}
|
|
|
|
buf.append( RTL_CONSTASCII_STRINGPARAM("######\n") );
|
|
|
|
log_write( buf.makeStringAndClear() );
|
|
|
|
}
|
|
|
|
|
|
|
|
//______________________________________________________________________________
|
|
|
|
void ProgressLogImpl::log_write( OString const & text )
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
if (m_xLogFile.is()) {
|
|
|
|
m_xLogFile->writeBytes(
|
|
|
|
Sequence< sal_Int8 >(
|
|
|
|
reinterpret_cast< sal_Int8 const * >(text.getStr()),
|
|
|
|
text.getLength() ) );
|
|
|
|
}
|
|
|
|
}
|
2011-12-06 00:19:44 +09:00
|
|
|
catch (const io::IOException & exc) {
|
2006-12-20 13:20:46 +00:00
|
|
|
(void) exc;
|
2011-03-12 12:08:22 +01:00
|
|
|
OSL_FAIL( OUStringToOString(
|
2006-12-20 13:20:46 +00:00
|
|
|
exc.Message, RTL_TEXTENCODING_UTF8 ).getStr() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// XProgressHandler
|
|
|
|
//______________________________________________________________________________
|
|
|
|
void ProgressLogImpl::push( Any const & Status )
|
|
|
|
throw (RuntimeException)
|
|
|
|
{
|
|
|
|
update( Status );
|
|
|
|
OSL_ASSERT( m_log_level >= 0 );
|
|
|
|
++m_log_level;
|
|
|
|
}
|
|
|
|
|
|
|
|
//______________________________________________________________________________
|
|
|
|
void ProgressLogImpl::update( Any const & Status )
|
|
|
|
throw (RuntimeException)
|
|
|
|
{
|
|
|
|
if (! Status.hasValue())
|
|
|
|
return;
|
|
|
|
|
|
|
|
OUStringBuffer buf;
|
|
|
|
OSL_ASSERT( m_log_level >= 0 );
|
|
|
|
for ( sal_Int32 n = 0; n < m_log_level; ++n )
|
|
|
|
buf.append( static_cast<sal_Unicode>(' ') );
|
|
|
|
|
|
|
|
OUString msg;
|
|
|
|
if (Status >>= msg) {
|
|
|
|
buf.append( msg );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("ERROR: ") );
|
|
|
|
buf.append( ::comphelper::anyToString(Status) );
|
|
|
|
}
|
|
|
|
buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("\n") );
|
|
|
|
log_write( OUStringToOString(
|
|
|
|
buf.makeStringAndClear(), osl_getThreadTextEncoding() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
//______________________________________________________________________________
|
|
|
|
void ProgressLogImpl::pop() throw (RuntimeException)
|
|
|
|
{
|
|
|
|
OSL_ASSERT( m_log_level > 0 );
|
|
|
|
--m_log_level;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace sdecl = comphelper::service_decl;
|
|
|
|
sdecl::class_<ProgressLogImpl, sdecl::with_args<true> > servicePLI;
|
|
|
|
extern sdecl::ServiceDecl const serviceDecl(
|
|
|
|
servicePLI,
|
|
|
|
// a private one:
|
|
|
|
"com.sun.star.comp.deployment.ProgressLog",
|
|
|
|
"com.sun.star.comp.deployment.ProgressLog" );
|
|
|
|
|
|
|
|
} // namespace dp_log
|
|
|
|
|
2010-10-12 15:53:47 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|