rename as VipsConnection, VipsSource, VipsTarget etc. see https://github.com/libvips/libvips/issues/1494#issuecomment-569498619 renamed with this script: ``` set -e edit() { sed -i -E "$1" rename } for i in $*; do cp $i rename edit s/VIPS_STREAMOU/VIPS_TARGET_CUSTOM/g edit s/VIPS_STREAMO/VIPS_TARGET/g edit s/VIPS_STREAMIU/VIPS_SOURCE_CUSTOM/g edit s/VIPS_STREAMI/VIPS_SOURCE/g edit s/VIPS_STREAM/VIPS_CONNECTION/g edit s/vips_streamou/vips_target_custom/g edit s/vips_streamo/vips_target/g edit s/vips_streamiu/vips_source_custom/g edit s/vips_streami/vips_source/g edit s/vips_stream/vips_connection/g edit s/VipsStreamou/VipsTargetCustom/g edit s/VipsStreamo/VipsTarget/g edit s/VipsStreamiu/VipsSourceCustom/g edit s/VipsStreami/VipsSource/g edit s/VipsStream/VipsConnection/g # eg. VIPS_TYPE_STREAM or VIPS_IS_STREAM edit "s/VIPS_([A-Z]+)_STREAMOU/VIPS_\1_TARGET_CUSTOM/g" edit "s/VIPS_([A-Z]+)_STREAMO/VIPS_\1_TARGET/g" edit "s/VIPS_([A-Z]+)_STREAMIU/VIPS_\1_SOURCE_CUSTOM/g" edit "s/VIPS_([A-Z]+)_STREAMI/VIPS_\1_SOURCE/g" edit "s/VIPS_([A-Z]+)_STREAM/VIPS_\1_CONNECTION/g" edit s/streamou/target_custom/g edit s/streamo/target/g edit s/streamiu/source_custom/g edit s/streami/source/g # various identifiers which also change edit s/is_a_stream/is_a_source/g edit s/find_load_stream/find_load_source/g edit s/find_save_stream/find_save_target/g edit s/new_from_stream/new_from_source/g edit s/write_to_stream/write_to_target/g edit s/vips_thumbnail_stream/vips_thumbnail_source/g # eg. vips_webpload_stream edit "s/vips_([a-z]+)load_stream/vips_\1load_source/g" # eg. vips_webpsave_stream edit "s/vips_([a-z]+)save_stream/vips_\1save_target/g" mv rename $i done ```
97 lines
1.9 KiB
C++
97 lines
1.9 KiB
C++
// VIPS stream input/output wrapper
|
|
|
|
/*
|
|
|
|
This file is part of VIPS.
|
|
|
|
VIPS is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301 USA
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
|
|
|
|
*/
|
|
|
|
#ifndef VIPS_VSTREAM_H
|
|
#define VIPS_VSTREAM_H
|
|
|
|
#include <vips/vips.h>
|
|
|
|
VIPS_NAMESPACE_START
|
|
|
|
class VStreamI : VObject
|
|
{
|
|
public:
|
|
VStreamI( VipsSource *input, VSteal steal = STEAL ) :
|
|
VObject( (VipsObject *) input, steal )
|
|
{
|
|
}
|
|
|
|
static
|
|
VStreamI new_from_descriptor( int descriptor );
|
|
|
|
static
|
|
VStreamI new_from_file( const char *filename );
|
|
|
|
static
|
|
VStreamI new_from_blob( VipsBlob *blob );
|
|
|
|
static
|
|
VStreamI new_from_memory( const void *data,
|
|
size_t size );
|
|
|
|
static
|
|
VStreamI new_from_options( const char *options );
|
|
|
|
VipsSource *
|
|
get_stream() const
|
|
{
|
|
return( (VipsSource *) VObject::get_object() );
|
|
}
|
|
|
|
};
|
|
|
|
class VStreamO : VObject
|
|
{
|
|
public:
|
|
VStreamO( VipsTarget *output, VSteal steal = STEAL ) :
|
|
VObject( (VipsObject *) output, steal )
|
|
{
|
|
}
|
|
|
|
static
|
|
VStreamO new_to_descriptor( int descriptor );
|
|
|
|
static
|
|
VStreamO new_to_file( const char *filename );
|
|
|
|
static
|
|
VStreamO new_to_memory();
|
|
|
|
VipsTarget *
|
|
get_stream() const
|
|
{
|
|
return( (VipsTarget *) VObject::get_object() );
|
|
}
|
|
|
|
};
|
|
|
|
VIPS_NAMESPACE_END
|
|
|
|
#endif /*VIPS_VSTREAM_H*/
|