nom.tam.fits.utilities.FitsLineAppender Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nom-tam-fits Show documentation
Show all versions of nom-tam-fits Show documentation
Java library for reading and writing FITS files. FITS, the Flexible Image Transport System, is the format commonly used in the archiving and transport of astronomical data.
package nom.tam.fits.utilities;
import nom.tam.fits.HeaderCard;
/*
* #%L
* nom.tam FITS library
* %%
* Copyright (C) 1996 - 2015 nom-tam-fits
* %%
* This is free and unencumbered software released into the public domain.
*
* Anyone is free to copy, modify, publish, use, compile, sell, or
* distribute this software, either in source code form or as a compiled
* binary, for any purpose, commercial or non-commercial, and by any
* means.
*
* In jurisdictions that recognize copyright laws, the author or authors
* of this software dedicate any and all copyright interest in the
* software to the public domain. We make this dedication for the benefit
* of the public at large and to the detriment of our heirs and
* successors. We intend this dedication to be an overt act of
* relinquishment in perpetuity of all present and future rights to this
* software under copyright law.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
* #L%
*/
/**
* This class handles the writing of a card line. It keeps track of the position
* in the line and will limit it to 80 characters. A write will never cross the
* line border but a write when the line is at position 80 will start a new
* line.
*
* @author Richard van Nieuwenhoven
*/
public class FitsLineAppender {
/**
* A String of 80 spaces to fill up fits card space.
*/
private static final String FULL_CARD_AS_SPACES = String.format("%80s", "");
/**
* the underlying StringBuilder to which the writing of fits lines happens.
*/
private final StringBuilder buffer;
/**
* the char current position in the line.
*/
private int charCount;
/**
* create a new FitsLineAppender that will have space allocated for one
* line.
*/
public FitsLineAppender() {
this.buffer = new StringBuilder(HeaderCard.FITS_HEADER_CARD_SIZE);
}
/**
* append a character to the fits line.
*
* @param character
* the character to append to the line.
*/
public void append(char character) {
this.buffer.append(character);
this.charCount++;
}
/**
* Append a sub-string to this line.
*
* @param stringValue
* the sub string to append.
*/
public void append(FitsSubString stringValue) {
stringValue.appendTo(this.buffer);
this.charCount += stringValue.length();
}
/**
* append a string to the fits line, but limit the append to the line
* length. rest of the string will be silently truncated.
*
* @param string
* the string to append
*/
public void append(String string) {
this.charCount = this.charCount % HeaderCard.FITS_HEADER_CARD_SIZE;
int newLength = this.charCount + string.length();
if (newLength > HeaderCard.FITS_HEADER_CARD_SIZE) {
this.buffer.append(string, 0, HeaderCard.FITS_HEADER_CARD_SIZE - this.charCount);
this.charCount = 0;
} else {
this.charCount = newLength;
this.buffer.append(string);
}
}
/**
* append a string to the buffer, replacing all occurrences of a character
* with an other.
*
* @param key
* the string to write
* @param toReplace
* the character to replace
* @param with
* the character to replace the toReplace character with.
*/
public void appendReplacing(String key, char toReplace, char with) {
int size = key.length();
for (int index = 0; index < size; index++) {
char character = key.charAt(index);
if (character == toReplace) {
this.buffer.append(with);
} else {
this.buffer.append(character);
}
}
this.charCount += size;
}
/**
* append a number of spaces to the line, limited to the line length! This
* will only be done if the line is already started, so attention when a
* line is still empty this method will have no effect on empty lines.
*
* @param count
* the number of spaces to write.
*/
public void appendSpacesTo(int count) {
this.charCount = this.charCount % HeaderCard.FITS_HEADER_CARD_SIZE;
if (this.charCount != 0) {
int spaces = count - this.charCount;
if (spaces > 0) {
this.buffer.append(FitsLineAppender.FULL_CARD_AS_SPACES, 0, spaces);
this.charCount += spaces;
}
}
}
/**
* fill the rest of current line with spaces and start a new fits line.
*/
public void completeLine() {
int count = HeaderCard.FITS_HEADER_CARD_SIZE - this.charCount % HeaderCard.FITS_HEADER_CARD_SIZE;
if (count < HeaderCard.FITS_HEADER_CARD_SIZE) {
this.buffer.append(FitsLineAppender.FULL_CARD_AS_SPACES, 0, count);
}
// line completed start with 0;
this.charCount = 0;
}
/**
* @return the character position in the current line.
*/
public int length() {
this.charCount = this.charCount % HeaderCard.FITS_HEADER_CARD_SIZE;
return this.charCount;
}
/**
* @return the number of characters still available in the current fits
* line.
*/
public int spaceLeftInLine() {
this.charCount = this.charCount % HeaderCard.FITS_HEADER_CARD_SIZE;
return HeaderCard.FITS_HEADER_CARD_SIZE - this.charCount;
}
@Override
public String toString() {
return this.buffer.toString();
}
public void append(String key, int start, int end) {
this.buffer.append(key, start, end);
this.charCount += end - start;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy