1 | /*
|
---|
2 | * FragmentResult.hpp
|
---|
3 | *
|
---|
4 | * Created on: Oct 19, 2011
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef FRAGMENTRESULT_HPP_
|
---|
9 | #define FRAGMENTRESULT_HPP_
|
---|
10 |
|
---|
11 | // include config.h
|
---|
12 | #ifdef HAVE_CONFIG_H
|
---|
13 | #include <config.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 |
|
---|
17 | #include <string>
|
---|
18 | #include <vector>
|
---|
19 |
|
---|
20 | #include <boost/shared_ptr.hpp>
|
---|
21 | #include <boost/serialization/array.hpp>
|
---|
22 | #include <boost/serialization/shared_ptr.hpp>
|
---|
23 |
|
---|
24 | #include "JobMarket/JobId.hpp"
|
---|
25 | #include "JobMarket/types.hpp"
|
---|
26 |
|
---|
27 | class FragmentQueueTest;
|
---|
28 | class FragmentResultTest;
|
---|
29 |
|
---|
30 | /** This class contains the result to a specific FragmentJob.
|
---|
31 | *
|
---|
32 | */
|
---|
33 | class FragmentResult : public JobId
|
---|
34 | {
|
---|
35 | //!> allow FragmentQueue unit test access
|
---|
36 | friend class FragmentQueueTest;
|
---|
37 | //!> allow own unit test access
|
---|
38 | friend class FragmentResultTest;
|
---|
39 | public:
|
---|
40 | typedef boost::shared_ptr<FragmentResult> ptr;
|
---|
41 |
|
---|
42 | FragmentResult(const JobId_t id);
|
---|
43 | FragmentResult(const JobId_t id, const std::string &_result);
|
---|
44 | FragmentResult(const FragmentResult &other);
|
---|
45 | ~FragmentResult();
|
---|
46 |
|
---|
47 | FragmentResult& operator=(const FragmentResult &other);
|
---|
48 | bool operator==(const FragmentResult &other) const;
|
---|
49 | bool operator!=(const FragmentResult &other) const
|
---|
50 | { return !(*this == other); }
|
---|
51 |
|
---|
52 | //!> result
|
---|
53 | std::string result;
|
---|
54 |
|
---|
55 | //!> exit flag
|
---|
56 | int exitflag;
|
---|
57 |
|
---|
58 | //!> time needed for Work()
|
---|
59 | double time_Work;
|
---|
60 |
|
---|
61 | private:
|
---|
62 | friend class boost::serialization::access;
|
---|
63 | // this is new since boost 1.58 when deserializing vector<FragmentResult>
|
---|
64 | friend class std::vector<FragmentResult, std::allocator<FragmentResult> >;
|
---|
65 |
|
---|
66 | /// private default constructor for serialization only.
|
---|
67 | FragmentResult();
|
---|
68 |
|
---|
69 | // serialization
|
---|
70 | template <typename Archive>
|
---|
71 | void serialize(Archive& ar, const unsigned int version)
|
---|
72 | {
|
---|
73 | ar & boost::serialization::base_object<JobId>(*this);
|
---|
74 | ar & result;
|
---|
75 | ar & exitflag;
|
---|
76 | ar & time_Work;
|
---|
77 | }
|
---|
78 | };
|
---|
79 |
|
---|
80 |
|
---|
81 | #endif /* FRAGMENTRESULT_HPP_ */
|
---|