blob: f6d9434fff1b86e79bfff5be77f36afb25bfb667 [file] [log] [blame]
rspangler@google.com49fdf182009-10-10 00:57:34 +00001// Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Gilad Arnoldcf175a02014-07-10 16:48:47 -07005#ifndef UPDATE_ENGINE_ACTION_PIPE_H_
6#define UPDATE_ENGINE_ACTION_PIPE_H_
rspangler@google.com49fdf182009-10-10 00:57:34 +00007
8#include <stdio.h>
Alex Deymobc91a272014-05-20 16:45:33 -07009
rspangler@google.com49fdf182009-10-10 00:57:34 +000010#include <map>
Alex Deymobc91a272014-05-20 16:45:33 -070011#include <memory>
rspangler@google.com49fdf182009-10-10 00:57:34 +000012#include <string>
Alex Deymobc91a272014-05-20 16:45:33 -070013
14#include <base/basictypes.h>
15#include <base/logging.h>
rspangler@google.com49fdf182009-10-10 00:57:34 +000016
17// The structure of these classes (Action, ActionPipe, ActionProcessor, etc.)
18// is based on the KSAction* classes from the Google Update Engine code at
19// http://code.google.com/p/update-engine/ . The author of this file sends
20// a big thanks to that team for their high quality design, implementation,
21// and documentation.
22
23// This class serves as a temporary holding area for an object passed out
24// from one Action and into another Action. It's templated so that it may
25// contain any type of object that an Action outputs/inputs. Actions
26// cannot be bonded (i.e., connected with a pipe) if their output/input
27// object types differ (a compiler error will result).
28//
29// An ActionPipe is generally created with the Bond() method and owned by
30// the two Action objects. a shared_ptr is used so that when the last Action
31// pointing to an ActionPipe dies, the ActionPipe dies, too.
32
rspangler@google.com49fdf182009-10-10 00:57:34 +000033namespace chromeos_update_engine {
34
35// Used by Actions an InputObjectType or OutputObjectType to specify that
36// for that type, no object is taken/given.
37class NoneType {};
38
39template<typename T>
40class Action;
41
42template<typename ObjectType>
43class ActionPipe {
44 public:
Darin Petkovfbb40092010-07-29 17:05:50 -070045 virtual ~ActionPipe() {}
rspangler@google.com49fdf182009-10-10 00:57:34 +000046
47 // This should be called by an Action on its input pipe.
48 // Returns a reference to the stored object.
49 const ObjectType& contents() const { return contents_; }
50
51 // This should be called by an Action on its output pipe.
52 // Stores a copy of the passed object in this pipe.
53 void set_contents(const ObjectType& contents) { contents_ = contents; }
54
55 // Bonds two Actions together with a new ActionPipe. The ActionPipe is
56 // jointly owned by the two Actions and will be automatically destroyed
57 // when the last Action is destroyed.
58 template<typename FromAction, typename ToAction>
59 static void Bond(FromAction* from, ToAction* to) {
Alex Deymobc91a272014-05-20 16:45:33 -070060 std::shared_ptr<ActionPipe<ObjectType> > pipe(
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -080061 new ActionPipe<ObjectType>);
rspangler@google.com49fdf182009-10-10 00:57:34 +000062 from->set_out_pipe(pipe);
63
64 to->set_in_pipe(pipe); // If you get an error on this line, then
65 // it most likely means that the From object's OutputObjectType is
66 // different from the To object's InputObjectType.
67 }
68
69 private:
70 ObjectType contents_;
71
72 // The ctor is private. This is because this class should construct itself
73 // via the static Bond() method.
74 ActionPipe() {}
75 DISALLOW_COPY_AND_ASSIGN(ActionPipe);
76};
77
78// Utility function
79template<typename FromAction, typename ToAction>
80void BondActions(FromAction* from, ToAction* to) {
81 // TODO(adlr): find something like this that the compiler accepts:
82 // COMPILE_ASSERT(typeof(typename FromAction::OutputObjectType) ==
83 // typeof(typename ToAction::InputObjectType),
84 // FromAction_OutputObjectType_doesnt_match_ToAction_InputObjectType);
85 ActionPipe<typename FromAction::OutputObjectType>::Bond(from, to);
86}
87
88} // namespace chromeos_update_engine
89
Gilad Arnoldcf175a02014-07-10 16:48:47 -070090#endif // UPDATE_ENGINE_ACTION_PIPE_H_