blob: 769704327f7b41aa0a2f121220a142bbc42e537b [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
adlr@google.comc98a7ed2009-12-04 18:54:03 +00005#ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_PIPE_H__
6#define CHROMEOS_PLATFORM_UPDATE_ENGINE_PIPE_H__
rspangler@google.com49fdf182009-10-10 00:57:34 +00007
8#include <stdio.h>
9#include <iostream>
10#include <map>
11#include <string>
12#include <tr1/memory>
rspangler@google.com49fdf182009-10-10 00:57:34 +000013#include "base/basictypes.h"
adlr@google.comc98a7ed2009-12-04 18:54:03 +000014#include "chromeos/obsolete_logging.h"
rspangler@google.com49fdf182009-10-10 00:57:34 +000015
16// The structure of these classes (Action, ActionPipe, ActionProcessor, etc.)
17// is based on the KSAction* classes from the Google Update Engine code at
18// http://code.google.com/p/update-engine/ . The author of this file sends
19// a big thanks to that team for their high quality design, implementation,
20// and documentation.
21
22// This class serves as a temporary holding area for an object passed out
23// from one Action and into another Action. It's templated so that it may
24// contain any type of object that an Action outputs/inputs. Actions
25// cannot be bonded (i.e., connected with a pipe) if their output/input
26// object types differ (a compiler error will result).
27//
28// An ActionPipe is generally created with the Bond() method and owned by
29// the two Action objects. a shared_ptr is used so that when the last Action
30// pointing to an ActionPipe dies, the ActionPipe dies, too.
31
rspangler@google.com49fdf182009-10-10 00:57:34 +000032namespace chromeos_update_engine {
33
34// Used by Actions an InputObjectType or OutputObjectType to specify that
35// for that type, no object is taken/given.
36class NoneType {};
37
38template<typename T>
39class Action;
40
41template<typename ObjectType>
42class ActionPipe {
43 public:
44 virtual ~ActionPipe() {
45 LOG(INFO) << "ActionPipe died";
46 }
47
48 // This should be called by an Action on its input pipe.
49 // Returns a reference to the stored object.
50 const ObjectType& contents() const { return contents_; }
51
52 // This should be called by an Action on its output pipe.
53 // Stores a copy of the passed object in this pipe.
54 void set_contents(const ObjectType& contents) { contents_ = contents; }
55
56 // Bonds two Actions together with a new ActionPipe. The ActionPipe is
57 // jointly owned by the two Actions and will be automatically destroyed
58 // when the last Action is destroyed.
59 template<typename FromAction, typename ToAction>
60 static void Bond(FromAction* from, ToAction* to) {
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -080061 std::tr1::shared_ptr<ActionPipe<ObjectType> > pipe(
62 new ActionPipe<ObjectType>);
rspangler@google.com49fdf182009-10-10 00:57:34 +000063 from->set_out_pipe(pipe);
64
65 to->set_in_pipe(pipe); // If you get an error on this line, then
66 // it most likely means that the From object's OutputObjectType is
67 // different from the To object's InputObjectType.
68 }
69
70 private:
71 ObjectType contents_;
72
73 // The ctor is private. This is because this class should construct itself
74 // via the static Bond() method.
75 ActionPipe() {}
76 DISALLOW_COPY_AND_ASSIGN(ActionPipe);
77};
78
79// Utility function
80template<typename FromAction, typename ToAction>
81void BondActions(FromAction* from, ToAction* to) {
82 // TODO(adlr): find something like this that the compiler accepts:
83 // COMPILE_ASSERT(typeof(typename FromAction::OutputObjectType) ==
84 // typeof(typename ToAction::InputObjectType),
85 // FromAction_OutputObjectType_doesnt_match_ToAction_InputObjectType);
86 ActionPipe<typename FromAction::OutputObjectType>::Bond(from, to);
87}
88
89} // namespace chromeos_update_engine
90
adlr@google.comc98a7ed2009-12-04 18:54:03 +000091#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_PIPE_H__