@ -25,7 +25,7 @@ namespace rocksdb {
class Status {
class Status {
public :
public :
// Create a success status.
// Create a success status.
Status ( ) : state_ ( nullptr ) { }
Status ( ) : code_ ( kOk ) , state_ ( nullptr ) { }
~ Status ( ) { delete [ ] state_ ; }
~ Status ( ) { delete [ ] state_ ; }
// Copy the specified status.
// Copy the specified status.
@ -39,6 +39,10 @@ class Status {
static Status NotFound ( const Slice & msg , const Slice & msg2 = Slice ( ) ) {
static Status NotFound ( const Slice & msg , const Slice & msg2 = Slice ( ) ) {
return Status ( kNotFound , msg , msg2 ) ;
return Status ( kNotFound , msg , msg2 ) ;
}
}
// Fast path for not found without malloc;
static Status NotFound ( ) {
return Status ( kNotFound ) ;
}
static Status Corruption ( const Slice & msg , const Slice & msg2 = Slice ( ) ) {
static Status Corruption ( const Slice & msg , const Slice & msg2 = Slice ( ) ) {
return Status ( kCorruption , msg , msg2 ) ;
return Status ( kCorruption , msg , msg2 ) ;
}
}
@ -59,7 +63,7 @@ class Status {
}
}
// Returns true iff the status indicates success.
// Returns true iff the status indicates success.
bool ok ( ) const { return ( state_ = = nullptr ) ; }
bool ok ( ) const { return code ( ) = = kOk ; }
// Returns true iff the status indicates a NotFound error.
// Returns true iff the status indicates a NotFound error.
bool IsNotFound ( ) const { return code ( ) = = kNotFound ; }
bool IsNotFound ( ) const { return code ( ) = = kNotFound ; }
@ -87,13 +91,6 @@ class Status {
std : : string ToString ( ) const ;
std : : string ToString ( ) const ;
private :
private :
// OK status has a nullptr state_. Otherwise, state_ is a new[] array
// of the following form:
// state_[0..3] == length of message
// state_[4] == code
// state_[5..] == message
const char * state_ ;
enum Code {
enum Code {
kOk = 0 ,
kOk = 0 ,
kNotFound = 1 ,
kNotFound = 1 ,
@ -105,20 +102,30 @@ class Status {
kIncomplete = 7
kIncomplete = 7
} ;
} ;
// A nullptr state_ (which is always the case for OK) means the message
// is empty.
// of the following form:
// state_[0..3] == length of message
// state_[4..] == message
Code code_ ;
const char * state_ ;
Code code ( ) const {
Code code ( ) const {
return ( state_ = = nullptr ) ? kOk : static_cast < Code > ( state_ [ 4 ] ) ;
return c ode_;
}
}
explicit Status ( Code code ) : code_ ( code ) , state_ ( nullptr ) { }
Status ( Code code , const Slice & msg , const Slice & msg2 ) ;
Status ( Code code , const Slice & msg , const Slice & msg2 ) ;
static const char * CopyState ( const char * s ) ;
static const char * CopyState ( const char * s ) ;
} ;
} ;
inline Status : : Status ( const Status & s ) {
inline Status : : Status ( const Status & s ) {
code_ = s . code_ ;
state_ = ( s . state_ = = nullptr ) ? nullptr : CopyState ( s . state_ ) ;
state_ = ( s . state_ = = nullptr ) ? nullptr : CopyState ( s . state_ ) ;
}
}
inline void Status : : operator = ( const Status & s ) {
inline void Status : : operator = ( const Status & s ) {
// The following condition catches both aliasing (when this == &s),
// The following condition catches both aliasing (when this == &s),
// and the common case where both s and *this are ok.
// and the common case where both s and *this are ok.
code_ = s . code_ ;
if ( state_ ! = s . state_ ) {
if ( state_ ! = s . state_ ) {
delete [ ] state_ ;
delete [ ] state_ ;
state_ = ( s . state_ = = nullptr ) ? nullptr : CopyState ( s . state_ ) ;
state_ = ( s . state_ = = nullptr ) ? nullptr : CopyState ( s . state_ ) ;