Action.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (C) 2015 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef _MEMORY_REPLAY_ACTION_H
  17. #define _MEMORY_REPLAY_ACTION_H
  18. #include <stdint.h>
  19. class Pointers;
  20. class Action {
  21. public:
  22. Action() {}
  23. virtual ~Action() {}
  24. virtual uint64_t Execute(Pointers* pointers) = 0;
  25. bool IsError() { return is_error_; };
  26. virtual bool EndThread() { return false; }
  27. virtual bool DoesFree() { return false; }
  28. static size_t MaxActionSize();
  29. static Action* CreateAction(uintptr_t key_pointer, const char* type,
  30. const char* line, void* action_memory);
  31. protected:
  32. bool is_error_ = false;
  33. };
  34. #endif // _MEMORY_REPLAY_ACTION_H