Blame vdo/base/compressionStateInternals.h

Packit Service 310c69
/*
Packit Service 310c69
 * Copyright (c) 2020 Red Hat, Inc.
Packit Service 310c69
 *
Packit Service 310c69
 * This program is free software; you can redistribute it and/or
Packit Service 310c69
 * modify it under the terms of the GNU General Public License
Packit Service 310c69
 * as published by the Free Software Foundation; either version 2
Packit Service 310c69
 * of the License, or (at your option) any later version.
Packit Service 310c69
 * 
Packit Service 310c69
 * This program is distributed in the hope that it will be useful,
Packit Service 310c69
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 310c69
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service 310c69
 * GNU General Public License for more details.
Packit Service 310c69
 * 
Packit Service 310c69
 * You should have received a copy of the GNU General Public License
Packit Service 310c69
 * along with this program; if not, write to the Free Software
Packit Service 310c69
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit Service 310c69
 * 02110-1301, USA. 
Packit Service 310c69
 *
Packit Service 310c69
 * $Id: //eng/vdo-releases/aluminum/src/c++/vdo/base/compressionStateInternals.h#1 $
Packit Service 310c69
 */
Packit Service 310c69
Packit Service 310c69
#ifndef COMPRESSION_STATE_INTERNALS_H
Packit Service 310c69
#define COMPRESSION_STATE_INTERNALS_H
Packit Service 310c69
Packit Service 310c69
#include "compressionState.h"
Packit Service 310c69
Packit Service 310c69
/**
Packit Service 310c69
 * Set the compression state of a DataVIO (exposed for testing).
Packit Service 310c69
 *
Packit Service 310c69
 * @param dataVIO   The DataVIO whose compression state is to be set
Packit Service 310c69
 * @param state     The expected current state of the DataVIO
Packit Service 310c69
 * @param newState  The state to set
Packit Service 310c69
 *
Packit Service 310c69
 * @return true if the new state was set, false if the DataVIO's
Packit Service 310c69
 *         compression state did not match the expected state, and so was
Packit Service 310c69
 *         left unchanged
Packit Service 310c69
 **/
Packit Service 310c69
bool setCompressionState(DataVIO             *dataVIO,
Packit Service 310c69
                         VIOCompressionState  state,
Packit Service 310c69
                         VIOCompressionState  newState);
Packit Service 310c69
Packit Service 310c69
#endif /* COMPRESSION_STATE_H */