Basic Image AlgorithmS Library  2.8.0
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ExampleProgressSemaphore.cpp
1 /*
2 This file is part of the BIAS library (Basic ImageAlgorithmS).
3 
4 Copyright (C) 2003-2009 (see file CONTACT for details)
5  Multimediale Systeme der Informationsverarbeitung
6  Institut fuer Informatik
7  Christian-Albrechts-Universitaet Kiel
8 
9 
10 BIAS is free software; you can redistribute it and/or modify
11 it under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14 
15 BIAS is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU Lesser General Public License for more details.
19 
20 You should have received a copy of the GNU Lesser General Public License
21 along with BIAS; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24 
25 
26 /**
27  @example ExampleProgressSemaphore.cpp
28  @relates ProgressSemaphore,ProgressSemaphorePool
29  @brief Example for ProgressSemaphore registering in ProgressSemaphorePool
30  @ingroup g_examples
31  @author woelk
32 */
33 
34 #include <Base/Common/ProgressSemaphorePool.hh>
35 #include <Base/Common/ProgressSemaphore.hh>
36 #include <iostream>
37 
38 using namespace BIAS;
39 using namespace std;
40 
41 int main(int argc, char *argv[])
42 {
44 
45  SharedPtr<ProgressSemaphore> foo= SP->Register("foo");
46  SharedPtr<ProgressSemaphore> bar= SP->Register("bar");
47 
48  vector<string> allnames;
49 
50  SP->GetAllSemaphoreNames(allnames);
51  for (unsigned int i=0;i<allnames.size();i++)
52  cout <<"registered: "<<allnames[i]<<endl;
53 
54  foo->SetNumSteps(100);
55  foo->SetCurrentStep(10);
56  cout <<"foo has finished: "<<foo->GetProgress()<<endl;
57 
58  return 0;
59 }
float GetProgress()
returns current progress state in standard intervall
pointer with reference count and automatic deletion
Definition: SharedPtr.hh:50
void SetNumSteps(unsigned int steps)
Set the number of steps to progress will need to complete.
void SetCurrentStep(unsigned int CurrentStep)
Set the current step.
static T * GetInstance()
Definition: Singleton.hh:152
void GetAllSemaphoreNames(std::vector< std::string > &names)
SharedPtr< ProgressSemaphore > Register(const std::string &name)