Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial commit for project parser #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions enums/Language.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from enum import Enum


class Runtime(object):
def __init__(self, name, extention):
self.name = name
self.extention = extention


class Language(Enum):
JAVA = Runtime('Java', 'java')
PYTHON = Runtime('Python', 'py')

@staticmethod
def get_extension():
return Runtime.extention

@staticmethod
def get_lang_name():
return Runtime.name

@staticmethod
def values():
return [r.value for r in Language]
8 changes: 8 additions & 0 deletions models/AppInfo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
class AppInfo(object):

def __init__(self, runtime):
self.runtime = runtime

def __str__(self):
print('=' * 10 + 'PROJECT DESCRIPTION' + '=' * 10)
print('Project language: ' + self.runtime)
Empty file added prj_scanner/__init__.py
Empty file.
53 changes: 53 additions & 0 deletions prj_scanner/scanner.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
from os import walk

from enums.Language import Language, Runtime
from models.AppInfo import AppInfo


def detect_app_info(url):
app_info = AppInfo(Language)
if 'http' in url:
print('Will scan project with provided url: ' + url)
# nothing's here for now
else:
print('Will scan project with provided path: ' + url)
project_content = scan_folder(url)

extensions = []
for item in project_content:
if '.' in item:
extensions.append(item.split('.')[-1])
extensions = set(extensions)
print(extensions)
app_info.runtime = define_runtime(extensions)

return app_info


def define_runtime(extensions):
lang_list = []
for lang in Language.values():
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need help here

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

try this: lang_list = [(lang, ext) for lanf in Language.values() for ext in extensions if ext in Runtime.extention]

for ext in extensions:
if ext == Runtime.extention:
lang_list.append()
# for ext in extensions: lang. in Language.values()




for ext in extensions:
if ext in Language.values():
lang_list.append(ext)
return lang_list


def scan_folder(path):
f = []
for (dirpath, dirnames, filenames) in walk(path):
f.extend(filenames)
f.extend(dirnames)
f.extend(filenames)
return f


detect_app_info('/Users/akratovich/projects/carina').__str__