--- parser3/src/include/pa_array.h 2001/09/26 10:32:25 1.44 +++ parser3/src/include/pa_array.h 2003/04/11 15:00:05 1.58 @@ -1,16 +1,15 @@ /** @file Parser: Array & Array_iter classes decls. - Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) - Author: Alexander Petrosyan (http://design.ru/paf) - - $Id: pa_array.h,v 1.44 2001/09/26 10:32:25 parser Exp $ + Copyright (c) 2001, 2003 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexandr Petrosian (http://paf.design.ru) */ #ifndef PA_ARRAY_H #define PA_ARRAY_H -#include "pa_config_includes.h" +static const char* IDENT_ARRAY_Y="$Date: 2003/04/11 15:00:05 $"; + #include "pa_pool.h" #include "pa_types.h" #include "pa_string.h" @@ -34,7 +33,7 @@ class Array_iter; */ class Array : public Pooled { - friend Array_iter; + friend class Array_iter; public: /// Array item type @@ -46,6 +45,10 @@ public: /// for_each iterator function type typedef void (*For_each_func)(Item *value, void *info); + /* + /// for_each iterator function type, passing item storage address + typedef void (*For_each_func_storage)(Item ** value, void *info); + */ /// first_that iterator function type, const info typedef void *(*Item_that_func_const)(Item *value, const void *info); @@ -73,12 +76,16 @@ public: Array& operator += (const Item *src) { return *this+=const_cast(src); } /// append other Array portion to this one. starting from offset - Array& append_array(const Array& src, int offset=0); + Array& append_array(const Array& src, + int offset=0, + int limit=-1, //< negative limit means 'all'. zero limit means 'nothing' + bool reverse=false); Item *get(int index) const; int get_int(int index) const { return reinterpret_cast(get(index)); } void put(int index, Item *item); + void put_int(int index, int value) { put(index, reinterpret_cast(value)); } /// convinient way to get strings from Array. I long for Array const String *get_string(int index) const { return const_cast(static_cast(get(index))); @@ -86,11 +93,15 @@ public: /*/// iterate over all elements, const info void for_each(For_each_func_const func, const void *info=0) const; - /*/ + */ /// iterate over all elements void for_each(For_each_func func, void *info=0) const; + /*/// iterate over all elements, passing address of item storage + void for_each(For_each_func_storage func, void *info=0); + */ + /// iterate over all elements until condition, const info void* first_that(Item_that_func_const func, const void *info=0) const; @@ -129,9 +140,6 @@ private: // array size int fused_rows; - mutable int cache_chunk_base; - mutable Chunk *cache_chunk; - private: bool chunk_is_full() {