-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Offload transformations onto separate thread (#304)
* sheet: Add extension API for transforming the current file * TO DO: index is built with the transformation * TO DO (optional): index is made available while it is only partially complete * sheet: cleanup and fixes for transformation/index
- Loading branch information
Showing
24 changed files
with
858 additions
and
308 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
!*.out |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Row # HA1 HA2 HA3 HB1 HB2 HB3 HC1 HC2 HC3 Column count | ||
4094 A4094 B4094 C4094 12285 | ||
4095 A4095 B4095 C4095 12288 | ||
4096 A4096 B4096 C4096 12291 | ||
? for help 4096 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
#ifndef ZSVSHEET_FILE_H | ||
#define ZSVSHEET_FILE_H | ||
|
||
int zsvsheet_ui_buffer_open_file(const char *filename, const struct zsv_opts *zsv_optsp, const char *row_filter, | ||
int zsvsheet_ui_buffer_open_file(const char *filename, const struct zsv_opts *zsv_optsp, | ||
struct zsv_prop_handler *custom_prop_handler, const char *opts_used, | ||
struct zsvsheet_ui_buffer **ui_buffer_stack_bottom, | ||
struct zsvsheet_ui_buffer **ui_buffer_stack_top); | ||
|
||
zsvsheet_status zsvsheet_open_file_opts(struct zsvsheet_proc_context *ctx, struct zsvsheet_ui_buffer_opts *opts); | ||
|
||
#endif |
Oops, something went wrong.