-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathFileSequenceFunctions.cpp
378 lines (322 loc) · 11.9 KB
/
FileSequenceFunctions.cpp
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
//////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2009-2010, Image Engine Design Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// * Neither the name of Image Engine Design nor the names of any
// other contributors to this software may be used to endorse or
// promote products derived from this software without specific prior
// written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
//////////////////////////////////////////////////////////////////////////
#include "IECore/FileSequenceFunctions.h"
#include "IECore/CompoundFrameList.h"
#include "IECore/EmptyFrameList.h"
#include "IECore/Exception.h"
#include "IECore/FileSequence.h"
#include "IECore/FrameRange.h"
#include "IECore/ReversedFrameList.h"
#include "boost/algorithm/string.hpp"
#include "boost/filesystem/operations.hpp"
#include "boost/filesystem/path.hpp"
#include "boost/format.hpp"
#include "boost/lexical_cast.hpp"
#include "boost/regex.hpp"
#include <boost/version.hpp>
#if BOOST_VERSION >= 108500
#include <boost/filesystem/directory.hpp>
#else
#include <boost/filesystem/convenience.hpp>
#endif
#include <algorithm>
#include <cassert>
#include <math.h>
#if BOOST_VERSION < 103400
// Boost versions prior to 1.34.0 performed unwanted file name checking. Disabling.
static bool boostFilesystemDefaultNameCheckOverride()
{
boost::filesystem::path::default_name_check( boost::filesystem::no_check );
return true;
}
static bool boostFilesystemDefaultNameCheckOverrideResult = boostFilesystemDefaultNameCheckOverride();
#endif
#if BOOST_VERSION < 104400
// Boost 1.44.0 introduced Filesystem v3, which we use by defining BOOST_FILESYSTEM_VERSION=3 via
// the build process. Prior versions of boost didn't have this version, so we need this define
// to help write code suitable for both.
#define PATH_TO_STRING filename()
#else
#define PATH_TO_STRING filename().string()
#endif
using namespace IECore;
void IECore::findSequences( const std::vector< std::string > &names, std::vector< FileSequencePtr > &sequences, size_t minSequenceSize )
{
sequences.clear();
/// this matches names of the form $prefix$frameNumber$suffix
/// placing each of those in a group of the resulting match.
/// both $prefix and $suffix may be the empty string and $frameNumber
/// may be preceded by a minus sign.
/// It also matches file extensions with 3 or 4 characters that contain numbers (for example: CR2, MP3 )
boost::regex matchExpression( std::string( "^([^#]*?)(-?[0-9]+)([^0-9#]*|[^0-9#]*\\.[a-zA-Z]{2,3}[0-9])$" ) );
/// build a mapping from ($prefix, $suffix) to a list of $frameNumbers
typedef std::vector< std::string > Frames;
typedef std::map< std::pair< std::string, std::string >, Frames > SequenceMap;
SequenceMap sequenceMap;
for ( std::vector< std::string >::const_iterator it = names.begin(); it != names.end(); ++it )
{
boost::smatch matches;
if ( boost::regex_match( *it, matches, matchExpression ) )
{
sequenceMap[
SequenceMap::key_type(
std::string( matches[1].first, matches[1].second ),
std::string( matches[3].first, matches[3].second )
)
].push_back( std::string( matches[2].first, matches[2].second ) );
}
}
for ( SequenceMap::const_iterator it = sequenceMap.begin(); it != sequenceMap.end(); ++it )
{
const SequenceMap::key_type &fixes = it->first;
const Frames &frames = it->second;
// todo: could be more efficient by writing a custom comparison function that uses indexes
// into the const Frames vector rather than duplicating the strings and sorting them directly
Frames sortedFrames = frames;
std::sort( sortedFrames.begin(), sortedFrames.end() );
/// in diabolical cases the elements of frames may not all have the same padding
/// so we'll sort them out into padded and unpadded frame sequences here, by creating
/// a map of padding->list of frames. unpadded things will be considered to have a padding
/// of 1.
typedef std::vector< FrameList::Frame > NumericFrames;
typedef std::map< unsigned int, NumericFrames > PaddingToFramesMap;
PaddingToFramesMap paddingToFrames;
for ( Frames::const_iterator fIt = sortedFrames.begin(); fIt != sortedFrames.end(); ++fIt )
{
std::string frame = *fIt;
int sign = 1;
assert( frame.size() );
if ( *frame.begin() == '-' )
{
frame = frame.substr( 1, frame.size() - 1 );
sign = -1;
}
if ( *frame.begin() == '0' || paddingToFrames.find( frame.size() ) != paddingToFrames.end() )
{
paddingToFrames[ frame.size() ].push_back( sign * boost::lexical_cast<FrameList::Frame>( frame ) );
}
else
{
paddingToFrames[ 1 ].push_back( sign * boost::lexical_cast<FrameList::Frame>( frame ) );
}
}
for ( PaddingToFramesMap::iterator pIt = paddingToFrames.begin(); pIt != paddingToFrames.end(); ++pIt )
{
const PaddingToFramesMap::key_type &padding = pIt->first;
NumericFrames &numericFrames = pIt->second;
std::sort( numericFrames.begin(), numericFrames.end() );
FrameListPtr frameList = frameListFromList( numericFrames );
std::vector< FrameList::Frame > expandedFrameList;
frameList->asList( expandedFrameList );
/// remove any sequences with less than the given minimum.
if ( expandedFrameList.size() >= minSequenceSize )
{
std::string frameTemplate;
for ( PaddingToFramesMap::key_type i = 0; i < padding; i++ )
{
frameTemplate += "#";
}
sequences.push_back(
new FileSequence(
fixes.first + frameTemplate + fixes.second,
frameList
)
);
}
}
}
}
void IECore::findSequences( const std::vector< std::string > &names, std::vector< FileSequencePtr > &sequences )
{
/// ignore any sequences with less than two files
findSequences( names, sequences, 2 );
}
void IECore::ls( const std::string &path, std::vector< FileSequencePtr > &sequences, size_t minSequenceSize )
{
sequences.clear();
if ( boost::filesystem::is_directory( path ) )
{
boost::filesystem::directory_iterator end;
std::vector< std::string > files;
for ( boost::filesystem::directory_iterator it( path ); it != end; ++it )
{
files.push_back( it->path().PATH_TO_STRING );
}
findSequences( files, sequences, minSequenceSize );
}
}
void IECore::ls( const std::string &sequencePath, FileSequencePtr &sequence, size_t minSequenceSize )
{
sequence = nullptr;
boost::smatch matches;
bool m = boost::regex_match( sequencePath, matches, FileSequence::fileNameValidator() );
if ( !m )
{
return;
}
const std::string paddingStr( matches[2].first, matches[2].second );
const unsigned padding = paddingStr.size();
std::vector< std::string > files;
boost::filesystem::path dir = boost::filesystem::path( sequencePath ).parent_path();
std::string baseSequencePath = boost::filesystem::path( sequencePath ).PATH_TO_STRING;
const std::string::size_type first = baseSequencePath.find_first_of( '#' );
assert( first != std::string::npos );
const std::string prefix = baseSequencePath.substr( 0, first );
const std::string::size_type last = baseSequencePath.find_last_of( '#' );
assert( last != std::string::npos );
const std::string suffix = baseSequencePath.substr( last + 1, baseSequencePath.size() - last - 1 );
boost::filesystem::path dirToCheck( dir );
if ( dirToCheck.string() == "" )
{
dirToCheck = ".";
}
boost::filesystem::directory_iterator end;
for ( boost::filesystem::directory_iterator it( dirToCheck ); it != end; ++it )
{
const std::string fileName = it->path().PATH_TO_STRING;
if ( fileName.size() >= std::min( prefix.size(), suffix.size() ) && fileName.substr( 0, prefix.size() ) == prefix && fileName.substr( fileName.size() - suffix.size(), suffix.size() ) == suffix )
{
files.push_back( ( dir / boost::filesystem::path( fileName ) ).string() );
}
}
std::vector< FileSequencePtr > sequences;
findSequences( files, sequences, minSequenceSize );
for ( std::vector< FileSequencePtr >::iterator it = sequences.begin(); it != sequences.end() ; ++it )
{
if ( (*it)->getPadding() == padding )
{
sequence = *it;
return;
}
// Also accept frame ranges with number of digits greater than the padding.
if ( (*it)->getPadding() == 1 )
{
FrameList::Frame startFrame, endFrame;
if( FrameRange *fr = runTimeCast<FrameRange>( (*it)->getFrameList() ) )
{
// Can do a quick validation if the range is a FrameRange, by looking at the start and end only
startFrame = fr->getStart();
endFrame = fr->getEnd();
}
else
{
// Otherwise, have to get the full list
std::vector<FrameList::Frame> frames;
(*it)->getFrameList()->asList(frames);
// I know that there will be at least one frame, since the file sequence was found
startFrame = frames[ 0 ];
endFrame = frames[ 0 ];
for ( unsigned i=0; i < frames.size(); i++ )
{
if ( frames[ i ] < startFrame )
{
startFrame = frames[ i ];
}
else if ( frames[ i ] > endFrame )
{
endFrame = frames[ i ];
}
}
}
// if goes through 0 then this is a no.
if ( !(startFrame < 0 && endFrame > 0) )
{
unsigned int startDigits = 1;
if ( startFrame > 0 )
startDigits = static_cast<unsigned int>(floor(log10( static_cast<double>(std::abs(startFrame)) ))) + 1;
if ( startDigits >= padding )
{
sequence = *it;
sequence->setPadding( padding );
return;
}
}
}
}
}
FrameListPtr IECore::frameListFromList( const std::vector< FrameList::Frame > &frames )
{
if ( frames.size() == 0 )
{
return new EmptyFrameList();
}
else if ( frames.size() == 1 )
{
return new FrameRange( frames[0], frames[0] );
}
std::vector< FrameListPtr > frameLists;
FrameList::Frame rangeStart = 0;
FrameList::Frame rangeEnd = 1;
FrameList::Frame rangeStep = frames[ rangeEnd ] - frames[ rangeStart ];
while ( rangeEnd <= (FrameList::Frame)frames.size() )
{
if ( rangeEnd == (FrameList::Frame)frames.size() || frames[ rangeEnd ] - frames[ rangeEnd -1 ] != rangeStep )
{
/// we've come to the end of a run
if ( rangeEnd - 1 == rangeStart )
{
frameLists.push_back( new FrameRange( frames[ rangeStart ], frames[ rangeStart ] ) );
}
else
{
if ( rangeStep > 0)
{
frameLists.push_back( new FrameRange( frames[ rangeStart ], frames[ rangeEnd -1 ], rangeStep ) );
}
else
{
frameLists.push_back( new ReversedFrameList( new FrameRange(frames[ rangeEnd -1 ], frames[ rangeStart ], -rangeStep ) ));
}
}
rangeStart = rangeEnd;
rangeEnd = rangeStart + 1;
if ( rangeEnd < (FrameList::Frame)frames.size() )
{
rangeStep = frames[ rangeEnd ] - frames[ rangeStart ];
}
}
else
{
rangeEnd ++;
}
}
if ( frameLists.size() == 1 )
{
return frameLists[0];
}
else
{
return new CompoundFrameList( frameLists );
}
}