1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
// The authors have released ID3Lib as Public Domain (PD) and claim no copyright,
// patent or other intellectual property protection in this work. This means that
// it may be modified, redistributed and used in commercial and non-commercial
// software and hardware without restrictions. ID3Lib is distributed on an "AS IS"
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
//
// The ID3Lib authors encourage improvements and optimisations to be sent to the
// ID3Lib coordinator, currently Dirk Mahoney (dirk@id3.org). Approved
// submissions may be altered, and will be included and released under these terms.
//
// Mon Nov 23 18:34:01 1998
#include <string.h>
#include "id3_tag.h"
bool exists ( char *name )
{
bool doesExist = false;
FILE *in;
if ( name )
{
if ( in = fopen ( name, "rb" ) )
{
doesExist = true;
fclose ( in );
}
}
else
ID3_THROW ( ID3E_NoData );
return doesExist;
}
void ID3_Tag::OpenLinkedFile ( void )
{
char *mode = "rb+";
if ( ! exists ( fileName ) )
mode = "wb+";
if ( fileHandle = fopen ( fileName, mode ) )
{
fseek ( fileHandle, 0, SEEK_END );
fileSize = ftell ( fileHandle );
fseek ( fileHandle, 0, SEEK_SET );
}
return;
}
luint ID3_Tag::Link ( char *fileInfo )
{
luint posn = 0;
if ( fileInfo )
{
strncpy ( fileName, fileInfo, 256 );
// if we were attached to some other file
// file then abort
if ( fileHandle )
ID3_THROW ( ID3E_TagAlreadyAttached );
GenerateTempName();
OpenLinkedFile();
oldTagSize = ParseFromHandle();
if ( oldTagSize )
oldTagSize += ID3_TAGHEADERSIZE;
fileSize -= oldTagSize;
posn = oldTagSize;
}
else
ID3_THROW ( ID3E_NoData );
return posn;
}
void ID3_Tag::Update ( void )
{
if ( HasChanged() )
RenderToHandle();
return;
}
void ID3_Tag::Strip ( bool v1Also )
{
FILE *tempOut;
if ( strlen ( tempName ) > 0 )
{
if ( tempOut = fopen ( tempName, "wb" ) )
{
uchar *buffer2;
fseek ( fileHandle, oldTagSize, SEEK_SET );
if ( buffer2 = new uchar[ BUFF_SIZE ] )
{
bool done = false;
luint bytesCopied = 0;
luint bytesToCopy = fileSize;
int i;
if ( hasV1Tag && v1Also )
bytesToCopy -= extraBytes;
while ( ! feof ( fileHandle ) && ! done )
{
luint size = BUFF_SIZE;
if ( ( bytesToCopy - bytesCopied ) < BUFF_SIZE )
{
size = bytesToCopy - bytesCopied;
done = true;
}
if ( i = fread ( buffer2, 1, size, fileHandle ) )
fwrite ( buffer2, 1, i, tempOut );
bytesCopied += i;
}
delete[] buffer2;
}
fclose ( tempOut );
fclose ( fileHandle );
remove ( fileName );
rename ( tempName, fileName );
OpenLinkedFile();
oldTagSize = 0;
extraBytes = 0;
if ( v1Also )
hasV1Tag = false;
hasChanged = true;
}
}
return;
}
|