-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweaver_program_en.tex
1767 lines (1539 loc) · 55.1 KB
/
weaver_program_en.tex
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\input tex/epsf.tex
\font\sixteen=cmbx16
\font\twelve=cmr12
\font\fonteautor=cmbx12
\font\fonteemail=cmtt10
\font\twelvenegit=cmbxti12
\font\twelvebold=cmbx12
\font\trezebold=cmbx13
\font\twelveit=cmsl12
\font\monodoze=cmtt12
\font\it=cmti12
\voffset=0,959994cm % 3,5cm de margem superior e 2,5cm inferior
\parskip=6pt
\def\titulo#1{{\noindent\sixteen\hbox to\hsize{\hfill#1\hfill}}}
\def\autor#1{{\noindent\fonteautor\hbox to\hsize{\hfill#1\hfill}}}
\def\email#1{{\noindent\fonteemail\hbox to\hsize{\hfill#1\hfill}}}
\def\negrito#1{{\twelvebold#1}}
\def\italico#1{{\twelveit#1}}
\def\monoespaco#1{{\monodoze#1}}
\def\iniciocodigo{\lineskip=0pt\parskip=0pt}
\def\fimcodigo{\twelve\parskip=0pt plus 1pt\lineskip=1pt}
\long\def\abstract#1{\parshape 10 0.8cm 13.4cm 0.8cm 13.4cm
0.8cm 13.4cm 0.8cm 13.4cm 0.8cm 13.4cm 0.8cm 13.4cm 0.8cm 13.4cm
0.8cm 13.4cm 0.8cm 13.4cm 0.8cm 13.4cm
\noindent{{\twelvenegit Abstract: }\twelveit #1}}
\def\resumo#1{\parshape 10 0.8cm 13.4cm 0.8cm 13.4cm
0.8cm 13.4cm 0.8cm 13.4cm 0.8cm 13.4cm 0.8cm 13.4cm 0.8cm 13.4cm
0.8cm 13.4cm 0.8cm 13.4cm 0.8cm 13.4cm
\noindent{{\twelvenegit Resumo: }\twelveit #1}}
\def\secao#1{\vskip12pt\noindent{\trezebold#1}\parshape 1 0cm 15cm}
\def\subsecao#1{\vskip12pt\noindent{\twelvebold#1}}
\def\referencia#1{\vskip6pt\parshape 5 0cm 15cm 0.5cm 14.5cm 0.5cm 14.5cm
0.5cm 14.5cm 0.5cm 14.5cm {\twelve\noindent#1}}
%@* .
\twelve
\vskip12pt
\titulo{The Weaver Program}
\vskip12pt
\autor{Thiago Leucz Astrizi}
\vskip6pt
\email{thiago@@bitbitbit.com.br}
\vskip6pt
\abstract{This article describes using literary programming the
program Weaver. This program is a project manager for the Weaver
Game Engine. If a user wants to create a new game with the Weaver
Game Engine, they use this program to create the directory structure
for a new game project. They also use this program to add new source
files and shader files to a game project. And to update a project
with a more recent Weaver version installed in the computer. The
presenting code in C is cross-platform and should work under
Windows, Linux, OpenBSD and possibly other Unix variants.}
\secao{1. Introduction}
A game engine is made by a set of libraries and functions that helps a
game creation offering common functionalities for this kind of
development. But besides the libraries and functions, there should
exist a manager responsible for creating some code which uses the
library in a correct way and executes the necessary initializations.
The Weaver Game Engine has very strict prerequisites about how the
directory with a game project should be organized. To follow these
requisites, this program is necessary. It initializesin a correct way
the directory structure in a new project. It adds new source files
with the correct code to ensure the code integration. And controlling
the project in this way, it also knows how to perform updates in the
libraries for more recent versions.
This program usage is by the command line. For example, if a user
types ``{\tt weaver pong}'', a new directory structure like in the
following image will be created.
\imagem{cweb/diagrams/project_dir.eps}
The following sections in this document are organized in the following
way. Section 2 is about this software license. Section 3 lists all the
variables that control its execution. Section 4 defines some macros
used in the program structure. Section 5 lists all the auxiliary
functions defined. Sections 6 is how the variables are
initialized. Section 7 is about the software use cases and how they
are implemented after we have all the variables with the correct
value.
\secao{2. Copyright and licensing}
The software license is the GNU General Public License version 3:
\espaco{5mm}\linha
\alinhaverbatim
Copyright (c) Thiago Leucz Astrizi 2015
This program is free software: you can redistribute it and/or
modify it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public
License along with this program. If not, see
<http://www.gnu.org/licenses/>.
\alinhanormal
\linha\espaco{5mm}
The complete version of the license can be obtained with the source
code or checking the link above.
\secao{3. Variables and software structure}
Weaver execution depends of the following variables:
|inside_weaver_directory|: If the program is invoked inside a Weaver
project directory.
|argument|: The first argument, or NULL if doesn't exist.
|argument2|: The second argument, or NULL if doesn't exist.
|project_version_major|: If we are in a Weaver project, which is the
major version number of the program which created the project? For
example, if wea are in a project created by Weaver 0.5, the major
version is 0. In tests version, the value is always 0.
|project_version_minor|: If we are in a Weaver project, the minor
version number of the program which created the project. For example,
if Weaver 0.5 created the current project, this number is 5. In test
versions, the value is always 0.
|weaver_version_major|: The major version of this program.
|weaver_version_minor|: The minor version of this program.
|arg_is_path|: If the first argument exists and is an absolute or
relative path in the filesystem.
|arg_is_valid_project|: If the first argument exists and would be
considered a valid Weaver project name.
|arg_is_valid_module|: If the first argument exists and would be
considered a valid module name in a Weaver project.
|arg_is_valid_function|: If the second argument exists and if it would
be considered a valid name for a main loop and for a new file in a
Weaver project.
|project_path|: If we are inside a Weaver project, which is the path
for its base directory (where is the Makefile)?
|have_arg|: If the program is invoked with an argument.
|shared_dir|: The path to the directory where are the shared files
from Weaver installation. The default is ``{\tt
/usr/local/share/weaver}'' in Unix systems and the ``Program Files''
folder in Windows. This can be changed in the program building
defining the macro {\tt WEAVER\_DIR}.
|author_name|,|project_name| and |year|: The name of the user which is
executing the program, the current project name (if we are inside a
Weaver project directory) and the current year. This is important for
copyright messages creation.
|return_value|: If the program is interrupted in this exact moment,
what the program should return?
The software general structure with all the variables declarations is:
\iniciocodigo
@(src/weaver.c@>=
@<Headers Included in Weaver Program@>
@<Weaver Program Macros@>
@<Weaver Auxiliary Functions@>
int main(int argc, char **argv){@/
int return_value = 0; /* Return value. */
bool inside_weaver_directory = false, arg_is_path = false,
arg_is_valid_project = false, arg_is_valid_module = false,
have_arg = false,
arg_is_valid_function = false; /* Boolean variables. */
unsigned int project_version_major = 0, project_version_minor = 0,
weaver_version_major = 0, weaver_version_minor = 0,
year = 0;
/* Strings UTF-8: */
char *argument = NULL, *project_path = NULL, *shared_dir = NULL,
*author_name = NULL, *project_name = NULL, *argument2 = NULL;
@<Initialization@>
@<Use Case 1: Printing help (create project)@>
@<Use Case 2: Printing management help@>
@<Use Case 3: Print version@>
@<Use Case 4: Updating Weaver project@>
@<Use Case 5: Create new module@>
@<Use Case 6: Create new project@>
@<Use Case 7: Create new main loop@>
END_OF_PROGRAM:
@<Finishing@>
return return_value;
}
@
\fimcodigo
\secao{4. Macros and Headers in Weaver Program}
This program needs some macros. The first one shall store a string
with the program version; This version could be formed just by letters
(if a test version) or by digits followed by a dot and more digits
(without whitespaces) if this is a final version of the program.
For the second macro, observe that in the program structure above,
exists a label called |END_OF_PROGRAM| in the finishing part. We can
reach the label following the program normal execution, if nothing
wrong happens. Otherwise, if an error happens, we can reach that label
by an unconditional jump after printing the error message and
adjusting the program return value. Treating this error condition with
these actions is the second macro responsability.
We also could finish the program prematurely, but not because some
error happened. The third macro will treat this case:
\iniciocodigo
@<Weaver Program Macros@>=
#define VERSION "Alpha"
#define W_ERROR() {perror(NULL); return_value = 1; goto END_OF_PROGRAM;}
#define END() goto END_OF_PROGRAM;
@
\fimcodigo
We are using the library function \monoespaco{perror}, so we need to
include the header \monoespaco{stdio.h}, which will also bring us
other useful functions to print in the screen or in files and to open
and close files. We also should insert support for boolean values and
the standard library with functions like |exit| utilized in the
program structure.
If we are running in Windows, we want so supress some warnings about
the use of functions \monoespaco{fopen} no lugar
de \monoespaco{fopen\_s}, por exemplo. Because the safe functions in
Windows are not portable and we use the old functions in a controlled
way. To supress the warning we need to define the specific macro below
before including other headers.
\iniciocodigo
@<Headers Included in Weaver Program@>=
#if defined(_WIN32)
#define _CRT_SECURE_NO_WARNING
#endif
#include <stdio.h> // printf, fprintf, fopen, fclose, fgets, fgetc, perror
#include <stdbool.h> // bool, true, false
#include <stdlib.h> // free, exit, getenv
@
\fimcodigo
\secao{5. Auxiliary Functions}
Here we list some functions which we should use in the program to
facilitate its description.
\subsecao{5.1. path\_up: Manipulating Paths}
To manipulate directory tree paths, we define an auxiliary function
which receives a path and erases the last characters until two ``/''
are erased. So in ``/home/alice/project/dir/'', it returns
``/home/alice/project'', goind one level up in the directory tree.
But in Windows systems, the separator isn't ``/'', but ``\\''. So we
should treat the separator differently according with the Operating
System:
\iniciocodigo
@<Weaver Auxiliary Functions@>=
void path_up(char *path){
#if !defined(_WIN32)
char separator = '/';
#else
char separator = '\\';
#endif
int erased = 0;
char *p = path;
while(*p != '\0') p ++; // Vai até o fim
while(erased < 2 && p != path){
p --;
if(*p == separator) erased ++;
*p = '\0'; // Apaga
}
}
@
\fimcodigo
Notice that if the function get a string without two separators, we
erase all the string. In this program we will limit this function
usage to strings with path for files outside the root directory, which
are not the root directory themselves and for directories ended by the
separator character. So we should always respect the limit of minimal
two separators in paths. Example: ``/etc/'' and ``/tmp/file.txt''.
\subsecao{5.2. directory\_exists: Arquivo existe e é diretório}
To check if the directory \monoespaco{.weaver} exists, we define
|directory_exist(x)| as a function which gets a file path and returns
1 if |x| is an existing directory, -1 if |x| is an existing file and 0
otherwise. Fist let's create macros to make explicit the meaning of
return values:
\iniciocodigo
@<Weaver Program Macros@>+=
#define DONT_EXIST 0
#define EXISTS_AND_IS_DIR 1
#define EXISTS_AND_IS_FILE -1
@
\fimcodigo
\iniciocodigo
@<Weaver Auxiliary Functions@>+=
int directory_exist(char *dir){
#if !defined(_WIN32)
// Unix:
struct stat s; // Stores if the file exists
int err; // Checagem de erros
err = stat(dir, &s); // It exists?
if(err == -1) return DONT_EXIST;
if(S_ISDIR(s.st_mode)) return EXISTS_AND_IS_DIR;
return EXISTS_AND_IS_FILE;
#else
// Windows:
DWORD dwAttrib = GetFileAttributes(dir);
if(dwAttrib == INVALID_FILE_ATTRIBUTES) return DONT_EXIST;
if(!(dwAttrib & FILE_ATTRIBUTE_DIRECTORY)) return EXISTS_AND_IS_FILE;
else return EXISTS_AND_IS_DIR;
#endif
}
@
\fimcodigo
Depending of the Operating System, we should utilize different
functions and need different headers:
\iniciocodigo
@<Headers Included in Weaver Program@>=
#if !defined(_WIN32)
#include <sys/types.h> // stat, getuid, getpwuid, mkdir
#include <sys/stat.h> // stat, mkdir
#else
#include <windows.h> // GetFileAttributes, ...
#endif
@
\fimcodigo
\subsecao{5.3. concatenate: Concatenate strings}
This function gets an arbitrary number of strings, but the last string
must be |NULL| or the empty string. And it returns the concatenation
of all the strings passed as argument. The function will always
allocate a new string, which should be freed before the program
ending.
Example: |concatenate("tes", " ", "t", "")| returns |"tes t"|.
\iniciocodigo
@<Weaver Auxiliary Functions@>+=
char *concatenate(char *string, ...){
va_list arguments;
char *new_string, *current_string = string;
size_t current_size = strlen(string) + 1;
char *realloc_return;
va_start(arguments, string);
new_string = (char *) malloc(current_size);
if(new_string == NULL) return NULL;
// Copying first string:
memcpy(new_string, string, current_size);
while(current_string != NULL && current_string[0] != '\0'){
size_t increment_length, last_length;
current_string = va_arg(arguments, char *);
increment_length = strlen(current_string);
last_length = current_size;
current_size += increment_length;
realloc_return = (char *) realloc(new_string, current_size);
if(realloc_return == NULL){
free(new_string);
return NULL;
}
new_string = realloc_return;
// Copying next string:
memcpy(&(new_string[last_length-1]), current_string, increment_length + 1);
}
return new_string;
}
@
\fimcodigo
This is a dangerous function that always should be invoked passing as
last argument an empty string or NULL.
This function usage requires the following headers:
\iniciocodigo
@<Headers Included in Weaver Program@>=
#include <string.h> // strcmp, strcat, strcpy, strncmp
#include <stdarg.h> // va_start, va_arg
@
\fimcodigo
\subsecao{5.4. basename: Get a file name given its path}
This function already exists in Unix systems. Given a complete path
for a file, it returns a string with the file name. It doesn't neet to
allocate a new string, it can just return a pointer for the filename
inside the path string. Let's define it for Windows and other systems
without a |basename| function:
\iniciocodigo
@<Weaver Auxiliary Functions@>+=
#if defined(_WIN32)
char *basename(char *path){
char *p = path;
char *last_delimiter = NULL;
while(*p != '\0'){
if(*p == '\\')
last_delimiter = p;
p ++;
}
if(last_delimiter != NULL)
return last_delimiter + 1;
else
return path;
}
#endif
@
\fimcodigo
In Unix Systems, we don't need to define this function, we just
include its header:
\iniciocodigo
@<Headers Included in Weaver Program@>=
#if !defined(_WIN32)
#include <libgen.h>
#endif
@
\fimcodigo
\subsecao{5.5. copy\_single\_file: Copy single file to target directory}
The function |copy_single_file| copies the file which path is the
first argument to the target directory which path is the second
argument. It returns 1 if successful or 0 otherwise.
\iniciocodigo
@<Weaver Auxiliary Functions@>+=
int copy_single_file(char *file, char *directory){
int block_size, bytes_read;
char *buffer, *file_dst;
FILE *orig, *dst;
// Inicializa 'block_size':
@<Discover block size@>
buffer = (char *) malloc(block_size); // Allocating buffer for copy
if(buffer == NULL) return 0;
file_dst = concatenate(directory, "/", basename(file), "");
if(file_dst == NULL) return 0;
orig = fopen(file, "r"); // Open origin file
if(orig == NULL){
free(buffer);
free(file_dst);
return 0;
}
dst = fopen(file_dst, "w"); // Open destiny file
if(dst == NULL){
fclose(orig);
free(buffer);
free(file_dst);
return 0;
}
while((bytes_read = fread(buffer, 1, block_size, orig)) > 0){
fwrite(buffer, 1, bytes_read, dst); // Copy origin to destiny
}
fclose(orig);
fclose(dst);
free(file_dst);
free(buffer);
return 1;
}
@
\fimcodigo
It's more efficient when the buffer used in the copy has the same size
than a block in the filesystem. To get the correct valuem we use this
code in Unix systems:
\iniciocodigo
@<Discover block size@>=
#if !defined(_WIN32)
{
struct stat s;
stat(directory, &s);
block_size = s.st_blksize;
if(block_size <= 0){
block_size = 4096;
}
}
#endif
@
\fimcodigo
In Windows we just assume that the size is 4KB:
\iniciocodigo
@<Discover block size@>+=
#if defined(_WIN32)
block_size = 4096;
#endif
@
\fimcodigo
\subsecao{5.6. copy\_files: Copy all source files to destiny}
With a function to copy a single file, we need to define a function to
copy all the files inside a directory recursivelly. This requises some
work, as we need to list all the content in a directory to get its
files. How to do this depends of the Operating System.
In Unix systems we use the function |readdir| to read the content of
directories:
\iniciocodigo
@<Weaver Auxiliary Functions@>+=
#if !defined(_WIN32)
int copy_files(char *orig, char *dst){
DIR *d = NULL;
struct dirent *dir;
d = opendir(orig);
if(d){
while((dir = readdir(d)) != NULL){ // Loop to read each file
char *file;
file = concatenate(orig, "/", dir -> d_name, "");
if(file == NULL){
return 0;
}
#if (defined(__linux__) || defined(_BSD_SOURCE)) && defined(DT_DIR)
// If we support DT_DIR, we don't need the funcion 'stat':
if(dir -> d_type == DT_DIR){
#else
struct stat s;
int err;
err = stat(file, &s);
if(err == -1) return 0;
if(S_ISDIR(s.st_mode)){
#endif
// If we are dealing with a subdirectory:
char *new_dst;
new_dst = concatenate(dst, "/", dir -> d_name, "");
if(new_dst == NULL){
return 0;
}
if(strcmp(dir -> d_name, ".") && strcmp(dir -> d_name, "..")){
if(directory_exist(new_dst) == DONT_EXIST) mkdir(new_dst, 0755);
if(copy_files(file, new_dst) == 0){
free(new_dst);
free(file);
closedir(d);
return 0;
}
}
free(new_dst);
}
else{
// If we get a regular file:
if(copy_single_file(file, dst) == 0){
free(file);
closedir(d);
return 0;
}
}
free(file);
} // End of loop to read each file
closedir(d);
}
return 1;
}
#endif
@
\fimcodigo
And this requires the following headers:
\iniciocodigo
@<Headers Included in Weaver Program@>=
#if !defined(_WIN32)
#include <dirent.h> // readdir, opendir, closedir
#endif
@
\fimcodigo
In Windows we don't need new headers. The function definition becames
the following:
\iniciocodigo
@<Weaver Auxiliary Functions@>+=
#if defined(_WIN32)
int copy_files(char *orig, char *dst){
char *path, *search_path;
WIN32_FIND_DATA file;
HANDLE dir = NULL;
search_path = concatenate(orig, "\\*", "");
if(search_path == NULL)
return 0;
dir = FindFirstFile(search_path, &file);
if(dir != INVALID_HANDLE_VALUE){
// The first file shall be '.' and should be safely ignored
do{
if(strcmp(file.cFileName, ".") && strcmp(file.cFileName, "..")){
path = concatenate(orig, "\\", file.cFileName, "");
if(path == NULL){
free(search_path);
return 0;
}
if(file.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY){
char *dst_path;
dst_path = concatenate(dst, "\\", file.cFileName, "");
if(directory_exist(dst_path) == DONT_EXIST)
CreateDirectoryA(dst_path, NULL);
if(copy_files(path, dst_path) == 0){
free(dst_path);
free(path);
FindClose(dir);
free(search_path);
return 0;
}
free(dst_path);
}
else{ // file
if(copy_single_file(path, dst) == 0){
free(path);
FindClose(dir);
free(search_path);
return 0;
}
}
free(path);
}
}while(FindNextFile(dir, &file));
}
free(search_path);
FindClose(dir);
return 1;
}
#endif
@
\fimcodigo
\subsecao{5.7. write\_copyright: Write copyright messages in files}
By default Weaver projects are licensed under GNU GPL 3. As codes
under this license are copied and utilized statically in new projects,
the new projects needs the same license or a compatible one.
The code is very simple and requires just some parameters as the
author name and the current year:
\iniciocodigo
@<Weaver Auxiliary Functions@>+=
void write_copyright(FILE *fp, char *author_name, char *project_name, int year){
char license[] = "/*\nCopyright (c) %s, %d\n\nThis file is part of %s.\n\n%s\
is free software: you can redistribute it and/or modify\nit under the terms of\
the GNU Affero General Public License as published by\nthe Free Software\
Foundation, either version 3 of the License, or\n(at your option) any later\
version.\n\n\
%s is distributed in the hope that it will be useful,\nbut WITHOUT ANY\
WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS\
FOR A PARTICULAR PURPOSE. See the\nGNU Affero General Public License for more\
details.\n\nYou should have received a copy of the GNU Affero General Public License\
\nalong with %s. If not, see <http://www.gnu.org/licenses/>.\n*/\n\n";
fprintf(fp, license, author_name, year, project_name, project_name,
project_name, project_name);
}
@
\fimcodigo
\subsecao{5.8. create\_dir: Create new directories}
This function is responsible for creating a list of directories. This
is a very simple thing, but should be encapsulated in a function
because of differences between Operating Systems about how to do this
task.
This function must receive as argument a variable number of strings,
but the last argument must be an empty string or NULL. Earch argument
except the last represents a path. The function will create the
directory with the specified path. By default we use
``\monoespaco{/}'' as separator, so the function shall work both in
Unix systems as in Windows. In the later, the
function \monoespaco{CreateDirectoryA} accepts paths represented in
Unix notation.
In Unix systems we need to specify the maximum permissions in the
directory in terms os reading, writing and execution. The Operating
System can then accept our recommended permissions, or ensure more
restrictive ones depending of configuration. In Windows the permission
logic is more hyerarquical, so we just use the same permissions as the
parent directory.
In case of error, we return -1. Otherwise, we return 1.
The function definition is:
\iniciocodigo
@<Weaver Auxiliary Functions@>+=
int create_dir(char *string, ...){
char *current_string;
va_list arguments;
va_start(arguments, string);
int err = 1;
current_string = string;
while(current_string != NULL && current_string[0] != '\0' && err != -1){
#if !defined(_WIN32)
err = mkdir(current_string, S_IRWXU | S_IRWXG | S_IROTH);
#else
if(!CreateDirectoryA(current_string, NULL))
err = -1;
#endif
current_string = va_arg(arguments, char *);
}
return err;
}
@
\fimcodigo
\subsecao{5.9. append\_file: Concatenate file contents}
This is an unusual function, it was designed to solve efficiently a
single use case, sacrificing the consistency of its interface and its
ease of use. It gets as argument a pointer for a target file already
opened (usually we want to use this function after we opened a file to
write the copyright notice), as second argument it gets the path of
parent directory of an origin file and as the third argument it gets
the origin file name.
Its definition is:
\iniciocodigo
@<Weaver Auxiliary Functions@>+=
int append_file(FILE *fp, char *dir, char *file){
int block_size, bytes_read;
char *buffer, *directory = ".";
char *path = concatenate(dir, file, "");
if(path == NULL) return 0;
FILE *origin;
@<Discover block size@>
buffer = (char *) malloc(block_size);
if(buffer == NULL){
free(path);
return 0;
}
origin = fopen(path, "r");
if(origin == NULL){
free(buffer);
free(path);
return 0;
}
while((bytes_read = fread(buffer, 1, block_size, origin)) > 0){
fwrite(buffer, 1, bytes_read, fp);
}
fclose(origin);
free(buffer);
free(path);
return 1;
}
@
\fimcodigo
\secao{6. Variable Initialization}
\subsecao{6.1. inside\_weaver\_directory e project\_path: Where we are}
The first variable is |inside_weaver_directory|, which stores |false|
if the program was invoked outside a Weaver project directory and
|true| otherwise.
How should we detect if we are in a Weaver project directory? It's
simple. They are directories which contains in them or in an ancestor
directory a hidden directory named \monoespaco{.weaver}. If we find
this directory, we can also adjust the variable |project_path| to
point to where is this directory. If we don't find it, we are outside
a Weaver directory and we don't need to change these variables default
value, which are |false| and |NULL|.
In short, we need a loop with the following characteristics:
\negrito{Invariant}: The variable |complete_path| must always store
the complete path of the directory \monoespaco{.weaver} if this
file hypothetically existed in the current directory.
\negrito{Initialization:} We initialize |complete_path| to be valid
when we are in or initial current directory.
\negrito{Maintenance:} In each iteration we check if we found a
termination condition. If not, we change to the current directory
parent, always updating the variables to keep valid the invariant.
\negrito{Termination}: We terminate the loop if one of the following
3 conditions occur:
a) |complete_path == "/.weaver"|: We can't go to a parent directory
because we are already in the root of the filesystem. It means that we
aren't in a Weaver directory.
b) |complete_path == "C:\\.weaver"|: In fact, the initial letter could
be ``D'', ``E'' or any other letter, not just ``C''. It also could be
``\\.weaver''. This means that we are in the root of a Windows
filesystem (the last case without a drive letter represents a network
directory) and we aren't in a Weaver directory.
c) |complete_path == "./.weaver"| and this file exists and is a
directory: In this case, we were inside a Weaver directory. We can
also update |project_path| to store the current path.
The initialization of these variables is then:
\iniciocodigo
@<Initialization@>=
char *path = NULL, *complete_path = NULL;
#if !defined(_WIN32)
path = getcwd(NULL, 0); // Unix
#else
{ // Windows
DWORD bsize;
bsize = GetCurrentDirectory(0, NULL);
path = (char *) malloc(bsize);
GetCurrentDirectory(bsize, path);
}
#endif
if(path == NULL) W_ERROR();
complete_path = concatenate(path, "/.weaver", "");
free(path);
if(complete_path == NULL) W_ERROR();
@
\fimcodigo
To get the current directory, we need the header:
\iniciocodigo
@<Headers Included in Weaver Program@>=
#if !defined(_WIN32)
#include <unistd.h> // get_current_dir_name, getcwd, stat, chdir, getuid
#endif
@
\fimcodigo
Now we define the described loop:
\iniciocodigo
@<Initialization@>+=
{
// Testa se chegamos ao fim:
while(strcmp(complete_path, "/.weaver") &&
strcmp(complete_path, "\\.weaver") &&
strcmp(complete_path + 1, ":\\.weaver")){
if(directory_exist(complete_path) == EXISTS_AND_IS_DIR){
inside_weaver_directory = true;
complete_path[strlen(complete_path) - 7] = '\0'; // Apaga o '.weaver'
project_path = concatenate(complete_path, "");
if(project_path == NULL){ free(complete_path); W_ERROR(); }
break;
}
else{
path_up(complete_path);
#ifdef __OpenBSD__
{
size_t tmp_size = strlen(complete_path);
strlcat(complete_path, "/.weaver", tmp_size + 9);
}
#else
strcat(complete_path, "/.weaver");
#endif
}
}
free(complete_path);
}
@
\fimcodigo
We allocated memory to |project_path|, so in the end of program we
need to free this memory:
\iniciocodigo
@<Finishing@>=
if(project_path != NULL) free(project_path);
@
\fimcodigo
\subsecao{6.2. weaver\_version\_major e weaver\_version\_minor:
Program Version}
To discover the current program version, we can just check the macro
|VERSION|. Then we get the majorand minor version number parsing the
digits separated by a dot (if they exist). If we can't find a dot in
the version name, this is a test version and the minor and major
version number must be treated as 0. So we can just use |atoi|
function and this requirement will be fullfilled:
\iniciocodigo
@<Initialization@>+=
{
char *p = VERSION;
while(*p != '.' && *p != '\0') p ++;
if(*p == '.') p ++;
weaver_version_major = atoi(VERSION);
weaver_version_minor = atoi(p);
}
@
\fimcodigo
\subsecao{6.3. project\_version\_major e project\_version\_minor:
Project Version}
If we are inside a Weaver project, we need to initialize these
variables with Weaver major and minor version used to create the
project, or update the project if it was updated in the past. This can
be obtained checking the file \italico{.weaver/version} inside the
Weaver directory. If we aren't in a Weaver directory, we don't need to
get these values. The major and minor version usually is separated by
a dot, following the same rules than in previous subsection.
\iniciocodigo
@<Initialization@>+=
if(inside_weaver_directory){
FILE *fp;
char *p, version[10];
char *file_path = concatenate(project_path, ".weaver/version", "");
if(file_path == NULL) W_ERROR();
fp = fopen(file_path, "r");
free(file_path);
if(fp == NULL) W_ERROR();
p = fgets(version, 10, fp);
if(p == NULL){ fclose(fp); W_ERROR(); }
while(*p != '.' && *p != '\0') p ++;
if(*p == '.') p ++;
project_version_major = atoi(version);
project_version_minor = atoi(p);
fclose(fp);
}
@
\fimcodigo
\subsecao{6.4. have\_arg, argument e argument2: Invocation Arguments}
The easiest to initialize variables. We just check for |argc| and
|argv|.
\iniciocodigo
@<Initialization@>+=
have_arg = (argc > 1);
if(have_arg) argument = argv[1];
if(argc > 2) argument2 = argv[2];
@
\fimcodigo
\subsecao{6.5. arg\_is\_path: If the argument is a directory}
If we have a first argument, we need to check if it's a path for a
directory where is a Weaver project. For this, we just
concatenate \monoespaco{/.weaver} in the first argument and check if
this file exist.
\iniciocodigo
@<Initialization@>+=
if(have_arg){
char *buffer = concatenate(argument, "/.weaver", "");
if(buffer == NULL) W_ERROR();
if(directory_exist(buffer) == EXISTS_AND_IS_DIR){
arg_is_path = 1;
}
free(buffer);
}
@
\fimcodigo
\subsecao{6.6. shared\_dir: Where the files are installed}
The variable |shared_dir| shall contain where are the installed shared
files. These files are libraries to be inserted statically and models
of source code. If the macro \monoespaco{WEAVER\_DIR} exists because
it was defined during compilation, this will be the path where are
these files. Other wise, se use \monoespaco{/usr/local/share/weaver}
in Unix systems and \monoespaco{\%PROGRAMFILES\%\\weaver} in Windows
systems.
@<Initialization@>+=
{
#ifdef WEAVER_DIR