All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.cache.internal.filelock.Version1LockStateSerializer Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2013 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.gradle.cache.internal.filelock;

import org.gradle.cache.internal.FileLock;

import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;

/**
 * An older, cross-version state info format.
 */
public class Version1LockStateSerializer implements LockStateSerializer {
    public int getSize() {
        return 1;
    }

    public byte getVersion() {
        return 1;
    }

    public LockState createInitialState() {
        return new DirtyFlagLockState(true);
    }

    public void write(DataOutput dataOutput, LockState lockState) throws IOException {
        DirtyFlagLockState state = (DirtyFlagLockState) lockState;
        dataOutput.writeBoolean(!state.dirty);
    }

    public LockState read(DataInput dataInput) throws IOException {
        return new DirtyFlagLockState(!dataInput.readBoolean());
    }

    private static class DirtyFlagLockState implements LockState {
        private final boolean dirty;

        private DirtyFlagLockState(boolean dirty) {
            this.dirty = dirty;
        }

        public boolean isDirty() {
            return dirty;
        }

        public boolean canDetectChanges() {
            return false;
        }

        public boolean isInInitialState() {
            return false;
        }

        public LockState beforeUpdate() {
            return new DirtyFlagLockState(true);
        }

        public LockState completeUpdate() {
            return new DirtyFlagLockState(false);
        }

        public boolean hasBeenUpdatedSince(FileLock.State state) {
            throw new UnsupportedOperationException("This protocol version does not support detecting changes by other processes.");
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy