2004-09-01 22:55:40 +00:00
|
|
|
//===- llvm/Support/SlowOperationInformer.h - Keep user informed *- C++ -*-===//
|
2005-04-21 20:48:15 +00:00
|
|
|
//
|
2003-12-31 05:40:02 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 20:48:15 +00:00
|
|
|
//
|
2003-12-31 05:40:02 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines a simple object which can be used to let the user know what
|
2003-12-31 05:45:16 +00:00
|
|
|
// is going on when a slow operation is happening, and gives them the ability to
|
|
|
|
// cancel it. Potentially slow operations can stack allocate one of these
|
2003-12-31 05:40:02 +00:00
|
|
|
// objects, and periodically call the "progress" method to update the progress
|
2003-12-31 05:45:16 +00:00
|
|
|
// bar. If the operation takes more than 1 second to complete, the progress bar
|
|
|
|
// is automatically shown and updated. As such, the slow operation should not
|
|
|
|
// print stuff to the screen, and should not be confused if an extra line
|
|
|
|
// appears on the screen (ie, the cursor should be at the start of the line).
|
2003-12-31 05:40:02 +00:00
|
|
|
//
|
|
|
|
// If the user presses CTRL-C during the operation, the next invocation of the
|
2006-07-06 22:34:06 +00:00
|
|
|
// progress method return true indicating that the operation was cancelled.
|
2003-12-31 05:40:02 +00:00
|
|
|
//
|
|
|
|
// Because SlowOperationInformers fiddle around with signals, they cannot be
|
2003-12-31 05:45:16 +00:00
|
|
|
// nested, and interact poorly with threads. The SIGALRM handler is set back to
|
|
|
|
// SIGDFL, but the SIGINT signal handler is restored when the
|
|
|
|
// SlowOperationInformer is destroyed.
|
2003-12-31 05:40:02 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-09-01 22:55:40 +00:00
|
|
|
#ifndef LLVM_SUPPORT_SLOW_OPERATION_INFORMER_H
|
|
|
|
#define LLVM_SUPPORT_SLOW_OPERATION_INFORMER_H
|
2003-12-31 05:40:02 +00:00
|
|
|
|
|
|
|
#include <string>
|
2003-12-31 10:20:38 +00:00
|
|
|
#include <cassert>
|
2009-10-26 01:35:46 +00:00
|
|
|
#include "llvm/System/DataTypes.h"
|
2003-12-31 05:40:02 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class SlowOperationInformer {
|
|
|
|
std::string OperationName;
|
|
|
|
unsigned LastPrintAmount;
|
2005-04-21 20:48:15 +00:00
|
|
|
|
2003-12-31 05:40:02 +00:00
|
|
|
SlowOperationInformer(const SlowOperationInformer&); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const SlowOperationInformer&); // DO NOT IMPLEMENT
|
|
|
|
public:
|
2010-04-02 14:57:49 +00:00
|
|
|
explicit SlowOperationInformer(const std::string &Name);
|
2003-12-31 05:40:02 +00:00
|
|
|
~SlowOperationInformer();
|
2005-04-21 20:48:15 +00:00
|
|
|
|
2006-07-06 22:34:06 +00:00
|
|
|
/// progress - Clients should periodically call this method when they can
|
|
|
|
/// handle cancellation. The Amount variable should indicate how far
|
2003-12-31 05:40:02 +00:00
|
|
|
/// along the operation is, given in 1/10ths of a percent (in other words,
|
2006-07-06 22:34:06 +00:00
|
|
|
/// Amount should range from 0 to 1000). If the user cancels the operation,
|
|
|
|
/// this returns true, false otherwise.
|
|
|
|
bool progress(unsigned Amount);
|
2003-12-31 10:20:38 +00:00
|
|
|
|
|
|
|
/// progress - Same as the method above, but this performs the division for
|
|
|
|
/// you, and helps you avoid overflow if you are dealing with largish
|
|
|
|
/// numbers.
|
2006-07-06 22:34:06 +00:00
|
|
|
bool progress(unsigned Current, unsigned Maximum) {
|
2003-12-31 10:20:38 +00:00
|
|
|
assert(Maximum != 0 &&
|
|
|
|
"Shouldn't be doing work if there is nothing to do!");
|
2006-07-06 22:34:06 +00:00
|
|
|
return progress(Current*uint64_t(1000UL)/Maximum);
|
2003-12-31 10:20:38 +00:00
|
|
|
}
|
2003-12-31 05:40:02 +00:00
|
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif /* SLOW_OPERATION_INFORMER_H */
|