×
Community Blog Code Search! A New Field of Artificial Intelligence

Code Search! A New Field of Artificial Intelligence

This article introduces Code Search and other interesting tasks involved in code intelligence.

By Qinqi

1

This article is a part of a series that mainly introduces interesting tasks involved in the field of code intelligence. I hope to give everyone a deep understanding of code intelligence, including a brief introduction, history, and the current situation of these tasks.

The focus of this article is code search, which uses a piece of natural language to search out the code that best satisfies the programmer's intentions.

The task itself is partial to text understanding and semantic analysis. The main simulation scenario is the code for developers to find their intentions. This function should be familiar to every programmer. It is similar to searching for the desired content through keywords or paragraphs on search engines (like Baidu or Google). The code search here is as broad as possible. We will discuss all the things related to code search, not only how to use Machine Learning training to perform code search on a fixed dataset.

Common Code Search Scenarios

The most common scenario for code search is to search for common usages and practices when programmers are unfamiliar with a function or a tool. Generally, it is divided into several situations:

  1. If you don't know how to implement a feature, such as how to use JS to reverse strings
  2. If you don't know the usage of a specific API, such as how to use JS for-of
  3. Best practice for some large frameworks, software packages, etc., such as React JS

These common scenarios can easily search for relevant documents with the help of powerful search engine capabilities. The result of the first scenario is some blogs, forums, or code exchange platforms, such as stack overflow. The second is the document center, such as MDN, commonly used at the front end. The third is the corresponding GitHub or official website.

2
3
4

All of them are to find the corresponding code through powerful search engine capabilities. After all, being proficient with Google is a necessary ability for programmers.

Code Search Common Websites

There are some websites dedicated to code search, hoping to help programmers find the code they want.

These search methods are similar, and they are all based on a set of expressions containing syntax. For example, you can search for react keywords through the expression react stars:>100 on GitHub, and the number of stars in the warehouse must be over 100. This is similar to spelling out the corresponding SQL code and directly executing it in the database. This type of syntax is often highly flexible and can be freely combined into complex search expressions to meet various search demands of users.

5

However, a high degree of flexibility brings a certain degree of difficulty in getting started. You must be familiar with this set of syntax to be able to find the target code quickly. Also, you must make flexible combinations and even add logic (such as and/or/not). Thus, the complexity has skyrocketed. Then again, such complex search expressions are rarely used.

Semantic-Based Code Search

Compared with this type of search, if some searches can be completed through natural language description, it is undoubtedly a better choice. This type of search method has low cost and is similar to ordinary language communication, such as the search results of show me the code about js string reverse, which can quickly search out the actual code related to string reverse. Since no service or website with good support for natural language code search has been found, we will use Google search as an example. Whether it is keywords or natural language, Google's analysis and processing are still good, which is convenient for users to find the code they are looking for quickly.

6

In addition, there are natural language code search models implemented by Meta based on Machine Learning: NCS and UNIF. They are based on unsupervised and supervised methods to explore the improvement of Machine Learning capabilities for natural language code search. Here are some examples. (The code comes from the Facebook blog.):

Q: How to get the ActionBar height?

A:

  • NCS
public int getActionBarHeight() {
    return mActionBarHeight;
}
  • UNIF
public static int getActionBarHeightPixel(Context context) {
    TypedValue tv = new TypedValue();
    if (context.getTheme().resolveAttribute(android.R.attr.actionBarSize, tv, true)) {
        return TypedValue.complexToDimensionPixelSize(tv.data,
            context.getResources().getDisplayMetrics());
    } else if (context.getTheme().resolveAttribute(R.attr.actionBarSize, tv, true)) {
        return TypedValue.complexToDimensionPixelSize(tv.data,
            context.getResources().getDisplayMetrics());
    } else {
        return 0;
    }
}

The relevant code is recommended according to the natural language description. Whether it can be used in production still needs to be considered for verification. Whether the searched code will have license problems also needs to be considered.

The Future of Code Search

Code search is essential to check documents, usage, and best practice in the daily development process. The process of inquiry is a process of progress. Currently, Google is still better, but semantic code search is making rapid progress, the core of which is the ability of semantic analysis. Semantic analysis is widely used in code search and other fields, such as nl2sql (natural language generated SQL). One sentence for data analysis is a popular scenario, too. In a word, the future can be expected. I am looking forward to the birth of smarter and better code search tools.

Code Intelligence Related Articles

0 1 0
Share on

Alibaba F(x) Team

66 posts | 3 followers

You may also like

Comments

Alibaba F(x) Team

66 posts | 3 followers

Related Products