Neo4j-Client

 view release on metacpan or  search on metacpan

build/lib/src/render.h  view on Meta::CPAN

 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#ifndef NEO4J_RENDER_H
#define NEO4J_RENDER_H

#include "neo4j-client.h"

#define NEO4J_FIELD_BUFFER_INITIAL_CAPACITY 1024

uint_fast32_t normalize_render_flags(uint_fast32_t flags);

typedef enum
{
    HLINE_TOP,
    HLINE_HEAD,
    HLINE_MIDDLE,
    HLINE_BOTTOM
} hline_position_t;

typedef enum
{
    HORIZONTAL_LINE,
    HEAD_LINE,
    VERTICAL_LINE,
    TOP_LEFT_CORNER,
    TOP_MIDDLE_CORNER,
    TOP_RIGHT_CORNER,
    HEAD_LEFT_CORNER,
    HEAD_MIDDLE_CORNER,
    HEAD_RIGHT_CORNER,
    MIDDLE_LEFT_CORNER,
    MIDDLE_MIDDLE_CORNER,
    MIDDLE_RIGHT_CORNER,
    BOTTOM_LEFT_CORNER,
    BOTTOM_MIDDLE_CORNER,
    BOTTOM_RIGHT_CORNER
} border_line_t;

int render_border_line(FILE *stream, border_line_t line_type,
        uint_fast32_t flags,
        const struct neo4j_results_table_colors *colors);

int render_hrule(FILE *stream, unsigned int ncolumns,
        unsigned int *widths, hline_position_t position,
        bool undersize, uint_fast32_t flags,
        const struct neo4j_results_table_colors *colors);

int render_overflow(FILE *stream, uint_fast32_t flags,
        const char * const color[2]);

typedef ssize_t (*render_row_callback_t)(
        void *cdata, unsigned int n, const char **s, bool *duplicate);
int render_row(FILE *stream, unsigned int ncolumns,
        const unsigned int *widths, bool undersize, uint_fast32_t flags,
        const struct neo4j_results_table_colors *colors,
        const char * const field_color[2],
        render_row_callback_t callback, void *cdata);

int fit_column_widths(unsigned int n, unsigned int widths[],
        unsigned int min, unsigned int max_total);

#endif/*NEO4J_RENDER_H*/



( run in 0.842 second using v1.01-cache-2.11-cpan-7fcb06a456a )