aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLKedward <laurence.kedward@bristol.ac.uk>2020-12-07 14:21:43 +0000
committerLKedward <laurence.kedward@bristol.ac.uk>2020-12-07 14:21:43 +0000
commit9091cf5a7079c963c4f840c168705d22d9591a53 (patch)
treeadb19b880baffb5f4b08057430ead499d61147ef
parentf46e3d7e95cc2e1430fc0447b504b147256d6093 (diff)
downloadfpm-9091cf5a7079c963c4f840c168705d22d9591a53.tar.gz
fpm-9091cf5a7079c963c4f840c168705d22d9591a53.zip
Match spacing and use predoc comments in fpm_model
-rw-r--r--fpm/src/fpm_model.f90121
1 files changed, 87 insertions, 34 deletions
diff --git a/fpm/src/fpm_model.f90 b/fpm/src/fpm_model.f90
index 031af78..9e495ee 100644
--- a/fpm/src/fpm_model.f90
+++ b/fpm/src/fpm_model.f90
@@ -14,101 +14,154 @@ public :: FPM_UNIT_UNKNOWN, FPM_UNIT_PROGRAM, FPM_UNIT_MODULE, &
FPM_TARGET_UNKNOWN, FPM_TARGET_EXECUTABLE, FPM_TARGET_ARCHIVE, &
FPM_TARGET_OBJECT
+!> Source type unknown
integer, parameter :: FPM_UNIT_UNKNOWN = -1
+!> Source type is fortran program
integer, parameter :: FPM_UNIT_PROGRAM = 1
+!> Source type is fortran module
integer, parameter :: FPM_UNIT_MODULE = 2
+!> Source type is fortran submodule
integer, parameter :: FPM_UNIT_SUBMODULE = 3
+!> Source type is fortran subprogram
integer, parameter :: FPM_UNIT_SUBPROGRAM = 4
+!> Source type is c source file
integer, parameter :: FPM_UNIT_CSOURCE = 5
+!> Source type is c header file
integer, parameter :: FPM_UNIT_CHEADER = 6
+
+!> Source has no module-use scope
integer, parameter :: FPM_SCOPE_UNKNOWN = -1
+!> Module-use scope is library/dependency modules only
integer, parameter :: FPM_SCOPE_LIB = 1
+!> Module-use scope is library/dependency modules only
integer, parameter :: FPM_SCOPE_DEP = 2
+!> Module-use scope is library/dependency and app modules
integer, parameter :: FPM_SCOPE_APP = 3
+!> Module-use scope is library/dependency and test modules
integer, parameter :: FPM_SCOPE_TEST = 4
+
+!> Target type is unknown (ignored)
integer, parameter :: FPM_TARGET_UNKNOWN = -1
+!> Target type is executable
integer, parameter :: FPM_TARGET_EXECUTABLE = 1
+!> Target type is library archive
integer, parameter :: FPM_TARGET_ARCHIVE = 2
+!> Target type is compiled object
integer, parameter :: FPM_TARGET_OBJECT = 3
+
+!> Type for describing a source file
type srcfile_t
- ! Type for encapsulating a source file
- ! and it's metadata
+ !> File path relative to cwd
character(:), allocatable :: file_name
- ! File path relative to cwd
+
+ !> Name of executable for FPM_UNIT_PROGRAM
character(:), allocatable :: exe_name
- ! Name of executable for FPM_UNIT_PROGRAM
+
+ !> Target module-use scope
integer :: unit_scope = FPM_SCOPE_UNKNOWN
- ! app/test/lib/dependency
- logical :: is_test = .false.
- ! Is executable a test?
+
+ !> Modules provided by this source file (lowerstring)
type(string_t), allocatable :: modules_provided(:)
- ! Modules provided by this source file (lowerstring)
+
+ !> Type of source unit
integer :: unit_type = FPM_UNIT_UNKNOWN
- ! Type of program unit
+
+ !> Modules USEd by this source file (lowerstring)
type(string_t), allocatable :: modules_used(:)
- ! Modules USEd by this source file (lowerstring)
+
+ !> Files INCLUDEd by this source file
type(string_t), allocatable :: include_dependencies(:)
- ! Files INCLUDEd by this source file
+
+ !> Native libraries to link against
type(string_t), allocatable :: link_libraries(:)
- ! Native libraries to link against
+
+ !> Current hash
integer(int64) :: digest
- ! Current hash
+
end type srcfile_t
+
+!> Wrapper type for constructing arrays of `[[build_target_t]]` pointers
type build_target_ptr
- ! For constructing arrays of build_target_t pointers
+
type(build_target_t), pointer :: ptr => null()
+
end type build_target_ptr
+
+!> Type describing a generated build target
type build_target_t
+
+ !> File path of build target object relative to cwd
character(:), allocatable :: output_file
- ! File path of build target object relative to cwd
+
+ !> Primary source for this build target
type(srcfile_t), allocatable :: source
- ! Primary source for this build target
+
+ !> Resolved build dependencies
type(build_target_ptr), allocatable :: dependencies(:)
- ! Resolved build dependencies
+
+ !> Target type
integer :: target_type = FPM_TARGET_UNKNOWN
+
+ !> Native libraries to link against
type(string_t), allocatable :: link_libraries(:)
- ! Native libraries to link against
- type(string_t), allocatable :: link_objects(:)
- ! Objects needed to link this target
+ !> Objects needed to link this target
+ type(string_t), allocatable :: link_objects(:)
+
+ !> Flag set when first visited to check for circular dependencies
logical :: touched = .false.
- ! Flag set when first visited to check for circular dependencies
+
+ !> Flag set if build target is sorted for building
logical :: sorted = .false.
- ! Flag set if build target is sorted for building
+
+ !> Flag set if build target will be skipped (not built)
logical :: skip = .false.
- ! Flag set if build target will be skipped (not built)
+ !> Targets in the same schedule group are guaranteed to be independent
integer :: schedule = -1
- ! Targets in the same schedule group are guaranteed to be independent
+
+ !> Previous source file hash
integer(int64), allocatable :: digest_cached
- ! Previous hash
end type build_target_t
+
+!> Type describing everything required to build a package
+!> and its dependencies.
type :: fpm_model_t
+
+ !> Name of package
character(:), allocatable :: package_name
- ! Name of package
+
+ !> Array of sources
type(srcfile_t), allocatable :: sources(:)
- ! Array of sources
+
+ !> Array of targets with module-dependencies resolved
type(build_target_ptr), allocatable :: targets(:)
- ! Array of targets with module-dependencies resolved
+
+ !> Command line name to invoke fortran compiler
character(:), allocatable :: fortran_compiler
- ! Command line name to invoke fortran compiler
+
+ !> Command line flags passed to fortran for compilation
character(:), allocatable :: fortran_compile_flags
- ! Command line flags passed to fortran for compilation
+
+ !> Command line flags pass for linking
character(:), allocatable :: link_flags
- ! Command line flags pass for linking
+
+ !> Output file for library archive
character(:), allocatable :: library_file
- ! Output file for library archive
+
+ !> Base directory for build
character(:), allocatable :: output_directory
- ! Base directory for build
+
+ !> Native libraries to link against
type(string_t), allocatable :: link_libraries(:)
- ! Native libraries to link against
+
end type fpm_model_t
end module fpm_model