/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __FRAMEWORK_JOBS_JOBRESULT_HXX_ #define __FRAMEWORK_JOBS_JOBRESULT_HXX_ //_______________________________________ // my own includes #include #include #include #include //_______________________________________ // interface includes #include #include //_______________________________________ // other includes #include //_______________________________________ // namespace namespace framework{ //_______________________________________ // public const //_______________________________________ /** @short represent a result of a finished job execution @descr Such result instance transport all neccessarry data from the code place where the job was finished to the outside code, where e.g. listener must be notified. */ class JobResult : private ThreadHelpBase { //___________________________________ // types public: /** These enum values are used to build a flag mask of possible set parts of an analyzed pure job execution result. An user of this class can decide, if a member of us can be valid or not. So it can indicate, if a job used the special part inside his returned result protocol. To be usable as flags - it must be values of set {0,1,2,4,8,16 ...}! */ enum EParts { E_NOPART = 0, E_ARGUMENTS = 1, E_DEACTIVATE = 2, E_DISPATCHRESULT = 4 }; //___________________________________ // member private: /** hold the original pure result, which was given back by an executed job We analyze it and use it to set all our other members. */ css::uno::Any m_aPureResult; /** an user of us must know, which (possible) parts of a "pure result" was realy set by an executed job. Means which other members of this class are valid. This mask can be used to find it out. */ sal_uInt32 m_eParts; /** a job can have persistent data They are part of the pure result and will be used to write it to the configuration. But that's part of any user of us. We provide this information here only. */ css::uno::Sequence< css::beans::NamedValue > m_lArguments; /** an executed job can force his deactivation But we provide this information here only. Doing so is part of any user of us. */ sal_Bool m_bDeactivate; /** represent the part "DispatchResult" It's a full filled event type, which was given back by the executed job. Any user of us can send it to his registered result listener directly. */ css::frame::DispatchResultEvent m_aDispatchResult; //___________________________________ // native interface public: JobResult( ); JobResult( const com::sun::star::uno::Any& aResult ); JobResult( const JobResult& rCopy ); virtual ~JobResult( ); void operator=( const JobResult& rCopy ); sal_Bool existPart ( sal_uInt32 eParts ) const; css::uno::Sequence< css::beans::NamedValue > getArguments ( ) const; css::frame::DispatchResultEvent getDispatchResult( ) const; }; } // namespace framework #endif // __FRAMEWORK_JOBS_JOBRESULT_HXX_